pm-board

pm-board is a command for Claude Code from VandanaAjayDubey111/great-pm. It costs 46 tokens per session (895 once invoked), scanned A, original, MIT.

A command that opens great-pm’s local project board, a browser-based view of work stages, statuses, artifacts, and review metrics.

In plain words
What is it for?
Use it to register the current project and open the board, which runs locally and can switch between registered projects.
Why use it?
It gives a single visual place to inspect project progress instead of checking separate files and task records.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the great-pm plugin — 10 commands, 48 agents shipped together

Good fit Use it to register the current project and open the board, which runs locally and can switch between registered projects.

Compare 6 commands from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add VandanaAjayDubey111/great-pm
Claude Code
/plugin install great-pm

Made for: Claude Code.

Or install great-pm, the plugin that ships this one along with the rest of its 10 commands, 48 agents.

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 pm-board

README.md
[![agentmods](https://agentmods.dev/badge/commands/vandanaajaydubey111/great-pm/pm-board/github.svg)](https://agentmods.dev/commands/vandanaajaydubey111/great-pm/pm-board)
Your own site
<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.

agentmods 80×15 button for pm-board

Your own site · 80×15
<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>
Per session 46 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 895 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00046 $0.00895
Opus 5 $0.00023 $0.00447
Sonnet 5 $0.00009 $0.00179
Haiku 4.5 $0.00005 $0.00089

Measured 11d ago against content hash bcc93d4f9585, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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
commands/pm-board.md · 73 lines

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

  1. 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
    
  2. 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
    
  3. 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.

Read the full file on GitHub · 73 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. 11d ago First seen · 73 lines · 46 tokens per session scan A bcc93d4f9585

Subscribe to this mod's changes

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.