Use Distri from your coding agent
Distri ships machine-readable instructions so your coding agent, Claude, OpenAI,
Cursor, or anything that reads a rules file, can create, run, and deploy Distri
agents naturally. Everything is a single curl away.
Install the skill (Claude Code / Claude Agent SDK)
curl -fsSL https://distri.dev/skills/install.sh | sh
This drops a focused distri skill into .claude/skills/distri/. Claude
picks it up automatically. The skill covers the CLI, the agent.md format,
running and serving, pushing to the cloud, reading traces, and embedding.
Install somewhere else:
curl -fsSL https://distri.dev/skills/install.sh | sh -s -- path/to/skills/distri
For any agent (no skill system needed)
Point your rules file or system prompt at the skill, or paste the full reference:
curl -fsSL https://distri.dev/skills/distri/SKILL.md # the skill, self-contained
curl -fsSL https://distri.dev/llms-full.txt # complete API + CLI + examples
curl -fsSL https://distri.dev/llms.txt # short index of docs
- Cursor, add the SKILL.md content to
.cursor/rules(or.cursorrules). - OpenAI / Codex / others, include
SKILL.mdin the system prompt, or fetchllms-full.txtwhen the model needs the full API. - AGENTS.md, drop the SKILL.md content into your repo's
AGENTS.md.
What's available
| Resource | URL |
|---|---|
| Skill installer | https://distri.dev/skills/install.sh |
| Skill entry | https://distri.dev/skills/distri/SKILL.md |
| Agent format | https://distri.dev/skills/distri/references/agents.md |
| CLI reference | https://distri.dev/skills/distri/references/cli.md |
| Traces | https://distri.dev/skills/distri/references/traces.md |
| Skills & workflows | https://distri.dev/skills/distri/references/workflows-and-skills.md |
| Embedding & SDK | https://distri.dev/skills/distri/references/embedding.md |
| Skills index | https://distri.dev/skills.txt |
| Full text reference | https://distri.dev/llms-full.txt |
| Docs index (llms.txt) | https://distri.dev/llms.txt |
Best practice: one skill, many references
Distri ships a single distri skill (not a dozen fragmented ones) with
reference files bundled beside it. That keeps activation reliable, your agent
loads the one skill when a task mentions Distri, then reads only the reference it
needs (agents, CLI, traces, workflows, embedding). This mirrors the recommended
structure for Claude Code / Claude Agent SDK skills.