Agent Skills for the MUXI platform, following the open Agent Skills specification.
| Skill | Description |
|---|---|
muxi |
Complete MUXI platform guide -- installation, server setup, CLI, secrets, formations, deployment, SDKs, and APIs |
Agent Skills are folders of instructions, scripts, and resources that AI agents can discover and use. They work with any compatible agent tool, including Claude Code, Cursor, GitHub Copilot, VS Code, Factory, Amp, Goose, and many others.
Skills use a progressive disclosure model:
- Metadata (~100 tokens) -- name and description, loaded at startup
- Instructions (< 500 lines) -- full
SKILL.mdbody, loaded when activated - References (on demand) -- detailed docs in
references/, loaded as needed
# From the root of this repo
claude mcp add-skill skills/muxiOr add to your .claude/settings.json:
{
"skills": ["skills/muxi"]
}Add to .cursor/skills/ by copying or symlinking:
ln -s $(pwd)/skills/muxi .cursor/skills/muxiPoint your agent's skill discovery directory at skills/muxi/. The agent will parse the SKILL.md frontmatter at startup and activate the full skill when MUXI-related tasks come up.
For filesystem-based agents, the skill is activated when the agent reads skills/muxi/SKILL.md. Reference files in skills/muxi/references/ are loaded on demand.
Parse the YAML frontmatter from SKILL.md and inject into your agent's system prompt:
<available_skills>
<skill>
<name>muxi</name>
<description>Guide users through the MUXI platform -- infrastructure for AI agents. Covers installation, server setup, CLI, secrets, formations, deployment, SDKs, and APIs.</description>
<location>/path/to/skills/muxi/SKILL.md</location>
</skill>
</available_skills>When the skill is activated, load the full SKILL.md body. For detailed reference, the agent can read files from references/:
skills/muxi/
├── SKILL.md # Main instructions (448 lines)
└── references/
├── formation-schema.md # Complete .afs schema reference
├── cli-reference.md # All CLI commands and flags
├── server-config.md # Server config, API, services
├── formation-api.md # Runtime API endpoints
├── sdks.md # Go, Python, TypeScript SDK reference
└── examples.md # Full formation examples + SDK usage
Validate the skill using the skills-ref CLI:
skills-ref validate skills/muxi- Agent Skills Specification -- the full format spec
- Agent Skills GitHub -- reference implementation
- MUXI Documentation -- full platform docs