소스 정보
- 저장소
- y3owk1n/nix-system-config-v2
- 최근 소스 활동
- 2026년 8월 23일 09:12
- 감지된 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 spec명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Add a skill source or local skill to the Nix configuration.
Scan codebase for deepening opportunities — refactors that turn shallow modules into deep ones.
Create, derive, or update the PRD — the single source of truth every other skill reads.
| name | spec |
| description | Render a PRD feature file to a spec issue and cut its ticket sub-issues in one pass. |
| disable-model-invocation | true |
One pass: prd/features/<slug>.md → a spec issue → its ticket sub-issues.
The spec issue is generated from the feature file and stamped with its hash. Never hand-edit a spec issue — edit the feature file and let /ship regenerate it. Tickets are authored, transient, and die on merge; they carry no stamp and are never regenerated.
GitHub is the tracker. There is no local-markdown mode — prd/features/<slug>.md already is the offline artefact.
Argument may be a slug, a path, or nothing.
gh auth status && git remote get-url origin
ls prd/features/ 2>/dev/null || echo "NO_FEATURES"
No feature file? Stop and dispatch /prd in feature mode. This skill renders; it does not invent.
cat prd/product.md prd/glossary.md prd/behaviours.md prd/architecture.md 2>/dev/null
cat prd/features/<slug>.md
Use glossary vocabulary exactly, in the spec and in every ticket title.
Two things can stop publication and both are cheaper to catch here than in review:
prd/decisions.md.prd/product.md.Either one, stop and say so rather than publishing and letting it surface as scope creep in a PR.
If prd/behaviours.md does not exist or is empty, stop. Tickets cannot be cut until at least one behaviour is named. Send the user to /prd.
This gate is why the workflow produces few tests instead of many. Do not route around it.
Render the feature file to the issue body with SPEC-RENDER.md. Append the provenance stamp as the last line:
<!-- prd-source: prd/features/<slug>.md@<blob-sha> -->
Get the hash from git hash-object prd/features/<slug>.md. It changes when and only when the file changes, which is what makes the drift check in /ship exact.
gh issue create \
--label "type:spec,status:ready-for-agent,<priority>,<scope>" \
--title "Spec: <feature>" \
--body "<rendered body>"
Labels come from triage/LABELS.md.
Break the feature into tracer bullets: narrow but complete paths through every layer, each demoable on its own, each sized for one fresh context window.
WIDE-REFACTORS.md.Assign each ticket the behaviours it touches, by number, from the feature file. A ticket touching none gets no test — that is allowed and must be stated on the ticket, not left implicit.
Present the breakdown as a numbered list: title, blocked by, what it delivers, behaviours touched, labels.
Ask:
Iterate until approved. This is the only human stop in this skill — make it count rather than splitting it across two.
In dependency order, blockers first, as sub-issues of the spec:
gh issue create \
--parent <spec-number> \
--label "type:ticket,status:ready-for-agent,<priority>,<scope>" \
--title "<NN>: <title>" \
--body "<ticket body>"
A ticket blocked by another in this batch starts at status:blocked. /ship promotes it when its blockers merge. Carry --milestone from the spec if it has one.
Ticket body:
## What to build
The end-to-end behaviour this makes work, from the user's side. Not a layer-by-layer list.
## Parent
#<spec-number>
## Behaviours touched
- #<n> from prd/behaviours.md
or: None — this ticket adds no test.
## Blocked by
#<n>, or "None (can start immediately)".
## Acceptance criteria
- [ ] ...
Done when: the spec issue exists with a provenance stamp, every ticket is a sub-issue with correct labels and blocking edges, each ticket names its behaviours or explicitly claims none, and the user approved the breakdown. Checkable: gh issue view <spec> --json subIssues lists every ticket.