بنقرة واحدة
status
Show current state of all ADLC work across the project
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Show current state of all ADLC work across the project
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Parallel pipeline orchestrator — launch multiple /proceed sessions concurrently across REQs, monitor progress, and report status. Use when the user says "sprint", "run these REQs in parallel", "proceed with all approved REQs", "launch a sprint", or wants to advance multiple requirements simultaneously.
Codebase health audit — identify technical debt, quality issues, and improvement opportunities
End-to-end ADLC pipeline that takes a requirement from spec through to deployed. Takes a REQ number as argument and runs validate → fix → architect → fix → implement → verify (reflect + review) → create PR → wrapup (merge, deploy, knowledge capture). Use when the user says "proceed", "proceed with REQ-xxx", "run the pipeline", "take REQ-xxx to completion", "implement REQ-xxx end to end", or wants to advance a drafted requirement all the way through to deployment in one shot.
Write requirement specs from feature requests
Close out a completed feature — update ADLC artifacts, log knowledge, and summarize
Bootstrap .adlc/ structure in a new repo or subdirectory
| name | status |
| description | Show current state of all ADLC work across the project |
| argument-hint | Optional filter (e.g., REQ-xxx, "in-progress", "bugs") |
You are generating a status report of all ADLC work in the current project.
!sh .adlc/partials/ethos-include.sh 2>/dev/null || sh ~/.claude/skills/partials/ethos-include.sh
See also
/manifest—/statusreads this local checkout;/manifestderives in-flight work across all sessions from the remote (open PRs + pushedfeat/REQ-*branches), with an advisory overlap report. Use/manifestto see what other people are working on before you start.
ls .adlc/specs/ 2>/dev/null || echo "No specs found"ls .adlc/bugs/ 2>/dev/null || echo "No bugs found"git branch --show-current 2>/dev/null || echo "Not a git repo"Filter: $ARGUMENTS
Before proceeding, verify that the .adlc/specs/ directory exists (this skill reads requirement and task frontmatter from there). .adlc/bugs/ and live pipeline-state.json files are read when present but are not required. If .adlc/specs/ does not exist, stop and tell the user: "The .adlc/ structure hasn't been initialized. Run /init first to set up the project context."
Detect repository mode — read .adlc/config.yml. If it declares more than one entry under repos:, this is cross-repo mode; otherwise single-repo mode.
requirement.md files under .adlc/specs/REQ-*/ (this repo).adlc/specs/REQ-*/tasks/.adlc/bugs/pipeline-state.json files under .adlc/specs/REQ-*/ for live pipeline progress.adlc/ directories (e.g., api/.adlc/)Cross-repo scan (only in cross-repo mode): for every sibling declared in .adlc/config.yml:
repos[<id>].path<sibling-path>/.adlc/specs/REQ-*/pipeline-state.json to find REQs where the sibling was primary. Any of those that have a repos block listing the current repo as touched: true represents cross-repo work that affects us but originates elsewhere.Cross-repo scan is read-only — /status never modifies sibling repos.
Organize the report as follows:
| ID | Title | Status | Tasks | Progress |
|---|
For each requirement:
If any pipeline-state.json files exist with "completed": false, show:
| REQ | Primary | Branch | Current Phase | Started | Last Phase Completed | Touched Repos |
|---|
repos block where touched: true, with a ✓ for merged and a clock for in-progress.Phase names: 0=Worktree, 1=Validate Spec, 2=Architect, 3=Validate Tasks, 4=Implement, 5=Verify, 6=Create PR, 7=PR Cleanup, 7.5=Canary, 8=Wrapup
If the cross-repo scan found REQs originating elsewhere that touch this repo, surface them separately so the user sees inbound cross-repo work without losing context on local REQs:
| REQ | Primary (origin) | Current Phase | This Repo's Role | Branch Here |
|---|---|---|---|---|
| REQ-091 | api | 4/8 Implement | sibling (touched) | feat/REQ-091-... |
"Branch Here" is detected by checking git -C <this-repo> branch --list feat/REQ-xxx-*. If absent, the REQ hasn't reached Phase 4 yet or this repo isn't touched after all.
List any artifacts with status in-review, approved, or in-progress tasks:
| ID | Title | Severity | Status | Updated |
|---|
List artifacts completed in the last 7 days (by updated date).
At the bottom, list recommended next actions:
draft and need validationopen and unassigned