Add a new item to the roadmap interactively
Interactively adds a new item to specs/ROADMAP.toml by collecting title, label, description, type, stack layer, and priority from you. Use this to document planned work after initializing the roadmap file.
/plugin marketplace add linehaul-ai/linehaulai-claude-marketplace/plugin install roadmap@linehaulai-claude-marketplaceInteractively add a new item to specs/ROADMAP.toml.
Read specs/ROADMAP.toml to understand current items
/roadmap:init firstAsk the user for item details using AskUserQuestion:
Auto-generate today's date for start_date using the current date (YYYY-MM-DD format)
Append the new item to the TOML file:
[[items]]
title = "User provided title"
label = "user-provided-label"
description = "User provided description"
type = "feature"
stack_layer = "backend"
priority = "P1"
status = "pending"
start_date = "2024-01-15"
start_date is always auto-filled with today's date (YYYY-MM-DD)bug, feature, taskbackend, frontend, devopsP0 (critical), P1 (high), P3 (low)