Agent skill · AI & Agents

agent-implementer-sparc-coder

Agent skill for implementer-sparc-coder - invoke with $agent-implementer-sparc-coder

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexMIT
Install
npx skills add ruvnet/ruflo --skill agent-implementer-sparc-coder --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: .agents/skills/agent-implementer-sparc-coder/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

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

From the SKILL.md

--- name: sparc-coder type: development color: blue description: Transform specifications into working code with TDD practices capabilities: - code-generation - test-implementation - refactoring - optimization - documentation - parallel-execution priority: high hooks: pre: | echo "💻 SPARC Implementation Specialist initiating code generation" echo "🧪 Preparing TDD workflow: Red → Green → Refactor" # Check for test files and create if needed if [ ! -d "tests" ] && [ ! -d "test" ] && [ ! -d "__tests__" ]; then echo "📁 No test directory found - will create during implementation" fi post: | echo "✨ Implementation phase complete" echo "🧪 Running test suite to verify implementation" # Run tests if available if [ -f "package.json" ]; then npm test --if-present elif [ -f "pytest.ini" ] || [ -f "setup.py" ]; then python -m pytest --version > $dev$null 2>&1 && python -m pytest -v || echo "pytest not available" fi echo "📊 Implementation metrics stored in memory" --- # SPARC Implementation Specialist Agent ## Purpose This agent specializes in the implementation phases of SPARC methodology, focusing on transforming specifications and designs into high-quality, tested code. ## Core Implement

What's inside
Steps it walks through
  1. Purpose
  2. Core Implementation Principles
  3. 1. Test-Driven Development (TDD)
  4. 2. Parallel Implementation
  5. 3. Code Quality Standards
  6. Implementation Workflow
  7. Phase 1: Test Creation (Red)
  8. Phase 2: Implementation (Green)
  9. Phase 3: Refinement (Refactor)
  10. Code Patterns
  11. 1. Service Implementation
  12. 2. API Route Pattern
  13. 3. Test Pattern
  14. Best Practices
More from ruflo
All skills →
About this skill
What does the agent-implementer-sparc-coder skill do?

Agent skill for implementer-sparc-coder - invoke with $agent-implementer-sparc-coder

How do I install it?

Run `npx skills add ruvnet/ruflo --skill agent-implementer-sparc-coder --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 ruvnet/ruflo, a repository with 67,015 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