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.
npx agentmods add rules/surya8991/agentmaster/task-viewergit clone --depth 1 https://github.com/Surya8991/AgentMasterWhat 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 | $0.00076 | $0.00612 |
| Opus 5 | $0.00038 | $0.00306 |
| Sonnet 5 | $0.00015 | $0.00122 |
| Haiku 4.5 | $0.00008 | $0.00061 |
Grade A, and why
task-viewer 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
`status`: `curl -s -o /dev/null -w '%{http_code}' http://localhost:3456` (try the reported port) — 200 means running. What it actually says
Launches and manages the claude-task-viewer dashboard — a real-time Kanban board that reads ~/.claude task JSON and serves it in the browser. Observation only: Claude Code controls task state, this just visualizes it.
Resolve the app directory
The app lives outside ~/.claude/skills (it's a full Node app, not a skill). Its location is stored in a config file so this skill stays portable:
CFG="$HOME/.claude/.agentmaster-cache/task-viewer.path"
APP_DIR="$(cat "$CFG" 2>/dev/null)"
If $CFG is missing or $APP_DIR doesn't contain server.js, tell the user the app isn't installed/registered and ask for its path, then write it back:
printf '%s' "<path>" > "$CFG". Do not guess absolute paths.
Commands
Default (no arg) or start:
- Read
$APP_DIRas above. - Ensure deps exist: if
$APP_DIR/node_modulesis missing, runnpm installin$APP_DIRfirst. - Start the server in the background and open the browser:
PORT=<port-if-given> node "$APP_DIR/server.js" --open- Default port is 3456; it auto-increments if busy (unless
PORTis set). - Run it as a background process so it keeps serving after this turn.
- Default port is 3456; it auto-increments if busy (unless
- Report the URL it printed (
http://localhost:<port>).
status: curl -s -o /dev/null -w '%{http_code}' http://localhost:3456 (try the reported port) — 200 means running.
stop: kill the running server process.
- Windows:
taskkill //F //IM node.exeis too broad — prefer finding the PID bound to the port. If unsure, tell the user which PID/port and let them confirm. - Unix:
pkill -f "server.js"scoped to this app.
Notes
- The viewer reads task data from
$CLAUDE_DIR(defaults to~/.claude). Override withCLAUDE_DIR=<path>or--dir <path>if the user keeps tasks elsewhere. - It's read-only over tasks; never claim it can create/modify/delete task state on Claude's behalf.
- This is a long-running server. Don't block the conversation waiting on it — start it detached and move on.
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.
- yesterday First seen · 43 lines · 76 tokens per session scan A 5558d86e6c2c
task-viewer is a cursor rule published in the GitHub repository Surya8991/AgentMaster (2 stars, last pushed 1mo ago), licensed MIT. It adds 76 tokens to every session and 612 once invoked, about $0.0004 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 cursor rules, from other repositories
test-estimation
Estimate testing effort, duration, and resourcing for a Katalon True Platform/TestOps cycle. Use when the question is how long testing will take, how many testers it needs, whether the scope fits the sprint window, or what a scope change costs in person-hours. Sizes design, manual execution, automated execution and…
release-analyze
Analyze Katalon True Platform/TestOps release readiness from testing quality data. Use when you need to use Katalon MCP metrics and results to assess whether a release, sprint, iteration, version, test plan, suite, or repository is ready to ship; summarize requirement coverage, execution health, defect risk, test…
test-plan
Plan Katalon True Platform/TestOps testing for a release, sprint, or feature. Use when you need to translate quality goals into scope, prioritize testing by requirement coverage and risk, decide what to test first, or build the executable plan structure (folders, suites, and sprint/release association) that stands in…
fcp-pm-role
Cursor rule "fcp-pm-role" from joinwell52-AI/FCoP, covering fcp pm 角色规则, 接收来源, 核心职责, 派发任务命名规范 and 优先级标记.
marker-triage
Triage a Marker.io website-feedback backlog at scale. Use when asked to go through, categorize, prioritize, deduplicate, or make sense of many Marker.io issues at once. Splits content fixes from functional bugs, groups by page, rates criticality, flags duplicates and repeat reporters, surfaces quick wins, lists…
xcf-quickref
Cursor rule "xcf-quickref" from CodeFreezeAI/xcf, covering xcf quick reference guide 🚀, 🎛️ xcf core actions, permissions & project management, build & execute and system & analysis.