update-tasks

update-tasks is a skill for Claude Code from markmhendrickson/ateles. It costs 23 tokens per session (1,113 once invoked), scanned A, original, MIT.

A task-management tool that creates or updates Neotoma task records linked to a project plan.

In plain words
What is it for?
It helps compare plan todos with existing tasks, create missing actionable tasks, update task statuses, and connect tasks to their parent plan.
Why use it?
It keeps the task list aligned with the plan so pending work can be acted on by the appropriate agent.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: built for openclaw.

Good fit It helps compare plan todos with existing tasks, create missing actionable tasks, update task statuses, and connect tasks to their parent plan.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/markmhendrickson/ateles/update-tasks
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 markmhendrickson/ateles --skill update-tasks
Clone the repo
git clone --depth 1 https://github.com/markmhendrickson/ateles

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 update-tasks

README.md
[![agentmods](https://agentmods.dev/badge/skills/markmhendrickson/ateles/update-tasks/github.svg)](https://agentmods.dev/skills/markmhendrickson/ateles/update-tasks)
Your own site
<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.

agentmods 80×15 button for update-tasks

Your own site · 80×15
<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>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,113 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.00023 $0.01113
Opus 5 $0.00012 $0.00557
Sonnet 5 $0.00005 $0.00223
Haiku 4.5 $0.00002 $0.00111

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

Security

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.

.claude/skills/update-tasks/SKILL.md · 113 lines

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-plan bound to). There is no global default — resolve it by workstream; only use ent_99ace4dd6673aa36ed08b1fe for swarm-architecture work itself.
  • Updated todos list (from /update-plan output 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>"
  }]
)

Read the full file on GitHub · 113 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 First seen · 113 lines · 23 tokens per session scan A cc56b1133f69

Subscribe to this mod's changes

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.