roadmap-discuss

roadmap-discuss is a command for Claude Code from catlog22/Claude-Code-Workflow. It costs 0 tokens per session (2,082 once invoked), scanned A, original, MIT.

An interactive command for discussing and agreeing on a project roadmap before implementation starts.

In plain words
What is it for?
Use it to create or update a roadmap and its session settings from project context and written specifications.
Why use it?
It helps clarify phases, requirements, success criteria, and execution preferences before work is assigned.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/catlog22/claude-code-workflow/roadmap-discuss
Clone the repo
git clone --depth 1 https://github.com/catlog22/Claude-Code-Workflow

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for roadmap-discuss

README.md
[![agentmods](https://agentmods.dev/badge/commands/catlog22/claude-code-workflow/roadmap-discuss.svg)](https://agentmods.dev/commands/catlog22/claude-code-workflow/roadmap-discuss)
Your own site
<a href="https://agentmods.dev/commands/catlog22/claude-code-workflow/roadmap-discuss"><img src="https://agentmods.dev/badge/commands/catlog22/claude-code-workflow/roadmap-discuss.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,082 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.02082
Opus 5 $0.00000 $0.01041
Sonnet 5 $0.00000 $0.00416
Haiku 4.5 $0.00000 $0.00208

Measured yesterday against content hash 6a6eaeffb53c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

roadmap-discuss scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/team-roadmap-dev/roles/coordinator/commands/roadmap-discuss.md · 288 lines

How it starts

The opening of the file, as written. The whole thing — 288 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Command: roadmap-discuss

Interactive roadmap discussion with the user. This is the KEY coordinator command -- no work begins until the roadmap is agreed upon.

Purpose

Discuss project roadmap with the user using project-tech.json + specs/*.md as context. Elicit phases, requirements, success criteria, and execution preferences. Produces roadmap.md and config.json as session artifacts.

When to Use

  • Phase 2 of coordinator lifecycle (after init prerequisites, before dispatch)
  • Called exactly once per session (re-entry updates existing roadmap)

Strategy

Direct interaction via AskUserQuestion. No delegation to workers or CLI tools. Coordinator handles this entirely.

Parameters

Parameter Source Description
sessionFolder From coordinator Phase 1 Session artifact directory
taskDescription From coordinator Phase 1 User's original task description
projectTech Loaded in Phase 1 Parsed project-tech.json
projectGuidelines Loaded in Phase 1 Parsed specs/*.md (nullable)
autoYes From -y/--yes flag Skip interactive prompts, use defaults

Execution Steps

Step 1: Load Project Context

// Already loaded by coordinator Phase 1, but verify availability
const projectTech = JSON.parse(Read('.workflow/project-tech.json'))
let projectGuidelines = null
try {
  projectGuidelines = JSON.parse(Read('.workflow/specs/*.md'))
} catch {}

Step 2: Present Project Overview to User

// Summarize what we know about the project
const overview = `[coordinator] Project context loaded.
- Project: ${projectTech.project_name}
- Tech Stack: ${projectTech.tech_stack?.join(', ')}
- Task: ${taskDescription}
${projectGuidelines ? `- Guidelines: ${projectGuidelines.conventions?.length || 0} conventions loaded` : '- Guidelines: not configured'}`

// Display overview (via direct output, not AskUserQuestion)

Step 3: Confirm Project Goal and Scope

Read the full file on GitHub · 288 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 288 lines · 0 tokens per session scan A 6a6eaeffb53c

Subscribe to this mod's changes

roadmap-discuss is a command published in the GitHub repository catlog22/Claude-Code-Workflow (2,133 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,082 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.