coding-agent
Incremental development agent with TDD workflow. Use when implementing features one at a time, following test-driven development, making commits, or resuming development work.
npx skills add majiayu000/claude-skill-registry --skill coding-agent-adaptationio-skrillz --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Coding Agent Incremental development agent that implements features using test-driven development (TDD) in subsequent sessions after initialization. ## Quick Start ### Start a Coding Session ```python from scripts.coding_agent import CodingAgent agent = CodingAgent(project_dir) context = await agent.start_session() print(f"Session {context.iteration} started") ``` ### Implement Next Feature ```python feature = await agent.select_next_feature() result = await agent.implement_feature(feature) if result.success: await agent.mark_feature_complete(feature) await agent.commit_work(f"Implement: {feature.description}") ``` ## Session Protocol ``` ┌─────────────────────────────────────────────────────────────┐ │ CODING SESSION PROTOCOL │ ├─────────────────────────────────────────────────────────────┤ │ │ │ 1. RESTORE CONTEXT │ │ ├─ Read claude-progress.txt (quick state) │ │ ├─ Read feature_list.json (work remaining) │ │ └─ Get git log (recent commits) │ │ │ │ 2. ENVIRONMENT CHECK │ │ ├─ Run init.sh if needed │ │ ├─ Verify server running │ │ └─ Run smoke tests │ │ │ │ 3. SELECT FEATURE │ │ ├─ Get highest-priority incomplete feature │ │ ├─ Read feature steps │ │ └─ Plan implementation │ │ │
- Quick Start
- Start a Coding Session
- Implement Next Feature
- Session Protocol
- TDD Workflow
- Key Rules
- Commit Message Format
- Integration Points
- References
- Scripts
What does the coding-agent skill do?
Incremental development agent with TDD workflow. Use when implementing features one at a time, following test-driven development, making commits, or resuming development work.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill coding-agent-adaptationio-skrillz --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
