ultra-status

ultra-status is a command for Claude Code from rocky2431/ultra-builder-pro. It costs 14 tokens per session (1,113 once invoked), scanned A, original, MIT.

A command that reports the current state of a software project using its task, test, and release records. It shows progress, the current and next tasks, test results, release readiness, and detected risks.

In plain words
What is it for?
Use it to view task counts and priorities, identify active and pending work, check test results, review delivery status, and see recommended next steps.
Why use it?
It collects project status from several files so you do not have to inspect each one manually. It also points out when the project needs initial setup or a task plan.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; mentions CLAUDE.md.

Good fit Use it to view task counts and priorities, identify active and pending work, check test results, review delivery status, and see recommended next steps.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/rocky2431/ultra-builder-pro/ultra-status
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.

Clone the repo
git clone --depth 1 https://github.com/rocky2431/ultra-builder-pro

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 ultra-status

README.md
[![agentmods](https://agentmods.dev/badge/commands/rocky2431/ultra-builder-pro/ultra-status/github.svg)](https://agentmods.dev/commands/rocky2431/ultra-builder-pro/ultra-status)
Your own site
<a href="https://agentmods.dev/commands/rocky2431/ultra-builder-pro/ultra-status"><img src="https://agentmods.dev/badge/commands/rocky2431/ultra-builder-pro/ultra-status/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 ultra-status

Your own site · 80×15
<a href="https://agentmods.dev/commands/rocky2431/ultra-builder-pro/ultra-status"><img src="https://agentmods.dev/badge/commands/rocky2431/ultra-builder-pro/ultra-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,113 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00014 $0.01113
Opus 5 $0.00007 $0.00557
Sonnet 5 $0.00003 $0.00223
Haiku 4.5 $0.00001 $0.00111

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

Security

Grade A, and why

ultra-status 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 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.

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.

commands/ultra-status.md · 141 lines

How it starts

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

/ultra-status

Purpose

Real-time project status monitoring with progress tracking, risk analysis, and actionable insights using native task system.

Workflow

Phase 0: Validation

Check environment before displaying status:

  1. Does .ultra/tasks/tasks.json exist? → If not: Suggest /ultra-init (Chinese)
  2. Are there tasks in the system? → If not: Suggest /ultra-plan (Chinese)
  3. Is task data valid? → Verify structure and timestamps
  4. Determine output format (quick vs full report)

Phase 1: Load Project Data

Read all status files:

  • .ultra/tasks/tasks.json - Task progress
  • .ultra/test-report.json - Test status
  • .ultra/delivery-report.json - Delivery status

Extract:

  • Task statistics (total, by status, by priority)
  • Current task (in_progress) and next pending task
  • Test pass/fail status and run count
  • Delivery readiness

Phase 2: Generate Progress Report

Display comprehensive project status:

  • 📊 Overview: Progress bar, completion %, task velocity
  • 📝 Tasks: By status (pending/in_progress/completed/blocked)
  • 🧪 Test: Pass/fail, run count, blocking issues
  • 📦 Delivery: Version, pushed status
  • ⚠️ Risks: Auto-detected issues
  • 📈 Next: Optimal next task

Phase 3: Analyze Risks

Auto-detect issues:

  • Blockers: Tasks with unsatisfied dependencies
  • Stalled tasks: In-progress >3 days
  • Overdue: Past estimated completion
  • Complexity spikes: Multiple complex tasks queued
  • Resource constraints: Parallel task limits

Phase 4: Provide Recommendations

Suggest next optimal task based on:

  • Priority (P0 > P1 > P2 > P3)
  • Dependencies (only ready tasks)
  • Complexity (balance with velocity)
  • Context (similar to recent tasks)

Phase 5: Workflow Routing (▶ Next Up)

Detect workflow position from existing artifacts (no extra state file needed):

Check Condition Route
No .ultra/ dir Missing /ultra-init
No specs product.md missing or has [NEEDS CLARIFICATION] /ultra-research
No tasks tasks.json missing or empty /ultra-plan
Tasks pending Any task status "pending" /ultra-dev (show which task)
All tasks done All tasks "completed" /ultra-test
Test passed test-report.json passed: true /ultra-deliver
Test failed test-report.json passed: false /ultra-dev (show blocking issues)
Delivered delivery-report.json exists → Done. Suggest next milestone

Read the full file on GitHub · 141 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 · 141 lines · 14 tokens per session scan A 23ab946e14c7

Subscribe to this mod's changes

ultra-status is a command published in the GitHub repository rocky2431/ultra-builder-pro (11 stars, last pushed 1mo ago), licensed MIT. It adds 14 tokens to every session and 1,113 once invoked, about $0.0001 per session on Opus 5. 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-08-30.