new-task

new-task is a skill for Claude Code, Codex from hams-ollo/zen-agent-skills. It costs 198 tokens per session (3,342 once invoked), scanned A, original, MIT.

A task-authoring helper that turns a rough idea, bug report, or roadmap item into one or more self-contained task files for an agent.

In plain words
What is it for?
It writes task descriptions with the intended parent, dependencies, files to touch, and a command that can check whether the task is complete.
Why use it?
It makes the work clear enough for an isolated agent to execute without repeatedly asking what files to change or how to verify the result.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

Good fit It writes task descriptions with the intended parent, dependencies, files to touch, and a command that can check whether the task is complete.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hams-ollo/zen-agent-skills/new-task
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.

Any agent
npx skills add hams-ollo/zen-agent-skills --skill new-task
Clone the repo
git clone --depth 1 https://github.com/hams-ollo/zen-agent-skills

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/hams-ollo/zen-agent-skills/new-task/github.svg)](https://agentmods.dev/skills/hams-ollo/zen-agent-skills/new-task)
Your own site
<a href="https://agentmods.dev/skills/hams-ollo/zen-agent-skills/new-task"><img src="https://agentmods.dev/badge/skills/hams-ollo/zen-agent-skills/new-task/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 new-task

Your own site · 80×15
<a href="https://agentmods.dev/skills/hams-ollo/zen-agent-skills/new-task"><img src="https://agentmods.dev/badge/skills/hams-ollo/zen-agent-skills/new-task.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 198 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,342 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.00198 $0.03342
Opus 5 $0.00099 $0.01671
Sonnet 5 $0.00040 $0.00668
Haiku 4.5 $0.00020 $0.00334

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

Security

Grade A, and why

new-task 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 5d 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.

.agents/skills/new-task/SKILL.md · 155 lines

How it starts

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

new-task

Author task files that an isolated agent can execute without asking questions. This is the decomposition step of the kit spine: new-task -> fix-batch (parallel worktree-isolated agents). It writes into the .tasks/ system that init-worktracking scaffolds, so init-worktracking runs before this skill rather than after it, which is why Step 1 stops and points at it when .tasks/ is absent. When the input is an approved spec, spec-plan-readiness gates the task set before dispatch (Step 7). The quality of everything downstream is capped by the quality of the task file, so this skill spends effort up front on purpose.

The bar a task file must clear

A good task is self-contained: an agent that reads only AGENTS.md, the task file, and the files listed in touched_files can finish it correctly. Concretely, every task you write must have:

  • Honest touched_files: the complete read/write surface, discovered by inspecting the repo, not guessed. Too narrow and the agent is blocked; too wide and it wanders and collides with parallel agents.
  • A real parent: what the task serves, so intent is traceable without reading anything else. Where ROADMAP.md exists, that is the Feature or Epic it hangs from, and if no Feature fits, propose adding one. Where it does not, which is the init-worktracking lite tier, it is one line of free text naming the goal. Required either way, and never a pointer to a file the repo does not have.
  • Resolved depends_on: ids of tasks that must reach done/ first; [] if none. Never invent an id.
  • spec and scenarios, when the work comes from an approved spec: the contract path and the S-NNN ids this task covers. Omit both when there is no spec. See Decomposing an approved spec.
  • A mechanically-verifiable acceptance command: an exact command (usually the repo's test command scoped to the change) that passes only when the work is done. Not "tests pass" in prose, the literal command.
  • Risk and rollback notes, when the deterministic rule fires. Required when the task touches more than one module, changes a persisted data format or protocol, or cannot be safely reversed by reverting one commit. Omit the section entirely when none of the three hold. This is not a judgment call about how risky the work feels: it is the same rule spec-plan-readiness applies, quoted so the two cannot drift apart, and a task that triggers it without the notes will be blocked at the gate no matter how well the rest is written.
  • Tight scope with an explicit out-of-scope: so a well-meaning agent keeps the change atomic.

Read the full file on GitHub · 155 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. 5d ago Changed · +7 lines 87c8c85fd504
  2. 8d ago First seen · 148 lines · 198 tokens per session scan A 8db41f0cb916

Subscribe to this mod's changes

new-task is a skill published in the GitHub repository hams-ollo/zen-agent-skills (2 stars, last pushed 7d ago), licensed MIT. It adds 198 tokens to every session and 3,342 once invoked, about $0.0010 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-31.