planning-and-tracking
Execution plan with milestone/issue hierarchy, explicit dependencies, and safe parallelism.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Execution plan with milestone/issue hierarchy, explicit dependencies, and safe parallelism.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Structured decision process between Non-Breaking and Breaking paths without relaxing quality gates.
Mandatory quality gate for every Issue, Milestone, and PR with zero-error execution and no technical debt carry-over.
Deterministic, CI-ready end-to-end validation for critical user flows.
Keep local plan and GitHub project artifacts perfectly aligned with milestones, issues, labels, and statuses.
Iterative decision loop with consistent user checkpoints and explicit stop criteria.
Detect and remove contradictions across agent policies before execution.
| name | Planning and Tracking |
| description | Execution plan with milestone/issue hierarchy, explicit dependencies, and safe parallelism. |
Create and maintain an execution plan with milestone/issue hierarchy, explicit dependencies, and safe parallelism.
interface Plan {
PRD: string;
context: string;
milestones: Record<string, Milestone>;
}
interface Milestone {
id: string;
description: string;
priority: "critical" | "high" | "medium" | "low";
status: "todo" | "in_progress" | "review" | "done";
depends_on: string[];
issues: Record<string, Issue>;
}
interface Issue {
id: string;
task: string;
priority: "critical" | "high" | "medium" | "low";
status: "todo" | "in_progress" | "review" | "done" | "blocked";
depends_on: string[];
children: Record<string, Issue>;
}
depends_on).critical → high → medium → low).