ソース情報
- リポジトリ
- Log2n-io/Typhon
- ソースの最終更新活動
- 2026年7月3日 11:42
- 検出された SKILL.md の言語
- 英語
- スター
- 247
- フォーク
- 19
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Log2n-io/Typhon --skill dev-statusコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Create / remove / inventory Typhon dev worktrees with the nested claude/ docs repo wired up correctly — one command instead of the three-step manual procedure that silently half-completes
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.
Deep-triage a GitHub issue — classify, analyze against the code, draft an answer, and apply the disposition
SOC 職業分類に基づく
SKILL.md を表示中
| 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.