Add item to project roadmap
Adds items to project roadmap with automatic priority and effort classification.
/plugin marketplace add cameronsjo/claude-marketplace/plugin install essentials@cameronsjo<item description>Add a new item to the project roadmap.
$ARGUMENTS - The item to add (e.g., "AVIF support" or "p0: auth broken" or "research: how should X work")
Parse $ARGUMENTS for item and hints (p0-p4, research, effort)
Determine if Research or Idea:
Determine Priority (user can specify p0-p4 directly):
p0 - Critical (also: "critical", "urgent")p1 / high - Core functionality, securityp2 / medium - Nice to havep3 / low - Edge case, cosmeticp4 - BacklogFor Ideas, determine Effort:
small (< 1 day)medium (1-3 days)large (> 3 days)Add to appropriate file:
docs/roadmap/ideas.mddocs/roadmap/research.mdMaintain sort order: priority (p0→p4), then item name ascending
If multiple agents writing simultaneously, use /roadmap.suggest instead.
/roadmap.add AVIF image support
→ ideas.md: | AVIF image support | p2 | small | Better compression |
/roadmap.add caching to p3
→ ideas.md: | Caching | p3 | small | Performance |
/roadmap.add p0: auth bypass
→ ideas.md: | Auth bypass | p0 | medium | Security vulnerability |
/roadmap.add research: plugin dependency resolution
→ research.md: | Plugin dependency resolution | p1 | How should deps work? |