task-executor

task-executor is an agent for Claude Code from sequenzia/agent-alchemy. It costs 46 tokens per session (2,550 once invoked), scanned A, original, MIT.

A software agent that carries out one coding task from requirements through implementation, checks, and a completion report.

In plain words
What is it for?
Use it to implement a specific code change, verify the result, and report what was completed.
Why use it?
It gives a task a defined process, so requirements and acceptance checks are less likely to be skipped.

Agent for Claude Code

Written for Claude Code: PreToolUse hook event. Also seen: model in frontmatter; mentions CLAUDE.md; mentions subagents.

Part of the agent-alchemy-sdd-tools plugin — 5 skills, 6 agents shipped together

Good fit Use it to implement a specific code change, verify the result, and…

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/sequenzia/agent-alchemy/task-executor
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.

Clone the repo
git clone --depth 1 https://github.com/sequenzia/agent-alchemy

Made for: Claude Code.

Or install agent-alchemy-sdd-tools, the plugin that ships this one along with the rest of its 5 skills, 6 agents.

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-executor

README.md
[![agentmods](https://agentmods.dev/badge/agents/sequenzia/agent-alchemy/task-executor.svg)](https://agentmods.dev/agents/sequenzia/agent-alchemy/task-executor)
Your own site
<a href="https://agentmods.dev/agents/sequenzia/agent-alchemy/task-executor"><img src="https://agentmods.dev/badge/agents/sequenzia/agent-alchemy/task-executor.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,550 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.00046 $0.02550
Opus 5 $0.00023 $0.01275
Sonnet 5 $0.00009 $0.00510
Haiku 4.5 $0.00005 $0.00255

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

Security

Grade A, and why

task-executor 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.

claude/sdd-tools/agents/task-executor.md · 325 lines

How it starts

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

Task Executor Agent

You are an expert software engineer executing a single Claude Code Task. Your role is to understand the task requirements, implement the necessary code changes, verify against acceptance criteria, and report results. You work autonomously without user interaction.

Context

You have been launched by the agent-alchemy-sdd:execute-tasks skill with:

  • Task ID: The ID of the task to execute
  • Task Details: Subject, description, metadata, dependencies
  • Retry Context: (if retry) Previous attempt's verification results and failure details
  • Task Execution ID: The execution session identifier (e.g., exec-session-20260131-143022)
  • Execution Context Path: Path to .claude/sessions/__live_session__/execution_context.md for reading shared learnings
  • Context Write Path: Path to context-task-{id}.md for writing learnings (never write directly to execution_context.md)
  • Result Write Path: Path to result-task-{id}.md for writing the compact result file (completion signal for the orchestrator)

Process Overview

Execute these 4 phases in order:

  1. Understand - Load knowledge, read context, classify task, explore codebase
  2. Implement - Read target files, make changes, write tests
  3. Verify - Check acceptance criteria, run tests, determine status
  4. Complete - Update task status, append learnings, write result file, return minimal status

Phase 1: Understand

Step 1: Load Knowledge

Read the execute-tasks skill and reference files:

Read: skills/execute-tasks/SKILL.md
Read: skills/execute-tasks/references/execution-workflow.md
Read: skills/execute-tasks/references/verification-patterns.md

Step 2: Read Execution Context

Read .claude/sessions/__live_session__/execution_context.md if it exists. Review:

  • Project patterns and conventions from earlier tasks
  • Key decisions already made
  • Known issues and workarounds
  • File map of important files
  • Task history with outcomes

Read the full file on GitHub · 325 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 · 325 lines · 46 tokens per session scan A c2ff0f60e3c0

Subscribe to this mod's changes

task-executor is an agent published in the GitHub repository sequenzia/agent-alchemy (44 stars, last pushed 3mo ago), licensed MIT. It adds 46 tokens to every session and 2,550 once invoked, about $0.0002 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.

Related

Other agents, from other repositories

ba-designer

Use when execute-round skill's Phase 2 (BA design pass) needs to produce a complete BA design doc for the current round. Generates D-1..D-N decisions, reference scan triplet, file-level decomposition, and test plan.

Arch1eSUN/Arcgentic · 53 tokens

developer

Use when execute-round's Phase 3 (dev body) needs to implement BA design exactly. Writes source + tests per file decomposition, runs pre-audit quality gates, registers forward-debts, and reports diff summary.

Arch1eSUN/Arcgentic · 47 tokens

agents-expert

Expert on creating and configuring custom Claude Code agents (subagents). Use PROACTIVELY when the user mentions creating an agent, custom agent, or subagent; when designing specialized agents for project tasks; when troubleshooting agent invocation, tools, or model config; or during /agents-generate. Knows the…

claude-world/director-mode-lite · 138 tokens

requirement-analyzer

Deep requirement analysis agent for the Self-Evolving Loop. Use when executing /evolving-loop Phase ANALYZE — starting a new loop session, when the user provides a new requirement or feature request, or when re-analyzing after a failed iteration. Extracts acceptance criteria, a complexity score, an implementation…

claude-world/director-mode-lite · 130 tokens

arcgentic-auditor

Dispatched when a round is in auditinprogress state. Produces a verdict file at the project's auditsdir following the canonical 9-section template, with a mechanically-verifiable fact table, structured findings, and lesson-codification result. Does NOT read planner/developer reasoning chains — audit independence is…

Arch1eSUN/Arcgentic · 101 tokens

reviewer

Philosophical guardrails enforcer — independently audits code, tests, and spec for layered-integrity, Why>What, error-as-data, and the related Ironclad philosophical invariants. Activate only when the connected project contains spec.yaml or the user explicitly names Cladding; ignore ordinary requests in uninitialized…

qwerfunch/cladding · 68 tokens