NEW · 2026-05-30 Flagship service · MIT source Next theme = multi-agent

SlimeTree-RLM × Platform Integrations Hub

Wraps each SNS / business platform API with an RLM pre-filter (D/µ/R deterministic classification + SHA-256 audit chain). Cuts LLM cost by 60-80% — the same reduction rate whether you choose Gemini, Claude, or OpenAI.

3 platforms public
18 routes (MIT)
★ 18/18 B-mode shipped
60-80% RLM cut (+ B for more)
272 KB WASM single file

See the 18 public routes ↓ Multi-agent (NEW) ↓ Service page →

Why a single hub?

All 18 routes run the same structureRLM pre-filter (D/µ/R) → LLM only for R → SHA-256 chain. Beyond the per-platform hubs (Meta / X / Google), this page is the cross-platform reference. Common specifications, the Platform-native LLM principle, and the multi-agent extension (next theme) all branch from here.

Public platforms (3)

Each card links to the platform hub. Every platform exposes 6 routes, all MIT source, all browser-only (localStorage-only LLM key).

PublicMetaLLM-neutral

Meta integration ― 6 routes

Facebook / Threads / Messenger / WhatsApp / Instagram / Graph API — all 6 routes. LLM delegation is free choice across Gemini / Claude / OpenAI.

Meta hub → Flagship demo

PublicXGrok-only

X (formerly Twitter) integration ― 6 routes

Platform-native stack: X API v2 + xAI Grok. Authenticates with the X account, delegates only to Grok to avoid access restrictions placed on other LLMs.

X hub → Flagship demo

PublicGoogleGemini-only

Google Workspace integration ― 6 routes

Gmail / Calendar / Drive / Sheets / Workspace API — all 6 routes. One Google account, one billing identity, and the Gemini free tier (15 RPM) is usable out of the box.

Google hub → Flagship demo

Planned platforms (3)

Sequenced by demand and how cleanly the Platform-native LLM principle maps to each.

PlannedMicrosoftAzure OpenAI only

Microsoft 365 / Azure integration

Outlook / Teams / SharePoint / OneDrive / Graph API + Azure OpenAI. Entra ID for organization-wide identity; the enterprise main stage.

In preparation

PlannedSlackLLM-neutral

Slack integration

Channels / DM / App Home / Workflow Builder + any LLM. Slack Marketplace submission, designed for commercial workflows.

In preparation

PlannedLINELLM-neutral

LINE / LINE WORKS integration

Messaging API / LINE WORKS / LIFF + any LLM. Domestic SMB / municipal / consumer touchpoints; webhook design ready.

In preparation

Architecture ― RLM pre-filter + Platform-native LLM principle

All platforms share the same processing pipeline:

[input prompt / event]
       ↓
  ┌──────────────────┐
  │  SlimeTree-RLM   │ ← 272 KB WASM, browser-only
  │  D/μ/R classify  │
  └──────────────────┘
       ↓ (D=instant response / μ=machine-level suppression / R only goes to LLM)
  ┌──────────────────┐
  │  Platform-native │ ← Meta=neutral / X=Grok / Google=Gemini
  │       LLM        │
  └──────────────────┘
       ↓
  ┌──────────────────┐
  │ SHA-256 WAL chain│ ← every step audited, regulation-ready
  └──────────────────┘
       ↓
[output + audit log]

Platform-native LLM principle

Prioritizes the host platform's access policy, billing model, and SSO alignment. "Any LLM will run," but the LLM that's native to the platform is treated as first-class.

PlatformDefault LLMRationale
Meta (FB / Threads / WhatsApp / Instagram) Free choice across Gemini / Claude / OpenAI Meta has no native LLM binding; we support whichever LLM the user prefers neutrally.
X (formerly Twitter) Grok-only (xAI) X-native; avoids the direct-access restrictions placed on competitor LLMs; aligns with X Premium / API tiering.
Google Workspace Gemini-only One Google account manages both Workspace + Gemini; the free tier (15 RPM) is available out of the box.
Microsoft 365 (planned) Azure OpenAI only Integrates with Entra ID / Microsoft Purview; consolidates enterprise billing.
Slack (planned) Neutral (any LLM) Slack has no native LLM binding; respects the enterprise's existing LLM contracts.
LINE (planned) Neutral (any LLM) Same as above; domestic SMB LLM preferences are fragmented.

NEXT THEME · 2026-05-30 Drops on top of all 18 routes

★ LLM multi-agent support

Promotes RLM from a single LLM delegator into a multi-agent orchestrator.
The structure of the existing 18 routes is unchanged; only the R-verdict path expands to multiple agents.

