بنقرة واحدة
implement
Executes implementation plan with quality checks and progress tracking. Follows AGENTS.md patterns strictly.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Executes implementation plan with quality checks and progress tracking. Follows AGENTS.md patterns strictly.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Validates research or plan against hallucination, overscoping, and traceability. Produces a clear PASS/WARN/FAIL verdict.
Reviews code for correctness, security, performance, and pattern compliance. P0/P1/P2 severity. Absorbs security and performance audit checks.
Creates detailed implementation plan from validated research. Produces task breakdown with dependencies and file inventory.
Use when needing to understand requirements before implementation. Gathers context from Jira, Confluence, codebase, and docs. Produces research document with confidence assessment.
Use when implementing features from Jira tickets, PRDs, or user requirements. Orchestrates Research-Plan-Implement workflow with quality gates.
استنادا إلى تصنيف SOC المهني
| name | implement |
| description | Executes implementation plan with quality checks and progress tracking. Follows AGENTS.md patterns strictly. |
Executes the validated plan systematically, task by task, with verification at each step.
update_plan or a simple checklist..claude/output for Claude Code, .codex/output for Codex CLI.Before writing any code:
Required Reading (in order):
├── AGENTS.md ← Project patterns & conventions (read first, always)
├── plan-{feature}.md ← Implementation plan
├── research-{feature}.md ← Research context
└── Reference files from plan ← Similar existing implementations
□ AGENTS.md fully read — understand state management, models, styling, widget structure
□ Plan fully loaded — all tasks, dependencies, and acceptance criteria known
□ Reference code reviewed — similar existing implementations identified
Set up progress tracking before starting:
TodoWrite (Claude Code) or update_plan (Codex CLI):
T1: {title} — pending
T2: {title} — pending
...all tasks from plan
For each task in dependency order:
One task at a time. Never skip ahead.
1. Follow AGENTS.md patterns EXACTLY — check before writing every new file
2. Use existing components — don't rebuild what already exists
3. No scope creep — only implement what's in the plan
4. No hardcoded values — use project constants (check AGENTS.md for names)
5. Define constants ONCE, reference everywhere
6. Verify library behavior from docs or source — never assume
After each task, confirm:
□ Code compiles (no errors)
□ Lint passes
□ Follows AGENTS.md patterns
□ All acceptance criteria for this task met
□ No unplanned code added
Minor issue (typo, wrong import):
→ Fix and continue
Design issue (plan is wrong for this layer):
→ Stop, revise plan, re-audit if significant
Fundamental issue (research was incomplete):
→ Stop, return to research phase
After all tasks complete:
□ All tasks marked completed
□ Full lint / analyze passes
□ Feature works as specified (review acceptance criteria)
□ No regressions in existing functionality
□ No hardcoded values
After verification, trigger code review:
Claude Code: Use Task tool with subagent_type: "code-reviewer"
Other agents: Invoke /code-review skill
Scope: all new and modified files from the plan's file inventory
The code review covers correctness, security, performance, and pattern compliance.
After implementation complete:
# Implementation Summary: {Feature Name}
## Status
- Tasks Completed: {X}/{Total}
- Lint: {PASS/FAIL}
- Pattern compliance: {PASS/FAIL}
## Files Changed
### Created
| File | Purpose |
|------|---------|
| `path` | {purpose} |
### Modified
| File | Changes |
|------|---------|
| `path` | {changes} |
## Deviations from Plan
{Any deviations and reasons, or "None"}
## Next Steps
1. Code review (triggered)
2. {other items}
/implement — Start implementation from plan
/implement continue — Continue from last checkpoint
/implement task T5 — Start from specific task
/implement verify — Run verification only