Agent Skills
This docs site now publishes Agent Skills so coding agents can discover reusable implementation playbooks directly from your docs URL.
- Open the live skills index: /.well-known/skills/index.json
What gets published
Section titled “What gets published”At build time, the docs generate:
/.well-known/skills/index.json— skill index/.well-known/skills/<skill-name>/SKILL.md— canonical skill file
Current published skills (dynamic)
Section titled “Current published skills (dynamic)”The list below is generated from the live skills collection at build time, and each link points to the published markdown endpoint:
- a2a-specialized-agents — Build specialized multi-agent systems using A2A servers, local agent-tools, and remote-agent delegation.
- context-engineering-optimization — Optimize prompt context for model tier, latency, and token budget using prioritization, compression, and tiered loading.
- cost-budget-enforcement — Enforce per-task, daily, and monthly budgets with complexity-aware routing and graceful degradation.
- gateway-persistent-scheduled-agents — Build persistent scheduled agents with Gateway heartbeats, cron jobs, webhook ingestion, and policy enforcement.
- identity-and-guardrails — Implement secure agent identity, behavioral contracts, and guardrail enforcement for production-safe autonomy.
- mcp-tool-integration — Integrate MCP servers as agent tools for filesystem, GitHub, and external-system workflows.
- memory-consolidation — Configure working, episodic, semantic, and procedural memory with consolidation rules optimized for local and frontier models.
- multi-agent-orchestration — Design and implement reliable multi-agent workflows using sequential, parallel, pipeline, and map-reduce execution patterns.
- observability-instrumentation — Instrument agents with structured traces, events, metrics, and execution-phase diagnostics for production debugging.
- reactive-agents-framework — Build specialized production agents with the Reactive Agents builder using accurate layer composition and use-case-driven configuration.
- reasoning-strategy-selection — Select and configure the right Reactive Agents reasoning strategy for task complexity, latency, and cost constraints.
- streaming-real-time-agents — Build agents that stream tokens and lifecycle events to users in real-time via runStream(), AgentStream adapters, and density modes.
- verification-pipeline-design — Build a layered verification pipeline with semantic entropy, fact decomposition, NLI, multi-source checks, and hallucination detection.
Where skills live
Section titled “Where skills live”Skills are stored in:
apps/docs/skills/<skill-name>/SKILL.md
Current example:
apps/docs/skills/reactive-agents-framework/SKILL.md
Skill format
Section titled “Skill format”Each SKILL.md must include frontmatter fields:
name(string)description(string)
Example:
---name: reactive-agents-frameworkdescription: Design and implement production-grade TypeScript AI agents using Reactive Agents.---
# Reactive Agents Framework Skill
...How this is wired
Section titled “How this is wired”The docs app uses:
astro-skillsintegration for discovery routes- A Starlight-safe custom content loader for the
skillscollection
Key files:
apps/docs/astro.config.mjsapps/docs/src/content/config.tsapps/docs/src/content/skills-loader.ts
Validate locally
Section titled “Validate locally”Build docs:
bun run docs:buildVerify generated outputs:
cd apps/docsfind dist -maxdepth 8 -type f | grep '.well-known/skills' | sortcat dist/.well-known/skills/index.jsonYou should see entries like:
dist/.well-known/skills/index.jsondist/.well-known/skills/reactive-agents-framework/SKILL.md
Add a new skill
Section titled “Add a new skill”- Create a new folder under
apps/docs/skills/using kebab-case (for example,reasoning-optimization). - Add
SKILL.mdwith validname+descriptionfrontmatter. - Rebuild docs.
- Confirm the new skill appears in
dist/.well-known/skills/index.json.
Why this matters
Section titled “Why this matters”This lets external agents consume implementation guidance that matches Reactive Agents architecture and conventions, directly from the public docs.