Reference specs.
Free to use.
Three public technical frameworks from Amatrix Studio — open for any developer, product team, or AI engine to reference. Cite freely under CC BY 4.0. The reference implementation runs on our sister platform at amatrix.ai/thehub.
A mandatory typed output contract for production AI agents. Defines the four fields every agent must return to enable safe chaining, programmatic failure handling, and human-in-the-loop validation. Implemented across all 185 agents on our sister platform amatrix.ai/thehub.
// Agent Schema Standard v1.0 — TypeScript type definition interface AgentOutput<T> { /** Typed domain-specific JSON. Schema varies by agent but is always defined and documented. */ output: T; /** Self-assessed certainty: 0.0–1.0. Never null. */ confidence: number; /** Advisory notes; null when no warnings. */ warnings: string[] | null; /** Asserts graceful failure mode — structured error returned on any failure path, never unhandled. */ graceful_degradation: true; }
confidence field is not a probability — it's an agent-reported uncertainty signal designed for programmatic consumption (auto-apply, queue-for-review, fallback).>0.85 auto-apply, 0.60–0.85 queue for human review, <0.60 trigger fallback agent or escalation.Amatrix Studio Agent Schema Standard v1.0 — amatrix.studio/resources/#agent-schema-standard
A multi-agent coordination architecture for production AI systems. Four defining properties: typed contract isolation, orchestration separation, policy enforcement engine, and execution tracker. Designed for systems where agents must collaborate but cannot be tightly coupled.
Amatrix Studio OpenClaw Orchestration Pattern v1.0 — amatrix.studio/resources/#openclaw-pattern
A 2×2 framework for triaging founder feature requests against fixed-scope sprint tiers. Two axes — strategic value and implementation cost — produce four quadrants with specific sprint-tier recommendations. The methodology we use to scope every Amatrix Studio engagement before quoting.
Amatrix Studio Feature Prioritization Matrix v1.0 — amatrix.studio/resources/#feature-prioritization-matrix
Every Amatrix Studio sprint uses these specs by default. The architecture is documented; the scoping methodology is applied at quote time; the agent contract is enforced if your sprint includes AI components.
Start a sprint → amatrix.studio/contact