6 candidate patterns

Priority 1stB

Cost-tier escalation

Try with a cheap LLM (Gemini Flash) → RLM judges quality (R-meta verdict) → escalate to a premium LLM (Claude Opus / GPT-5) only if insufficient.
Adds another 50-70% on top of the existing 73% cut. The numbers hit hardest here.

Priority 2ndA

Cross-validation

Delegate to 2 LLMs (e.g. Gemini + Claude) in parallel → compare outputs. Match = unified answer; mismatch = human-review flag.
For high-precision domains (finance / medical / legal).

Priority 3rdF

Voting / consensus

N LLMs respond independently → RLM aggregates (vote / average).
Agreement ratio = confidence score. For classification / fact-checking.

C

Specialist routing

A second-layer RLM classifies the domain (code / legal / medical / general) → routes to the matching agent + system prompt → picks the LLM.
For enterprise multi-domain support.

D

Orchestrator-worker

One LLM plans → multiple workers run in parallel → RLM merges the results.
For parallelizing large tasks (research / multi-step problems).

E

Debate / critique loop

LLM A proposes → LLM B critiques → A revises → iterate. RLM detects convergence / divergence and caps the loop.
For code review and document drafting.

Why RLM excels as an orchestrator

AspectGeneric multi-agent framework (e.g. LangGraph)RLM extension
Existing LLM calls Locked inside the framework Subdivides the R verdict of the existing D/μ/R; drops in without modification
Audit trail Framework-specific log SHA-256 WAL chain records every agent call; regulation-ready by default
Cost reduction Depends on agent design On top of the existing D/μ cut (73%), Pattern B saves another 50-70%
Platform integration Wire separately Rides on the existing 18 routes (shared across Meta / X / Google)
LLM choice Often provider-locked Preserves Platform-native principle (X → multi-Grok, Meta → Gemini + Claude in parallel, etc.)
Progress (2026-05-31): Pattern B (cost-tier) ★ shipped across all 18 demos. Next: A (cross-validation) → F (voting) → C/D/E. All six patterns are live in the dedicated demo page.

★ Running implementation ― all 18 demos + dedicated page + shared module shipped (2026-05-31)

B mode (cost-tier escalation) is implemented across shared module + 18 demos + dedicated page, with JS syntax verified (local + live). AI agents like Claude Code / OpenAI Codex can import it directly.

★ Shared module (MIT, ES module)

/integrations/slimetree-rlm-multi-llm.js (250 lines, 10 exports, 4 providers = Gemini/Claude/OpenAI/Grok)
import { callLLMWith, judgeResponseQuality, MODEL_CATALOG } from '...'

Dedicated demo pages (6-pattern showcase + measurement dashboard)

  • /integrations/multi-agent-demo/ ― A/B/C/D/E/F run in parallel on a single page; one Gemini key (free tier works).
  • ★ NEW: /integrations/measurement/batch runner dashboard for replacing estimates with measured values. Runs 150 sample prompts through the Flash → Pro escalation, measures the escalation rate, exports JSON.

All 18 demos (3 Gateways + 15 bots, every one with B mode)

Meta family (6/6 ✅) ― cross-vendor escalation freedom
Gateway / Threads / Messenger / WhatsApp / Instagram DM / Graph API
X family (6/6 ✅) ― within-Grok tiering
Gateway / Posts / DM / Mentions / API / Spaces/Lists
Google family (6/6 ✅) ― within-Gemini tiering; Flash free tier works
Gateway / Gmail / Calendar / Drive / Sheets / Workspace

Every bot ships with a bot-specific extra judge (18 variants: PII request / over-assertion / competitor mention / sarcasm / executive keyword / confidential+public / credit-card pattern / etc.). A baseline for domain-specific escalation in enterprise PoCs.

Common specifications (all 18 routes)

LicenseMIT (covers all 18 demos and the RLM mock module); commercial use permitted
RuntimeBrowser-only (static HTML + JS; no server-side code required)
RLM core272 KB WASM single file; parallelized via SharedArrayBuffer + Atomics
LLM key storagelocalStorage only; never transmitted outside the browser. Each LLM provider is called directly.
Audit chainSHA-256 hash chain (WAL); exportable; tamper-evident
Error handlingRollback (only non-commutative side propagates); patent claims 21, 35-37
Pipeline visualizationLive indicator embedded in every demo; D/μ/R verdicts shown in real time
Security boundaryRLM judgment is contained in the browser; only R-verdict items are forwarded to the LLM
Cost reduction60-80% LLM-cost cut (D/μ items are handled deterministically, generating no LLM call)

Related pages

Contact for sales / PoC