بنقرة واحدة
pipeline-implement
TDD-driven implementation pipeline stage (Design → Code)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
TDD-driven implementation pipeline stage (Design → Code)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Run a multi-agent code review on a GitHub pull request, with parallel security / performance / architecture / style passes, inline comments, and quality-gate enforcement. Use when asked to "github code review", "review github pr", "run code review on PR", "swarm review", "automated PR review", or "post inline review comments".
Manage GitHub issues, project boards, sprints, and milestones with swarm-coordinated automation — issue triage, decomposition into subtasks, board sync, sprint planning, KPI tracking. Use when asked to "github project management", "manage github projects", "github issue automation", "swarm project board", "automate sprint", "triage issues", or "set up project board".
Extract clean article content from a URL (blog post, news article, tutorial) and save it as readable text with ads, navigation, and other clutter removed. Use when asked to "extract article", "scrape text from URL", "download blog post", "parse HTML article", "save article as text", or "clean article content from a webpage".
Dispatch one focused agent per independent problem domain so investigations run concurrently. Use when facing 2+ independent tasks with no shared state — for example "spawn agents in parallel", "parallel debugging", "fan out tasks", "investigate multiple failures at once", or "distribute independent work across agents".
Create HTML dashboards with KPI cards, bar/pie/line charts, progress indicators, and data tables. Use when asked to "create dashboard", "build KPI dashboard", "generate metrics visualization", "make analytics dashboard", "show performance dashboard", or "render data visualization as HTML".
Guide for choosing the right AI coding tool for the task. Use when user asks "which AI should I use", "should I use Claude or Cursor", "what's the best tool for X", or when helping decide between Claude Code, Cursor, Windsurf, VSCode + Copilot, Gemini, Grok, Codex, Qwen, or this Claude interface.
| name | pipeline-implement |
| description | TDD-driven implementation pipeline stage (Design → Code) |
| trigger | After architecture review, when ready to code |
Pipeline Position: Third stage (Design → Code)
Previous Stage: pipeline-arch-review
Next Stage: pipeline-test-verify
Implement architecture using Test-Driven Development (TDD) and best practices.
RED: Write Failing Test First
GREEN: Implement Minimum Code
REFACTOR: Improve Code Quality
REPEAT: Next Behavior
Before Writing Code:
During Implementation:
After Implementation:
Functions:
Naming:
getUserById)user)Error Handling:
Performance:
## Implementation Summary: [Feature Name]
### Files Created/Modified
- `src/module/feature.ts` - [Purpose]
- `tests/module/feature.test.ts` - [Test coverage]
- `src/types/feature.ts` - [Type definitions]
### Test Coverage
**Unit Tests:** X/Y behaviors covered (Z%)
**Integration Tests:** X critical paths tested
**Edge Cases:** [List edge cases covered]
### Implementation Details
#### Core Components
[Brief description of main implementations]
#### Test Results
```bash
✓ All tests passing (XX tests, XX assertions)
✓ Coverage: XX% statements, XX% branches
// Public interfaces implemented
export interface ...
→ Use pipeline-test-verify for comprehensive testing
### TDD Best Practices
- **Test Names:** Describe behavior, not implementation
- Good: `test_user_login_fails_with_invalid_password`
- Bad: `test_check_password_method`
- **Arrange-Act-Assert:** Structure every test clearly
```python
def test_behavior():
# Arrange: Set up test data
user = User(email="test@example.com")
# Act: Execute behavior
result = user.validate_email()
# Assert: Verify outcome
assert result is True
No Mocks in TDD: Test real behavior when possible
Red-Green-Refactor Cycle: Never skip RED
Automatically delegate:
python-pro agentbackend-developer agentfrontend-expert agentdatabase-architect agentAfter implementation complete, suggest:
Use pipeline-test-verify for comprehensive testing and quality checks.