spec-kit-execute-tasks

spec-kit-execute-tasks is a skill for Claude Code from ErikaAX08/erikas-skills. It costs 139 tokens per session (4,121 once invoked), scanned A, original, MIT.

A task-runner skill that turns an approved tasks.md file into working code, following the listed dependencies and story order.

In plain words
What is it for?
Use it to implement planned features from tasks.md, rerun a specific task or story, and coordinate checks, commits, and a final review.
Why use it?
It removes the need to manually track which implementation task comes next and whether each story is truly complete.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: mentions subagents; mentions Claude Code.

Good fit Use it to implement planned features from tasks.md, rerun a specific task or story, and coordinate checks, commits, and a final review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/erikaax08/erikas-skills/spec-kit-execute-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 ErikaAX08/erikas-skills --skill spec-kit-execute-tasks
Clone the repo
git clone --depth 1 https://github.com/ErikaAX08/erikas-skills

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 spec-kit-execute-tasks

README.md
[![agentmods](https://agentmods.dev/badge/skills/erikaax08/erikas-skills/spec-kit-execute-tasks/github.svg)](https://agentmods.dev/skills/erikaax08/erikas-skills/spec-kit-execute-tasks)
Your own site
<a href="https://agentmods.dev/skills/erikaax08/erikas-skills/spec-kit-execute-tasks"><img src="https://agentmods.dev/badge/skills/erikaax08/erikas-skills/spec-kit-execute-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 spec-kit-execute-tasks

Your own site · 80×15
<a href="https://agentmods.dev/skills/erikaax08/erikas-skills/spec-kit-execute-tasks"><img src="https://agentmods.dev/badge/skills/erikaax08/erikas-skills/spec-kit-execute-tasks.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 139 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,121 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.00139 $0.04121
Opus 5 $0.00069 $0.02060
Sonnet 5 $0.00028 $0.00824
Haiku 4.5 $0.00014 $0.00412

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

Security

Grade A, and why

spec-kit-execute-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 11d 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.

spec-kit-execute-tasks/SKILL.md · 291 lines

How it starts

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

Execute Tasks — Implementation Orchestration Skill

Purpose

Turn an approved tasks.md into real, working code — the only skill in spec-kit that writes product code. It is the last link in the chain (spec-kit-generate-specspec-kit-generate-planspec-kit-generate-tasks → [spec-kit-analyze-consistency] → spec-kit-execute-tasks), and it earns that position by delegating, not reimplementing: implementation discipline comes from verify-before-implement, commit messages from git-commits, architectural constraints from whatever architecture skills the project already has active, and a final safety-net review from pre-pr-review. This skill's own job is orchestration — sequencing, parallelism where it's genuinely safe, and enforcing that a story is never reported done unless its closure checkpoint actually holds.

User Input

$ARGUMENTS

Always consider the complete user message and any files or attachments available in the current conversation, even when $ARGUMENTS appears literally or is empty. The most common inputs are: a feature directory or tasks.md path, optionally scoped to a single story ("just execute US1") or a single task ("redo T004").

Core Principle

Delegate discipline, don't reimplement it. A task is done when its own validation ran and passed — not when the code looks right. A story is done when its checkpoint holds, for real.

  • Every category of change this skill touches (a contract, a model, a config value, a library call) already has a verification template in verify-before-implement — use it, don't write a weaker inline version.
  • [x] is not a formatting convention, it's a claim: "this was verified, for real, right now."
  • A story's [CIERRE] task is not skipped, inferred, or rubber-stamped — its Verifica block is walked explicitly before the story is reported complete.

Non-Negotiable Rules

  1. Do not invent facts. Never write a field, endpoint, signature, config key, or library call without reading its actual definition first — apply verify-before-implement's matching §6 template for the category of change (contract, model, type, endpoint integration, state/enum, config, library API, CLI) before writing the corresponding code.
  2. Preserve task and plan intent. Implement exactly what a task describes. If the real code makes the task's description stop making sense, surface the conflict (§ Handling Unplanned Scope) — do not quietly reinterpret the task to fit what's convenient.
  3. A task is marked [x] only after its Validación criterion actually ran and was observed to pass — never by inference, never because the code compiles/type-checks, never because it "should work." Running a test means executing it and reading the output.
  4. Never silently re-touch a task already marked [x] from a prior run. Re-invoking this skill skips already-closed tasks unless the user explicitly asks to redo/rework a specific one — this mirrors spec-kit-sync-artifacts'/spec-kit-generate-tasks's "closed work" rule, applied at execution time.
  5. Fase 0's staleness check is mandatory before touching any code. If it reports drift with material impact anywhere in the chain, stop and require resolution before implementing — do not implement against a tasks.md that might already be stale.
  6. A story's [CIERRE] task is executed for real, not skipped. Its Verifica conditions (no dangling references, no half-wired paths, full R-AC coverage) are walked explicitly before the story's checkpoint is considered held.
  7. No new scope. If execution reveals a gap tasks.md doesn't cover, stop and report it — do not silently add a task, an endpoint, or a field to "make it work." (§ Handling Unplanned Scope.)
  8. Respect the project's active architecture/convention skills as binding constraints, not suggestions — frontend-architecture, backend-api-standards, or an equivalent project- specific skill, when active, governs how code is written; this skill does not override them.
  9. Commit messages follow git-commits exactly. Never invent a commit message format or skip that skill's conventions because "it's just a small change."
  10. pre-pr-review runs at the end over the accumulated diff, always — not skipped even when every individual task's validation passed. It is the last safety net, not the first place a gap should be discovered (§ Final Gate).
  11. Parallelism is a capability, applied only when genuinely safe — independent stories or [P] tasks with no shared file/state. Default to sequential execution; do not force parallelism where dependencies or shared files make it unsafe.
  12. Every task-executor subagent gets scoped context — its task or story, plus the relevant plan.md/spec.md excerpts — never the full parent conversation history.
  13. Never claim something was tested, verified, or committed when it wasn't actually done. "Tests pass" means they were run and their output was read.
  14. Generate portable agent pairs. If this workflow creates a task-executor (or other support agent), it must generate and validate both a Kiro CLI and a Claude Code definition per the shared portability contract.

Read the full file on GitHub · 291 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. 11d ago First seen · 291 lines · 139 tokens per session scan A 0cc54b1fe5ad

Subscribe to this mod's changes

spec-kit-execute-tasks is a skill published in the GitHub repository ErikaAX08/erikas-skills (5 stars, last pushed 11d ago), licensed MIT. It adds 139 tokens to every session and 4,121 once invoked, about $0.0007 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.

Related

Other skills, from other repositories

sdd-tasks

Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.

Gentleman-Programming/gentle-ai · 25 tokens

gsap-scrolltrigger

Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…

calesthio/OpenMontage · 68 tokens

threejs-geometry

Three.js geometry creation - built-in shapes, BufferGeometry, custom geometry, instancing. Use when creating 3D shapes, working with vertices, building custom meshes, or optimizing with instanced rendering.

calesthio/OpenMontage · 46 tokens

threejs-textures

Three.js textures - texture types, UV mapping, environment maps, texture settings. Use when working with images, UV coordinates, cubemaps, HDR environments, or texture optimization.

calesthio/OpenMontage · 41 tokens

seedance-2-5

Generate 4-30 second cinematic video with ByteDance Seedance 2.5 through fal.ai, Volcengine Ark, Runway, or ComfyUI Partner Nodes. Use for long single generations, synchronized audio, and large multimodal reference sets (up to 30 images, 10 videos, and 10 audio clips). Also covers the 2.5 prompt contract: section…

calesthio/OpenMontage · 117 tokens

comfyui

Use when working with ComfyUI workflows in OpenMontage, including comfyuiimage/comfyuivideo/comfyuimusic, custom workflowjson/workflowpath inputs, outputnode selection, missing model setup, LoRAs, low-VRAM workflow choices, and community workflow imports.

calesthio/OpenMontage · 61 tokens