소스 정보
- 저장소
- y3owk1n/nix-system-config-v2
- 최근 소스 활동
- 2026년 8월 23일 11:05
- 감지된 SKILL.md 언어
- 영어
- 스타
- 9
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/y3owk1n/nix-system-config-v2 --skill ship명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Create, derive, or update the PRD — the single source of truth every other skill reads.
SKILL.md 표시 중
| name | ship |
| description | Ship a spec or a single ticket from start to merged PR. |
Two modes. Spec mode loops every ticket under a spec. Ticket mode ships one.
Merging is the maintainer's call. You open the PR and wait. gh pr merge is never yours to run.
Tracker operations: TRACKERS.md. Parallel worktree briefs: SUBAGENT-BRIEF.md.
Before any ticket is touched:
gh issue view <spec> --json body
The stamp in the body carries both halves: <!-- prd-source: prd/features/<slug>.md@<blob-sha> -->. Read the path from it — never guess the slug from the issue title. Then:
git hash-object <the path from the stamp>
Compare that hash to the one in the stamp. On a mismatch the feature file moved and the spec issue is stale — re-render it with spec/SPEC-RENDER.md and gh issue edit <spec> --body, in place, same issue number. Then check whether the change invalidates any open ticket and tell the user which.
Skip nothing here. A stale spec makes every ticket below it a small bet that nothing changed.
git status --porcelain — dirty tree stops the run.gh issue list --label type:spec --state open --limit 20, ask which.gh issue view <spec> --json subIssues, then each one.TRACKERS.md, resume check). Existing PR means ask resume / skip / redo. Otherwise run ticket mode, skipping its step 1 drift check and step 2 blocker check — both were settled here.status:ready-for-agent. Report anything the merge surprised you with; do not silently absorb it.A failing ticket does not stop the spec. Classify it — stale spec, failed CI, code issue, dependency, other — label it status:blocked with a comment saying which, and route around it. Ask the user only if the ticket is load-bearing for the rest.
Read the ticket and its spec. gh issue view <n> --json title,body,labels,state,parent. The spec is the contract the work is measured against.
Drift-check the parent before reading it, using the section above — unless spec mode already did it for this run. A ticket measured against a stale spec fails in the way that is hardest to see: everything passes, against the wrong contract.
A ticket with no parent is measured against itself — say that out loud in the preflight so the user can correct you. Ambiguity in the spec is a question, not a guess.
Note the ticket's behaviours touched. That list is the entire test budget for this ticket.
Check blockers and prior runs. Both queries are in TRACKERS.md.
An open blocker stops the run: report which ticket gates this one and let the user decide whether to ship that first. Skip when spec mode ordered the run — the frontier was computed there.
An existing PR on this ticket means a previous run got partway. Ask resume / skip / redo rather than branching over the top of it.
Preflight and branch. git status --porcelain — a dirty tree stops the run. Then git fetch origin && git switch -c ticket/<short-kebab-summary> origin/main.
Branch from origin/main, not a local main that may be behind. Read the files at the seams the spec names — not the whole subsystem.
Look for a prefactor that makes the change easy. If you find one, it is a separate commit that lands first.
Implement. Dispatch /implement per unit. The review happens inside /implement, inline, using the review rules already in your context — there is no separate review dispatch.
PR. Dispatch /pr — it owns the commit format, the staging discipline, and the attribution guardrails. Give it the ticket number so the body carries Closes #<n>.
PRD edits this ticket produced are their own commit, docs(prd): <what>, in this same PR. Proposed behaviours.md entries go in the PR body, never in the file.
Gate. gh pr checks <pr> --required. Fix failures yourself. Do not hand it to a human red.
gh pr list --files for overlap guards a multi-developer repo. If that changes, it comes back./review dispatch. The rubric is in your context; /implement applies it inline. /review stays available for reviewing something manually, outside a ticket.Spec mode: every ticket merged, or explicitly blocked with a reason. Ticket mode: PR merged, ticket closed, branch deleted, PRD delta applied or explicitly skipped. Checkable: gh pr view <pr> --json state is MERGED and the local branch is gone.
Ask the user to review. Then address comments and return to the gate.
Merged. git checkout main && git pull && git branch -d <branch>. Confirm the ticket closed.
PRD delta. What did this ticket establish that the PRD did not predict? A new term, a decision that was hard to reverse, a moved boundary. Dispatch /prd in update mode. Nothing to record is a valid answer — say it and stop.
If the ticket contradicted the spec, that is the most important thing you learned. Say so explicitly.