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.
See the 18 public routes ↓ Multi-agent (NEW) ↓ Service page →
Why a single hub?
All 18 routes run the same structure — RLM 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).
PublicLLM-neutral
Meta integration ― 6 routes
Facebook / Threads / Messenger / WhatsApp / Instagram / Graph API — all 6 routes. LLM delegation is free choice across Gemini / Claude / OpenAI.
- Prompt Gateway (all 3 providers)
- Threads bot
- Messenger bot
- WhatsApp bot
- Instagram DM bot
- Graph API generic client
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.
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.
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.
PlannedSlackLLM-neutral
Slack integration
Channels / DM / App Home / Workflow Builder + any LLM. Slack Marketplace submission, designed for commercial workflows.
PlannedLINELLM-neutral
LINE / LINE WORKS integration
Messaging API / LINE WORKS / LIFF + any LLM. Domestic SMB / municipal / consumer touchpoints; webhook design ready.
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.
| Platform | Default LLM | Rationale |
|---|---|---|
| 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
| Aspect | Generic 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.) |
★ 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)
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)
| License | MIT (covers all 18 demos and the RLM mock module); commercial use permitted |
|---|---|
| Runtime | Browser-only (static HTML + JS; no server-side code required) |
| RLM core | 272 KB WASM single file; parallelized via SharedArrayBuffer + Atomics |
| LLM key storage | localStorage only; never transmitted outside the browser. Each LLM provider is called directly. |
| Audit chain | SHA-256 hash chain (WAL); exportable; tamper-evident |
| Error handling | Rollback (only non-commutative side propagates); patent claims 21, 35-37 |
| Pipeline visualization | Live indicator embedded in every demo; D/μ/R verdicts shown in real time |
| Security boundary | RLM judgment is contained in the browser; only R-verdict items are forwarded to the LLM |
| Cost reduction | 60-80% LLM-cost cut (D/μ items are handled deterministically, generating no LLM call) |
Related pages
- As a service: /service/rlm-integrations/ ― 6-tier cost comparison, delivery options
- SlimeTree-RLM primary materials: /resource/slimetree-rlm/ ― 3 benchmarks × 4 LLMs, paper v10, patent claims 1-44
- SlimeTree-RLM product page: /products/device/slimetree-rlm/ ― applied scenarios, enterprise
- Platform hubs: Meta / X / Google
- Explainer blog (JA): Cutting LLM hallucinations to 1/3 with just 272 KB
- Sales / NDA: Contact / Partners
