Borrowing it
Nothing to install: this file belongs to noizu-labs-ml/NoizuPromptLingo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/noizu-labs-ml/NoizuPromptLingo/main/.claude/commands/task-wizard.mdgit clone --depth 1 https://github.com/noizu-labs-ml/NoizuPromptLingoWrote 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/noizu-labs-ml/noizupromptlingo/task-wizard)<a href="https://agentmods.dev/commands/noizu-labs-ml/noizupromptlingo/task-wizard"><img src="https://agentmods.dev/badge/commands/noizu-labs-ml/noizupromptlingo/task-wizard/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/noizu-labs-ml/noizupromptlingo/task-wizard"><img src="https://agentmods.dev/badge/commands/noizu-labs-ml/noizupromptlingo/task-wizard.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.00000 | $0.05164 |
| Opus 5 | $0.00000 | $0.02582 |
| Sonnet 5 | $0.00000 | $0.01033 |
| Haiku 4.5 | $0.00000 | $0.00516 |
Grade A, and why
task-wizard 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 3d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- npl-task-wizard — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 882 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Task CLI Wizard
LLM instructions for using the task CLI tool to manage work, deadlines, and project coordination.
The task CLI is the primary interface for creating, filtering, updating, and tracking work items. This guide covers all operations with examples and best practices.
Overview
The task system manages work coordination across the project. Each task represents a discrete unit of work with:
- Subject – Brief imperative title ("Add authentication", not "Authentication feature")
- Description – Detailed requirements, context, and acceptance criteria
- Status –
pending,in_progress,completed, ordeleted - Owner – Agent ID (person or AI agent responsible)
- Metadata – Custom fields for tracking project-specific data
- Dependencies – Blocks/blockedBy relationships for task ordering
- Timeline – Created date, deadline, completed date
Quick Reference
| Goal | Command |
|---|---|
| List all tasks | task list |
| Create a new task | task create --subject "..." --description "..." |
| View task details | task get <task-id> |
| Update task | task update <task-id> --status in_progress |
| Set deadline | task update <task-id> --deadline 2026-02-15 |
| Assign task | task update <task-id> --owner agent-name |
| Mark complete | task update <task-id> --status completed |
| Filter by status | task list --status pending |
| Search tasks | task list --search "keyword" |
| View blocking | task list --blocked-by <task-id> |
| Set dependency | task update <task-id> --blocks task-2,task-3 |
Creating Tasks
Basic Task Creation
task create \
--subject "Add user authentication" \
--description "Implement JWT-based auth with login/logout endpoints"
Result: Returns new task ID (e.g., task-42)
Complete Task Creation (Best Practice)
task create \
--subject "Implement password reset flow" \
--description "Allow users to reset forgotten passwords via email link.
Requirements:
- Generate secure reset token (expires 24h)
- Send email with reset link
- Validate token and update password
- Log password change event
Acceptance criteria:
- ✓ Email sent within 60 seconds
- ✓ Reset link works only once
- ✓ Old sessions invalidated after reset
- ✓ User can set new password on form" \
--owner alice \
--deadline 2026-02-15 \
--metadata priority=high,component=auth
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.
- 3d ago First seen · 882 lines · 0 tokens per session scan A b21f40026cd2
task-wizard is a command published in the GitHub repository noizu-labs-ml/NoizuPromptLingo (13 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 5,164 tokens. 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-09-04.
Other commands, from other repositories
template
Manage issue templates for streamlined issue creation.
sync-linear
Sync current work with Linear ticket status.
add-note
Add an internal or external note to a ConnectWise PSA ticket.
fest-show
Show festival progression (in-progress tasks, roadmap, and dependency view).
dispatcher
Pick the next-best repo to work on across the portfolio — rank free repos, recommend one, claim its lease atomically, and route to the entry command.
workpm
A project-management workflow for coordinating multiple AI workers through five stages. It includes task assignment, shared activity logs, worker replacement, and final checks.