This plugin is a living knowledge base. Everyone is encouraged to contribute.
| You want to... | Add it to... |
|---|---|
| Add a quick-lookup slash command | commands/your-command.md |
| Create a department expert persona | agents/your-dept.md |
| Document tribal knowledge Claude can invoke | skills/your-topic/SKILL.md |
| Register an MCP server your team maintains | .mcp.json |
| Add an automation hook | hooks/hooks.json |
- Create a folder:
skills/your-topic-name/ - Add a
SKILL.mdfile with frontmatter:--- description: One-line summary of what this skill covers triggers: - keyword1 - keyword2 ---
- Write the content in plain markdown. Be specific to Apollo.
- Open a PR. Tag the relevant team for review.
- Create
agents/your-dept.md - Use the frontmatter format:
--- description: What this agent knows about capabilities: - "Capability 1" - "Capability 2" ---
- Write the agent prompt. Focus on Apollo-specific knowledge.
Edit .mcp.json and add your server config:
{
"your-server-name": {
"command": "npx",
"args": ["@your-package/mcp-server"],
"env": {}
}
}- Be specific. "We use X because Y" beats "consider using X."
- Name names. Slack channels, team names, specific people/rotations.
- Keep it current. If something changes, update the file. Stale knowledge is worse than no knowledge.
- One topic per skill. Don't cram everything into one file.
- Version your changes. Update CHANGELOG.md for meaningful additions.