Agent skill · Testing & QA

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/agent/coding-agent-adaptationio-skrillz/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 │ │ │

What's inside
Steps it walks through
  1. Quick Start
  2. Start a Coding Session
  3. Implement Next Feature
  4. Session Protocol
  5. TDD Workflow
  6. Key Rules
  7. Commit Message Format
  8. Integration Points
  9. References
  10. Scripts
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going