implement-task

implement-task is a skill for Claude Code, Codex from siarhei-belavus/agent-public. It costs 35 tokens per session (2,259 once invoked), scanned A, original, MIT.

A task-implementation workflow for coding changes planned in `.plans/` files. It treats `PLAN.md` as the agreed instructions and requires explicit handling of changes to that plan.

In plain words
What is it for?
Use it to implement planned repository tasks, check task packets and project rules, handle amendments, and validate the resulting changes.
Why use it?
It reduces the risk of coding outside the agreed scope or making silent changes to the plan. It also encourages small changes and documented validation.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/siarhei-belavus/agent-public/implement-task
Any agent
npx skills add siarhei-belavus/agent-public --skill implement-task
Clone the repo
git clone --depth 1 https://github.com/siarhei-belavus/agent-public

Made for: Claude Code, Codex.

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 implement-task

README.md
[![agentmods](https://agentmods.dev/badge/skills/siarhei-belavus/agent-public/implement-task.svg)](https://agentmods.dev/skills/siarhei-belavus/agent-public/implement-task)
Your own site
<a href="https://agentmods.dev/skills/siarhei-belavus/agent-public/implement-task"><img src="https://agentmods.dev/badge/skills/siarhei-belavus/agent-public/implement-task.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,259 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00035 $0.02259
Opus 5 $0.00017 $0.01130
Sonnet 5 $0.00007 $0.00452
Haiku 4.5 $0.00003 $0.00226

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

Security

Grade A, and why

implement-task 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 4d 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.

skills/atelier-workflow/implement-task/SKILL.md · 217 lines

How it starts

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

implement-task

Implement changes so they are correct, reviewable, and maintainable. Optimize for small safe increments, clear ownership, explicit validation, and low future change cost.

Treat PLAN.md as a contract. Do not improvise around it silently.

Read first

  • ../references/task-packet-contract.md
  • ../references/persistent-artifacts-contract.md
  • ../references/review-phases-contract.md
  • ../references/compatibility-policy.md
  • ../references/ownership-and-reuse-policy.md
  • ../references/final-state-authoring-policy.md
  • ../references/initiative-workflow-contract.md when implementing an initiative child packet
  • ../../references/communication-mode.md
  • relevant tracked AGENTS.md chain
  • applicable AGENTS.override.md only if local execution constraints matter
  • current task packet: INDEX.md, PLAN.md, AMENDMENTS.md, ARTIFACT_CANDIDATES.md

Implementation workflow

  1. Establish scope before coding.
    • Confirm the task, desired behavior, constraints, and nearby boundaries.
    • Refuse to start without PLAN.md.
    • Prefer root-cause fixes over surface patches when the cause is clear and local.
  2. Repair packet drift before coding.
    • If AMENDMENTS.md or ARTIFACT_CANDIDATES.md is missing, create the missing placeholder before continuing.
    • Note the packet repair in INDEX.md.
  3. Identify the true change surface.
    • Find the owner modules, contracts, state transitions, persistence paths, tests, and tracked AGENTS.md constraints that define the behavior.
    • Distinguish direct edits from incidental neighbors.
    • Distinguish internal boundaries from real external contracts relative to the service.
    • Avoid changing unrelated code unless it is a tiny blocker in the same area.
  4. Apply ownership-and-reuse policy.
    • Identify the existing owner for each important behavior or invariant before adding code.
    • Prefer reusing, extending, or slightly refactoring that owner over creating a parallel helper/service/adapter/store/module/type.
    • If existing code is close but awkward, do a small tidy-first refactor that makes reuse possible.
    • Do not keep old and new same-purpose implementations alive together.
    • If a genuinely new boundary is required, make the non-overlapping responsibility explicit in code and packet notes.
  5. Apply the compatibility policy.
    • Backward compatibility is prohibited by default.
    • Do not add aliases, shims, dual support, fallback behavior, or compatibility wrappers unless the human explicitly required compatibility.
    • If the change touches a real external boundary and compatibility requirements are unresolved, stop and ask the human explicitly before proceeding.
    • For internal-only changes, do not ask and do not preserve compatibility.
  6. Implement the chosen target state directly.
    • Move canonical code/docs/contracts toward the steady-state design described in the plan.
    • Remove superseded vocabulary and same-purpose residue inside owner artifacts instead of layering new semantics on top of old names.
    • If a real external boundary requires temporary compatibility behavior, keep the steady-state owner and current contract obvious.
  7. Implement in reviewable increments.
    • Follow the plan strictly.
    • Keep the system coherent after each step where possible.
    • Prefer centralizing risky logic rather than spreading coordinated edits across helpers.
    • Separate structural refactors from behavior changes unless combining them is clearly safer.
  8. Preserve maintainability while coding.
    • Keep ownership obvious.
    • Minimize new sources of truth.
    • Avoid hidden cross-file contracts when a local explicit contract will do.
    • Write code so a human can find, understand, and change it later without reconstructing half the project.
    • Keep canonical owner artifacts in one vocabulary and one state model.
  9. Validate deliberately.
    • Start with the smallest test or check that proves the changed behavior.
    • Expand validation as confidence grows.
    • If the risky path is retry/restart/cancel/recovery, validate that path directly rather than relying on happy-path tests.
  10. Hand off cleanly.
  • Keep AMENDMENTS.md, ARTIFACT_CANDIDATES.md, and INDEX.md current enough that both review phases can start cold.
  • Record durable residue candidates when they appear.
  • Commit the implementation pass before reporting back to the lead.
  • Never write tracked AGENTS.md or AGENTS.override.md directly.

Read the full file on GitHub · 217 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. 4d ago First seen · 217 lines · 35 tokens per session scan A a1b8af332411

Subscribe to this mod's changes

implement-task is a skill published in the GitHub repository siarhei-belavus/agent-public (2 stars, last pushed 3mo ago), licensed MIT. It adds 35 tokens to every session and 2,259 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-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens