Skip to main content
Agents often need the same context — coding conventions, repo layout, team policies. The shared/ directory lets you maintain this context in one place and reference it from any agent’s SKILL.md.

How it works

Place files in a shared/ directory at your project root. At image build time, these files are baked into every agent’s container at /app/static/shared/.

Referencing shared files in SKILL.md

Use direct context injection to include shared files in your agent’s prompt:
Each agent chooses which shared files to include. There is no automatic injection — you control exactly what context each agent receives.

Example: coding conventions

Create shared/conventions.md:
Reference it in agents/dev/SKILL.md:
And in agents/reviewer/SKILL.md:
Both agents now share the same conventions without duplication.

Subdirectories

The shared/ directory supports subdirectories. A file at shared/team/review-policy.md is available at /app/static/shared/team/review-policy.md inside the container.

Cloud deployment

The shared/ directory is included in project deployments.