Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add VandanaAjayDubey111/great-pm/plugin install great-pmWrote 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.
[](https://agentmods.dev/commands/vandanaajaydubey111/great-pm/pm-board)<a href="https://agentmods.dev/commands/vandanaajaydubey111/great-pm/pm-board"><img src="https://agentmods.dev/badge/commands/vandanaajaydubey111/great-pm/pm-board/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/vandanaajaydubey111/great-pm/pm-board"><img src="https://agentmods.dev/badge/commands/vandanaajaydubey111/great-pm/pm-board.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00046 | $0.00895 |
| Opus 5 | $0.00023 | $0.00447 |
| Sonnet 5 | $0.00009 | $0.00179 |
| Haiku 4.5 | $0.00005 | $0.00089 |
Grade A, and why
pm-board scanned grade A with 1 finding 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 11d ago.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
if [ "$(curl -sS -o /dev/null -w '%{http_code}' --max-time 3 http://localhost:3142/ 2>/dev/null)" = "200" ]; then How it starts
The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the great-pm /pm-board command. Open the native great-pm board.
Operating procedure
-
Resolve the plugin root and register the current project so the board's switcher can find it:
ROOT="${CLAUDE_PLUGIN_ROOT:-$HOME/great-pm}" REG="$HOME/.great-pm/projects.json" mkdir -p "$HOME/.great-pm" CWD="$(pwd)" # project name: title from .great-pm/PROJECT.md, else folder name NAME="$(grep -m1 '^# ' .great-pm/PROJECT.md 2>/dev/null | sed 's/^# *//' | head -c 40)" [ -z "$NAME" ] && NAME="$(basename "$CWD")" TS="$(date -u +%Y-%m-%dT%H:%M:%SZ)" python3 - "$REG" "$CWD" "$NAME" "$TS" <<'PY' import json,sys,os reg,path,name,ts=sys.argv[1:5] try: d=json.load(open(reg)) except Exception: d={"projects":[]} ps=[p for p in d.get("projects",[]) if os.path.abspath(p.get("path",""))!=os.path.abspath(path)] ps.insert(0,{"path":path,"name":name,"lastSeen":ts}) json.dump({"projects":ps},open(reg,"w"),indent=2) print("registered:",name) PY -
If the board is already serving on port 3142, just open it; otherwise start it (detached) from the plugin and open the browser:
if [ "$(curl -sS -o /dev/null -w '%{http_code}' --max-time 3 http://localhost:3142/ 2>/dev/null)" = "200" ]; then open http://localhost:3142 2>/dev/null || xdg-open http://localhost:3142 2>/dev/null echo "opened existing board" else nohup node "$ROOT/board/server.mjs" --port 3142 > "$HOME/.great-pm/board.log" 2>&1 & disown sleep 2 open http://localhost:3142 2>/dev/null || xdg-open http://localhost:3142 2>/dev/null echo "started board → http://localhost:3142" fi -
Tell the user what they're looking at:
- Rows = the 6 great-pm stages (Discover → Measure) + an Unstaged / Ops lane; columns = Backlog / In Progress / Done.
- Drag a card across columns to change its status, or across rows to set its
stage. + New issue creates a beads task. All changes write straight to
bd. - Right panel = pending gates, drafts, latest verdicts, brain.md. Top strip = verdict-derived metrics (cost is not instrumented yet).
- Use the sidebar Project switcher to jump between any great-pm projects you've opened the board from.
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.
- 11d ago First seen · 73 lines · 46 tokens per session scan A bcc93d4f9585
pm-board is a command published in the GitHub repository VandanaAjayDubey111/great-pm (3 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 895 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
poc
Start a hypothesis-driven POC with hard timebox. Skips 80% of the production pipeline; forces ship/pivot/kill decision at expiry.
rfc
RFC process for cross-team decisions. Create, track, and close RFCs. Accepted RFCs auto-create ADRs.
discover
Run a full product discovery cycle — from outcome definition through opportunity mapping, prioritisation, and experiment design. Use when the team isn't sure what to build next, or before writing a PRD for a complex feature space.
migrate
Migrate existing PROJECT.md to the latest greatcto schema — appends missing fields without touching existing values.
ownership
Service ownership matrix. Who owns what: team, tech lead, on-call, SLA. Auto-detects from git history. Generates CODEOWNERS.
prd
Create a Product Requirements Document — conversational intake, 8-section output. Run BEFORE architect to lock WHAT and WHY before the team decides HOW.