Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getmuster.io/llms.txt

Use this file to discover all available pages before exploring further.

How agent data gets into Muster

There are three integration paths. Most customers use OTel and platform connectors for full coverage from day one, then add the SDK to their most critical agents.
OTelPlatform connectorsSDK
Best forCustom-coded agentsNo-code/low-code toolsCritical agents needing precise checks
Setup3 env varsElitery deploysDeveloper adds @agent.govern()
Quality signals✅ Inferred by Muster✅ Inferred by Muster✅ Exact — you define the rules
Token / cost tracking
Discovery

Layer 1 — OTel (primary for coded agents)

For any agent you can configure, OTel is the recommended path. Set three env vars and Muster receives traces, infers quality checks, and tracks costs automatically.
OTEL_EXPORTER_OTLP_ENDPOINT=https://backend.YOUR-INSTANCE.getmuster.io/api/v1/otel
OTEL_EXPORTER_OTLP_HEADERS=Authorization=Bearer <muster-jwt-token>
OTEL_EXPORTER_OTLP_PROTOCOL=http/json
Muster’s check inference engine runs on every execution — it infers relevant checks from the agent name, output structure, historical patterns, and Claude Haiku fallback. No check code required. Full OTel setup guide

Layer 2 — Platform connectors (for no-code tools)

For platforms where you can’t set env vars — visual workflow tools and managed AI services. Elitery deploys and manages all connectors. Same check inference engine applies.
ConnectorWhat it coversHow it discovers
n8nn8n workflows with LLM nodesWorkflow API scan
AWS BedrockBedrock agentslist_agents() API
LangChain / LangSmithLangChain agentsLangSmith project scan
LangfuseAny agent traced to LangfuseTrace scan
Azure AIAzure OpenAI + AI FoundryARM API scan

Layer 3 — SDK (for critical agents)

The SDK adds precise, business-rule checks on top of OTel/connector coverage. Use it for agents where inferred checks aren’t enough — financial calculations, compliance decisions, external writes.
@agent.govern(
    required_fields=["vendor_name", "invoice_number", "total"],
    arithmetic=[{"check_id": "total_check", "result_field": "total",
                 "component_fields": ["subtotal", "tax_amount"], "operation": "sum"}],
)
async def process_invoice(input_data: dict) -> dict:
    return extracted_output  # your existing code, unchanged
SDK integration guide

Check inference — how inferred signals work

When OTel or a connector submits an execution, Muster infers quality checks automatically in four layers:
  1. Name matching — agent name → check category (financial, legal, risk, support)
  2. Schema analysis — output field names → check types (numeric, decision, required fields)
  3. Historical patterns — after 50+ executions, distribution-based checks
  4. LLM fallback — Claude generates check suggestions from agent name + output structure
Inferred checks are good enough for monitoring and trend detection. For agents where you need exact validation with specific expected values — add the SDK.
AgentRecommended path
Custom Python/Go/Node agentOTel
LangChain, CrewAI, LlamaIndexOTel (native support)
n8n, Flowise, Dify workflowPlatform connector
AWS Bedrock, Azure AI FoundryPlatform connector
Invoice / AP processing agentOTel or connector + SDK
Compliance / legal review agentOTel or connector + SDK
Fraud / risk screening agentOTel or connector + SDK