NoizuPromptLingo: Command for Claude Code

.claude/commands/task-wizard.md

task-wizard is a command for Claude Code from noizu-labs-ml/NoizuPromptLingo. It costs 0 tokens per session (5,164 once invoked), scanned A, original, MIT.

Instructions for using a command-line task tool to create, track, update, and complete work items. Tasks can include owners, statuses, deadlines, metadata, and dependencies.

In plain words
What is it for?
Use it to create tasks, set deadlines, track progress, assign work, manage dependencies, and close completed items.
Why use it?
They replace ad hoc notes with a consistent way to record what needs doing, who owns it, and what is blocking it.

Command for Claude Code

Written for Claude Code: installed under .claude/.

This is noizu-labs-ml/NoizuPromptLingo's own configuration. It tells Claude Code how to work on NoizuPromptLingo itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything NoizuPromptLingo configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/noizu-labs-ml/NoizuPromptLingo/main/.claude/commands/task-wizard.md
Clone the repo
git clone --depth 1 https://github.com/noizu-labs-ml/NoizuPromptLingo

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 task-wizard

README.md
[![agentmods](https://agentmods.dev/badge/commands/noizu-labs-ml/noizupromptlingo/task-wizard/github.svg)](https://agentmods.dev/commands/noizu-labs-ml/noizupromptlingo/task-wizard)
Your own site
<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.

agentmods 80×15 button for task-wizard

Your own site · 80×15
<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>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,164 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.00000 $0.05164
Opus 5 $0.00000 $0.02582
Sonnet 5 $0.00000 $0.01033
Haiku 4.5 $0.00000 $0.00516

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

Security

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/commands/task-wizard.md · 882 lines

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
  • Statuspending, in_progress, completed, or deleted
  • 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

Read the full file on GitHub · 882 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. 3d ago First seen · 882 lines · 0 tokens per session scan A b21f40026cd2

Subscribe to this mod's changes

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.