--- 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…