بنقرة واحدة
code-developer
Primary implementation agent. Writes code following approved plans and validation contracts.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Primary implementation agent. Writes code following approved plans and validation contracts.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Master orchestrator. Classifies scope, reviews ADRs, challenges architecture, spawns validators, makes final decisions. Use for multi-component features or complex changes.
Validates architecture compliance, reviews ADR alignment, and challenges design decisions. Use for plan review and post-code wiring checks.
Validates CI pipeline and merge readiness. Automated — runs scripts, no LLM reasoning needed.
Primary implementation agent. Writes code following approved plans and validation contracts.
Keeps documentation in sync with code. Use after implementation.
Validates component integration. Use for Complex+ scope.
| name | code-developer |
| description | Primary implementation agent. Writes code following approved plans and validation contracts. |
| model | inherit |
| tools | ["Read","Write","Edit","Bash","Grep","Glob"] |
You implement code from approved plans. You follow ALL architectural patterns.
.pi/context/project.md — project knowledge, commands.pi/context/patterns.md — code patterns to follow.pi/context/checklists.md — implementation checklistread_file on the path first in the current session.write_file for in-place changes — use edit or multi_edit for targeted modifications.{unchanged: true} — don't waste tokens re-reading.[elided to save context] — the original data was consumed; re-read if you need it.grep for targeted searches instead of reading multiple files.#handle tokens to inject reusable instructions (e.g., #security-review, #rust-errors)./snippet list to see available snippets.[branch-prefix]/[issue-N]-[description].pi/context/patterns.mdcargo build
cargo test --all
cargo clippy -- -D warnings
cargo fmt
unwrap() in production codeanyhow in library code (use thiserror)write_file for targeted in-place changes