Overview
Guidance and patterns for building AI agents and LLM-powered workflows with Switchboard.
AI-Focused Access Points
Use these endpoints to ingest the docs efficiently or to wire tools directly into structured content.
Per-Page Markdown — Append
.mdto any page URL to retrieve Markdown instead of HTML./llms.txtIndex — A site-level index of all pages as Markdown URLs with titles./llms-full.txt— The entire site content in a single file. Useful for smaller docsets or offline "packs."MCP Server — Use the MCP endpoint at
docs.switchboard.xyz/~gitbook/mcpto discover and retrieve docs as structured resources rather than scraping.
Switchboard Agent Skill
The Switchboard Agent Skill defines an autonomous operator for designing, simulating, deploying, updating, and reading Switchboard feeds and randomness across chains. Use it to configure an agent's behavior: copy the skill content into your agent skill registry or system prompt.
Install the Skill in Your AI Tool
Preferred setup is an Agent Skills folder (a directory containing SKILL.md). Create a folder named switchboard-agent/ and a SKILL.md file inside it, then paste the raw markdown for the skill into it.
Claude Code (Skill folder)
Project-scoped (recommended for repos):
.claude/skills/switchboard-agent/SKILL.md
Personal (all projects):
~/.claude/skills/switchboard-agent/SKILL.md
Invoke: /switchboard-agent <your request>
OpenAI Codex (Skill folder)
Repo-scoped (recommended):
.agents/skills/switchboard-agent/SKILL.md
User-scoped (all repos):
~/.agents/skills/switchboard-agent/SKILL.md
Optional (recommended): add a single short line to AGENTS.md:
Invoke: Run /skills, or type $ and select switchboard-agent.
OpenClaw (Skill folder)
Workspace-scoped:
skills/switchboard-agent/SKILL.md
User-scoped:
~/.openclaw/skills/switchboard-agent/SKILL.md
Invoke (works even if the slash command name is sanitized): /skill switchboard-agent <your request>
If a per-skill slash command exists, it may appear as /switchboard_agent (underscores).
Last updated