---
name: Implement
slug: implement-2
category: AI Engineering
description: Implement carries out planned work from a spec, ticket, or agreed conversation into code. Use it when you want an existing plan turned into the smallest coherent change and verified with tests or checks.
github: "https://github.com/stevesolun/ctx/tree/main/.agents/skills/implement"
language: Python
stars: 578
forks: 71
install: "npx degit https://github.com/stevesolun/ctx/tree/main/.agents/skills/implement ~/.claude/skills/implement"
installs_to: ~/.claude/skills/implement
source_path: .agents/skills/implement/SKILL.md
collection_size: 25
category_size: 2451
collection_url: "https://dirskills.com/collections/stevesolun/ctx"
added: 2026-08-25T05:14:02.880Z
last_synced: 2026-08-25T05:14:02.880Z
canonical_url: "https://dirskills.com/skills/implement-2"
---

# Implement

Implement carries out planned work from a spec, ticket, or agreed conversation into code. Use it when you want an existing plan turned into the smallest coherent change and verified with tests or checks.

**Install:**

```bash
npx degit https://github.com/stevesolun/ctx/tree/main/.agents/skills/implement ~/.claude/skills/implement
```

## README

# Implement planned work

Confirm the intended outcome and inspect the relevant code, tests, and
repository conventions. Resolve ambiguity only when it would materially change
the result; otherwise make a reasonable scoped assumption and proceed.

Implement the smallest coherent change that satisfies the source requirements.
Use test-first development when requested or when a focused failing test is the
clearest feedback loop. Avoid speculative abstractions and unrelated cleanup.

Validate the changed surface proportionally: start with focused evidence and
expand to broader checks when risk or repository contracts justify it. Use a
separate review when semantic risk remains or the user requests one.

Report what changed, what was verified, and any remaining uncertainty. Commit,
publish, or mutate tracker state only when requested or clearly included in the
active workflow.
