بنقرة واحدة
sce-task-execution
Use when user wants to Execute one approved task with explicit scope, evidence, and status updates.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when user wants to Execute one approved task with explicit scope, evidence, and status updates.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Write atomic, repo-style git commits from a change summary or diff. Use when preparing commit messages, splitting work into coherent commits, or reviewing whether a commit is too broad.
Use when user wants to Bootstrap SCE baseline context directory when missing.
Use when user wants to Synchronize context files to match current code behavior after task execution.
Use when user wants to create a structured SCE handover for the current task.
Use when user wants to Create or update an SCE implementation plan with scoped atomic tasks.
Use when user wants to review an existing plan and prepare the next task safely.
استنادا إلى تصنيف SOC المهني
| name | sce-task-execution |
| description | Use when user wants to Execute one approved task with explicit scope, evidence, and status updates. |
Example mandatory stop prompt:
Task goal: Add input validation to the user registration endpoint.
In scope: src/routes/register.ts, src/validators/user.ts
Out of scope: Auth logic, database schema, frontend forms
Done checks: All existing tests pass; new validation tests cover empty/invalid email and short passwords
Expected changes: ~2 files modified, no new dependencies
Approach: Use the existing `validateSchema` helper; add a Zod schema for registration payload
Trade-offs: Zod adds minor overhead; keeps validation consistent with other routes
Risks: Existing callers that omit optional fields may start failing validation
Continue with implementation now? (yes/no)
context/tmp/.context/plans/{plan_id}.md.Example task status update (context/plans/{plan_id}.md):
## Task: Add input validation to registration endpoint
- **Status:** done
- **Completed:** 2025-06-10
- **Files changed:** src/routes/register.ts, src/validators/user.ts
- **Evidence:** 14/14 tests passed, lint clean, build succeeded (12s)
- **Notes:** Zod schema added; no breaking changes to existing callers