بنقرة واحدة
dev-status
Show current development status from GitHub Project
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Show current development status from GitHub Project
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | dev-status |
| description | Show current development status from GitHub Project |
| argument-hint | (no arguments) |
Display the current state of work from the GitHub Project, including active items, upcoming work, and items needing attention.
If $ARGUMENTS contains --help or -h, display the following and stop — do not execute the workflow.
/dev-status
Show current development status from the GitHub Project board.
Arguments:
--help, -h Show this help
What it does:
1. Shows In Progress items
2. Lists Todo items (next to pick up)
3. Flags items needing attention (stale, critical)
4. Provides mountain view summary (totals by status)
Examples:
/dev-status
The legacy Phase field was retired in the org-board migration. Group active work by Milestone (release maturity carried on Features) or by parent Epic instead — read these per issue via mcp__GitHub__get_issue (milestone, parent_issue_url).
Query items where Status = "In Progress". Always pipe gh project item-list directly to Python (see .claude/skills/_helpers.md Section 2):
gh project item-list 1 --owner Log2n-io --limit 200 --format json 2>&1 | python3 -c "
import json, sys
items = json.load(sys.stdin)['items']
for item in items:
s = item.get('status', '')
if s == 'In Progress':
n = item.get('content', {}).get('number', '?')
t = item.get('title', 'untitled')
p = item.get('priority', '?')
a = item.get('area', '?')
e = item.get('estimate', '?')
print(f'#{n} | {s} | {p} | {a} | {e} | {t}')
"
Parse the output to filter and format. For each In Progress item, show:
Query items where Status = "Todo" - these are ready to be picked up next.
Flag issues that:
To check issue activity, use mcp__GitHub__get_issue with:
"log2n-io""Typhon"<number>The returned object includes updated_at which can be used to determine staleness.
Calculate totals:
Typhon Development Status
Active Milestone: [name] (or Epic #XX -- N/M sub-issues done)
In Progress (N):
#XX Title [Area]
Branch: feature/XX-name (if known)
Design: path/to/design.md (if set)
Todo (N):
#XX Title [Area] -- has design / needs design
Needs Attention:
#XX reason (e.g., "no activity for N days", "P0 not started")
Mountain View:
Todo: N | In Progress: N | Done: N
By Area: <area> N, ...
Suggested: [Pick up #XX or continue #YY]
Use gh project item-list 1 --owner Log2n-io --limit 200 --format json piped to Python to get all project items, then filter and format the output.
For activity checks on individual issues, use mcp__GitHub__get_issue to get the updated_at field.
Run regression benchmarks, track results, and generate trend reports
Complete a sub-issue of an umbrella issue - close it, check parent checkbox, update design doc
Complete work on a GitHub issue - close issue, update artifacts, prompt for doc updates
Run code coverage analysis, track class-level results, and generate trend reports
Create a GitHub issue and add it to the Typhon org project
Implement a GitHub issue end-to-end — scope it (whole issue or specific phases), build an acceptance-criteria plan from its design doc, get the plan approved, then develop autonomously with tests and a mandatory code review.