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 ErikaAX08/erikas-skills --skill spec-kit-execute-tasksgit clone --depth 1 https://github.com/ErikaAX08/erikas-skillsWrote 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/erikaax08/erikas-skills/spec-kit-execute-tasks)<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.
<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>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.00139 | $0.04121 |
| Opus 5 | $0.00069 | $0.02060 |
| Sonnet 5 | $0.00028 | $0.00824 |
| Haiku 4.5 | $0.00014 | $0.00412 |
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.
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-spec → spec-kit-generate-plan →
spec-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 — itsVerificablock is walked explicitly before the story is reported complete.
Non-Negotiable Rules
- 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. - 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.
- A task is marked
[x]only after itsValidacióncriterion 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. - 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 mirrorsspec-kit-sync-artifacts'/spec-kit-generate-tasks's "closed work" rule, applied at execution time. - 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.mdthat might already be stale. - A story's
[CIERRE]task is executed for real, not skipped. ItsVerificaconditions (no dangling references, no half-wired paths, fullR-ACcoverage) are walked explicitly before the story's checkpoint is considered held. - No new scope. If execution reveals a gap
tasks.mddoesn't cover, stop and report it — do not silently add a task, an endpoint, or a field to "make it work." (§ Handling Unplanned Scope.) - 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. - Commit messages follow
git-commitsexactly. Never invent a commit message format or skip that skill's conventions because "it's just a small change." pre-pr-reviewruns 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).- 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. - Every
task-executorsubagent gets scoped context — its task or story, plus the relevantplan.md/spec.mdexcerpts — never the full parent conversation history. - 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.
- 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.
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.
- 11d ago First seen · 291 lines · 139 tokens per session scan A 0cc54b1fe5ad
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.
Other skills, from other repositories
sdd-tasks
Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.
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…
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.
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.
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…
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.