task-viewer

A set of DevOps working rules for software delivery and production operations. DevOps covers building, testing, deploying, and running software and its supporting infrastructure.

In plain words
What is it for?
Setting up CI/CD pipelines, Docker containers, infrastructure, deployments, cloud services, and production troubleshooting.
Why use it?
It provides a consistent checklist for safer releases, including tests, security checks, health checks, secret handling, and a way to roll back.

Cursor rule for Cursor

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 rules/surya8991/agentmaster/task-viewer
Clone the repo
git clone --depth 1 https://github.com/Surya8991/AgentMaster

Made for: Cursor.

Per session 76 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 612 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00076 $0.00612
Opus 5 $0.00038 $0.00306
Sonnet 5 $0.00015 $0.00122
Haiku 4.5 $0.00008 $0.00061

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

Security

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.
.cursor/rules/task-viewer.mdc · 43 lines

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:

  1. Read $APP_DIR as above.
  2. Ensure deps exist: if $APP_DIR/node_modules is missing, run npm install in $APP_DIR first.
  3. 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 PORT is set).
    • Run it as a background process so it keeps serving after this turn.
  4. 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.exe is 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 with CLAUDE_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.
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 · 43 lines · 76 tokens per session scan A 5558d86e6c2c

Subscribe to this mod's changes

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.

Related

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…

katalon-labs/true-skills · 194 tokens

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…

katalon-labs/true-skills · 107 tokens

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…

katalon-labs/true-skills · 137 tokens

fcp-pm-role

Cursor rule "fcp-pm-role" from joinwell52-AI/FCoP, covering fcp pm 角色规则, 接收来源, 核心职责, 派发任务命名规范 and 优先级标记.

joinwell52-AI/FCoP · 355 tokens

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…

marker-io/mcp-skills · 85 tokens

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.

CodeFreezeAI/xcf · 8 tokens