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 skills add markmhendrickson/ateles --skill update-tasksgit clone --depth 1 https://github.com/markmhendrickson/atelesWrote 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/skills/markmhendrickson/ateles/update-tasks)<a href="https://agentmods.dev/skills/markmhendrickson/ateles/update-tasks"><img src="https://agentmods.dev/badge/skills/markmhendrickson/ateles/update-tasks/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/skills/markmhendrickson/ateles/update-tasks"><img src="https://agentmods.dev/badge/skills/markmhendrickson/ateles/update-tasks.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.00023 | $0.01113 |
| Opus 5 | $0.00012 | $0.00557 |
| Sonnet 5 | $0.00005 | $0.00223 |
| Haiku 4.5 | $0.00002 | $0.00111 |
Grade A, and why
update-tasks 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.
How it starts
The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
update-tasks
Create or update Neotoma task entities that represent actionable work items, linked PART_OF a plan. Keeps the task graph in sync with the plan's todos so Apis can eventually consume them as task.created events.
Run after /update-plan whenever todos change significantly, or when task statuses need updating.
Inputs
plan_entity_id: the Neotoma entity ID of the plan matching this session's workstream (the same plan/update-planbound to). There is no global default — resolve it by workstream; only useent_99ace4dd6673aa36ed08b1fefor swarm-architecture work itself.- Updated todos list (from
/update-planoutput or plan snapshot)
Steps
Step 1: Retrieve existing task relationships
mcp__mcpsrv_neotoma__list_relationships(
target_entity_id=<plan_entity_id>,
relationship_type="PART_OF"
)
Then for each related entity, check entity_type=task to get the existing task IDs and names.
Step 2: Identify gaps
Compare the plan's todos (status=pending or in_progress) against existing task entities. Note which todos have no corresponding task entity.
Focus on actionable, near-term items — typically the current phase and one phase ahead. Don't create task entities for Phase 7+ items until Phase 5 is in progress.
Step 3: Create missing task entities
mcp__mcpsrv_neotoma__store(
idempotency_key="task-<slug>-<YYYY-MM-DD>",
entities=[{
"entity_type": "task",
"canonical_name": "<concise task name>",
"title": "<same as canonical_name>",
"description": "<expand on the todo — include file paths, entity IDs, acceptance criteria, implementation notes>",
"status": "pending", // or "in_progress" if actively being worked
"priority": "<see priority mapping below>",
"phase": "<plan phase number as string>",
"tags": ["ateles", "phase-N", "<daemon-name-if-relevant>"]
}],
relationships=[{
"relationship_type": "PART_OF",
"source_index": 0,
"target_entity_id": "<plan_entity_id>"
}]
)
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.
- 5d ago First seen · 113 lines · 23 tokens per session scan A cc56b1133f69
update-tasks is a skill published in the GitHub repository markmhendrickson/ateles (6 stars, last pushed yesterday), licensed MIT. It adds 23 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-09-03.
Other skills, from other repositories
tasks
A task-breakdown tool that turns a plan, specification, feature brief, bug report, technical-debt item, or chore into small TASK-NNN work items. Technical debt means postponed cleanup or design work in a codebase.
continue
Autonomous work — find and execute ready tasks.
prd
A Product Requirements Document (PRD) writer for large software initiatives. A PRD records the problem, goals, requirements, assumptions, and evidence before implementation begins.
roadmap
An implementation plan made from a technical specification, organized into phases, milestones, and dependencies.
debt
A command for showing and closing unanswered questions attached to project documents such as requirements, specifications, features, and designs. It can show questions for the whole project or for one document.
pr
A command for managing pull requests on GitHub or Bitbucket Server. A pull request is a request for other developers to review and merge changes into a project branch.