Create a Context Pack

Create reusable AI context packs from markdown, templates, UML diagrams, rules, domain context, and agents.

Create a Context Pack

A context pack is the package that your team publishes and developers install into AI IDEs.

Create from the dashboard

  1. Open Dashboard → Context Pack.
  2. Click Create Context Pack.
  3. Enter name and description.
  4. Choose visibility:
    • Project
    • Workspace
    • Private
    • Public
  5. Choose a creation method:
    • Blank pack
    • Template
    • UML / Mermaid workflow
    • Existing markdown
    • Clone from registry
  6. Add files under the explorer.
  7. Save the draft.

A context pack should usually contain:

Skills/
  SKILL.md
  references/
  scripts/
  assets/
  evals/

Rules/
  frontend-rules.md
  api-rules.md

Domain/
  domain-context.md
  glossary.md

Agents/
  reviewer-agent.md
  architect-agent.md

Generated Outputs/
  uml-analysis.md

Naming guidance

Use clear, installable slugs:

rb-testcontext
nextjs-clean-architecture
capra-ott-frontend
mahe-search-rag

The published install command should look like:

ai-skill install rb-testcontext

Use UML / Mermaid to generate context

Use the UML analyzer when you have a workflow, architecture diagram, state machine, or business process.

Good inputs:

  • Login flow
  • Subscription lifecycle
  • CMS publishing workflow
  • Search indexing flow
  • Payment retry flow
  • Role-based access flow

The analyzer can generate first-pass:

  • Domain context
  • Business rules
  • Skill instructions
  • Agent responsibilities
  • Implementation notes

Keep packs focused

Avoid creating one giant generic pack. Prefer focused packs such as:

  • frontend-review-rules
  • nextjs-app-router-patterns
  • ott-playback-domain
  • supabase-crud-rules
  • search-indexing-sync