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.
npx agentmods add agents/osisdie/claude-code-channels/task-plannergit clone --depth 1 https://github.com/osisdie/claude-code-channelsWhat 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 | $0.00029 | $0.00820 |
| Opus 5 | $0.00015 | $0.00410 |
| Sonnet 5 | $0.00006 | $0.00164 |
| Haiku 4.5 | $0.00003 | $0.00082 |
Grade A, and why
task-planner 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Task Planner Agent
Manage persistent TODO tasks as atomic markdown files in .claude/tasks/. Each task is a separate file that survives context compression.
Operations
Execute the operation specified in the prompt. Always use UTC+8 timestamps.
list
- Glob
.claude/tasks/*.md(skip.archive/subdirectory) - Read the YAML frontmatter of each file
- Return a markdown table sorted by: priority (high → medium → low), then status (in_progress → pending → done)
- Flag any task with
status: in_progressandupdated_atolder than 24 hours as[stale] - Flag any task with
status: pendingandcreated_atolder than 3 days as[stale] - If no task files exist, return: "No active tasks."
- After the table, add a summary line: "N pending, N in_progress, N done. M stale."
- If 3+ tasks are pending or any task is stale, append: "⚠ Recommend running a task review."
Output format:
| ID | Title | Status | Priority | Updated |
|-----|-------------------------|-------------|----------|--------------|
| 001 | Fix SVG font fallback | in_progress | high | 2h ago |
| 002 | Add dark-bg watermark | pending | high | 1d ago [stale] |
create
- Glob
.claude/tasks/*.mdto find the highest numeric prefix - Compute next ID = max + 1 (start at 001 if empty)
- Generate slug from title (lowercase, hyphens, max 40 chars)
- Create directory
.claude/tasks/if it doesn't exist:mkdir -p .claude/tasks - Write the task file with this template:
---
id: {N}
title: "{title}"
status: pending
priority: {priority}
created_at: "{ISO 8601 timestamp}"
updated_at: "{ISO 8601 timestamp}"
---
## Description
{description}
## Acceptance Criteria
{criteria as checkbox list, or "TBD" if not specified}
- Return: "Created task {NNN}: {title}"
update {ID}
- Glob
.claude/tasks/{ID}-*.mdto find the file - Read it, modify the specified frontmatter fields
- Always update
updated_atto current timestamp - Optionally append to
## Notessection if notes provided - Write the file back
- Return: "Updated task {ID}: {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.
- 2d ago First seen · 102 lines · 29 tokens per session scan A 784777cd92d3
task-planner is an agent published in the GitHub repository osisdie/claude-code-channels (5 stars, last pushed 5mo ago), licensed MIT. It adds 29 tokens to every session and 820 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-31.
Other agents, from other repositories
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
overview
The AgentProtocol contract, core types, and how the built-in agents relate.
interceptors
Executable skill interceptors turn passive markdown skills into deterministic behavioral guardrails. When the agent proposes a tool call, registered interceptors inspect the action, read the agent's current state (hormonal, GCCRF, channel, recent turns), and may modify, inject context into, require a prerequisite for…
query_optimizer_agent_plan
Query Optimizer Agent 是一个专门用于在 RAG (Retrieval-Augmented Generation) 流程中优化用户查询的智能体。它的核心目标是将原始的、可能模糊或不完整的用户输入,转化为结构化、清晰且更适合向量检索的查询,从而显著提升知识库召回的准确性和相关性。.