소스 정보
- 저장소
- Log2n-io/Typhon
- 최근 소스 활동
- 2026년 7월 13일 17:56
- 감지된 SKILL.md 언어
- 영어
- 스타
- 247
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Log2n-io/Typhon --skill start-task명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
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
| name | start-task |
| description | Start working on a GitHub issue - updates status, creates branch, verifies design |
| argument-hint | [issue number or title] |
Prepare to work on an issue by updating its status, creating a branch, and verifying prerequisites.
$ARGUMENTS may contain:
42 or #42) -> proceed directly to the workflowIf $ARGUMENTS contains --help or -h, display the following and stop — do not execute the workflow.
/start-task [#N | title]
Start working on a GitHub issue — updates status, creates branch, verifies design.
Arguments:
#N Issue number (e.g., 42 or #42)
title Text — offers to create or search
--help, -h Show this help
What it does:
1. Fetches issue details (or creates one inline)
2. Checks for design doc
3. Updates project status to In Progress
4. Creates feature branch (or defers to Rider/manual)
5. Reports summary
Examples:
/start-task #42
/start-task "Add caching layer"
/start-task
Fetch Todo items from the project. 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 == 'Todo':
n = item.get('content', {}).get('number', '?')
t = item.get('title', 'untitled')
p = item.get('priority', '?')
a = item.get('area', '?')
print(f'#{n} | {s} | {p} | {a} | {t}')
"
Use the output to filter for items with Status = "Todo". Then use AskUserQuestion to present a choice:
Question: "Which issue would you like to start working on?" Header: "Issue" Options (up to 4, prioritize Todo items):
#<number> - <title> (description: "[Status] [Priority] [Area]") -- for each candidate issueCreate a new issue (description: "I'll help you create one right now")If the user picks an existing issue, continue with the normal workflow below using that issue number.
If the user picks "Create a new issue", proceed to Inline Issue Creation below.
If $ARGUMENTS is not empty and not a number (doesn't match ^\d+$ after stripping #), use AskUserQuestion:
Question: "It looks like you provided a title instead of an issue number. Would you like to:" Header: "Action" Options:
Create a new issue with this title (description: "I'll create '#$ARGUMENTS' and start work on it")Search existing issues (description: "Search for issues matching '$ARGUMENTS' to pick one")If "Create a new issue": proceed to Inline Issue Creation with the title pre-filled.
If "Search existing issues": use mcp__GitHub__search_issues with q: "repo:log2n-io/Typhon $ARGUMENTS" and present matching issues via AskUserQuestion.
When an issue needs to be created, do it inline rather than redirecting the user to /create-issue.
Follow the /create-issue skill workflow directly:
Gather info -- Use AskUserQuestion to collect:
/create-issue)Create the issue -- Use mcp__GitHub__create_issue with:
"log2n-io""Typhon""<title>""<description>"["<label1>", "<label2>"]["nockawa"]Add to project and set fields -- Follow /create-issue steps 3-5
Continue -- Once the issue is created, continue with the normal /start-task workflow below using the new issue number.
This makes /start-task a one-stop command: describe what you want to work on, and Claude creates the issue + starts work in a single flow.
Use mcp__GitHub__get_issue with:
"log2n-io""Typhon"<number>Look for design doc reference in the issue body (links to claude/design/).
If no design doc exists and this is an enhancement (not a bug fix):
claude/design/<IssueName>.md using the design template.claude/skills/_helpers.md rule #9):
[claude/design/<path>](https://github.com/Log2n-io/Typhon/blob/main/claude/design/<path>)Project item lookup: Read .claude/skills/_helpers.md Section 2 for the robust patterns.
# Step 1: Find the item ID by piping directly to Python (no temp files)
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:
if item.get('content', {}).get('number') == int(sys.argv[1]):
print(item['id'])
sys.exit(0)
print('NOT_FOUND')
" <issue_number>
# Step 2: Update status field (using the item ID from step 1)
gh project item-edit --project-id PVT_kwDOEcGj5M4Bb-8P --id <item_id> \
--field-id PVTSSF_lADOEcGj5M4Bb-8PzhWrH1A \
--single-select-option-id 47fc9ee4 # "In Progress"
Base branch: Always create feature branches from main (GitHub Flow).
Determine the recommended branch name based on issue type:
feature/<number>-short-namefix/<number>-short-nameThen ask the user how they want the branch created:
Question: "How should the branch be created?" Header: "Branch" Options:
Claude creates it (description: "I'll run git checkout -b from main")Rider Open Task (description: "I'll skip -- use Alt+Shift+N in Rider to create branch via Open Task for issue #")Skip branch (description: "Don't create a branch yet, I'll handle it later")If "Claude creates it":
# Ensure we're on main and up-to-date
git checkout main
git pull origin main
git checkout -b feature/<number>-short-name
Then create a matching branch in the claude/ documentation repo:
cd claude
git checkout -b feature/<number>-short-name
cd ..
If "Rider Open Task":
Report the recommended branch name for reference but don't create it. The user will use Rider's Tools > Tasks & Contexts > Open Task (Alt+Shift+N) to select the issue and let Rider create the branch + context switch.
Also create the matching branch in the claude/ documentation repo:
cd claude
git checkout -b feature/<number>-short-name
cd ..
If "Skip branch": Just report the recommended name for later use.
Add branch reference to the design doc:
**GitHub Issue:** #<number>
**Branch:** `feature/<number>-short-name`
**Status:** In progress
Note: If the user chose "Rider Open Task" or "Skip branch", still write the recommended branch name in the design doc. Update it later if Rider uses a different name.
Starting work on #<number>: <title>
Design doc: claude/design/<Name>.md (or "No design doc -- skipped")
Status updated: <old> -> In Progress
Branch: feature/<number>-short-name
-> Created by Claude / Use Rider Open Task (Alt+Shift+N) / Skipped
Ready to implement!
For reference:
f75ad84647fc9ee498236657PVT_kwDOEcGj5M4Bb-8PPVTSSF_lADOEcGj5M4Bb-8PzhWrH1APriority/Estimate are unconfigured and Area/Product are issue-level on the org board — see
.claude/skills/_helpers.md§ Field Reference. These skills only set Status.