From cai
Use when recording a future plan or direction. Triggers: 'cai-add-roadmap', 'roadmap 추가', '계획 기록', 'add roadmap', '로드맵 추가', '미래 계획'
How this skill is triggered — by the user, by Claude, or both
Slash command
/cai:cai-add-roadmapThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Creates a roadmap entry documenting a future plan, direction, or initiative. Uses the `cai:cai-interview` skill to collect details since future plans cannot be inferred from code.
Creates a roadmap entry documenting a future plan, direction, or initiative. Uses the cai:cai-interview skill to collect details since future plans cannot be inferred from code.
Ask or infer the roadmap item's current status:
| Status | Meaning |
|---|---|
exploring | Under consideration, not committed |
planned | Committed but not started |
in-progress | Active work underway |
Note:
completedstatus exists but is set by updating existing items, not by creating new ones.
Is there sufficient context in the current conversation?
├── YES → Use it directly (Step 3)
└── NO → Invoke the cai:cai-interview skill (Step 2a)
2a. Interview for Roadmap Content
Invoke the cai:cai-interview skill. Pass:
Scan context/specs/ to find specs related to the roadmap item:
covers paths if the plan mentions specific file areasPopulate the related_specs frontmatter field with paths to matching specs.
Create context/roadmap/{status}/{slug}.md:
---
type: roadmap
status: {exploring|planned|in-progress}
tags: [relevant, tags]
last_synced: {today, YYYY-MM-DD}
target: "{target, e.g., 2026-Q3}"
related_specs: [context/specs/auth/_overview.md]
---
# {Roadmap Item Title}
## Motivation
{Why this is needed, business context}
## Description
{What will be done, scope of the initiative}
## Affected Areas
{Modules, components, or systems that will be impacted}
## Risks & Dependencies
{Known risks, blockers, or dependencies}
The {slug} is derived from the title: lowercase, words joined by hyphens (e.g., "migrate-to-oauth2", "add-real-time-notifications").
Present the generated roadmap item for review. Write to disk only after approval.
cai:cai-interview — Collects roadmap details from the user (see Step 2a).| Artifact | Path | Format |
|---|---|---|
| Roadmap document | context/roadmap/{status}/{slug}.md | Markdown with YAML frontmatter (Interface Contract 0.1, roadmap type) |
| Error | Action |
|---|---|
context/roadmap/{status}/ directory does not exist | Create it before writing |
| No related specs found | Set related_specs: [], note this in the document |
| User provides only a vague idea | Set status to exploring and keep the description high-level |
| Duplicate roadmap item detected (similar slug exists) | Ask user: update existing or create separate item |
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub workingdanny911/cai --plugin cai