소스 정보
- 저장소
- 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 triage명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SKILL.md 표시 중
| name | triage |
| description | Move issues through triage: categorise, assess readiness, assign labels, write briefs. |
| disable-model-invocation | true |
Move issues on the project issue tracker through a small state machine of triage roles.
If this repo treats external pull requests as a request surface, triage covers them too — a PR is an issue with attached code, using the same roles and states.
The vocabulary lives in LABELS.md — read it before assigning. /spec and /ship read the same file, so it is the one place labels are defined.
The maintainer invokes /triage and describes what they want. Examples:
Query the tracker:
gh issue list --state open --json number,title,labels --limit 50
Present three buckets, oldest first:
status:needs-triage: evaluation in progress.status:needs-info with reporter activity since last triage notes: needs re-evaluation.Show counts and a one-line summary per item. Let the maintainer pick.
Gather context. Read the issue or PR:
gh issue view <n> --json title,body,comments,labels,state,parent
gh issue list --search "in:title <keyword>" --json number,title --limit 5
Check if it duplicates an existing issue.
Read prd/glossary.md if it exists and use its vocabulary in the brief.
Categorise. Assign one type label: type:bug, type:feature, type:spec, type:ticket, type:docs, or type:chore.
Assess readiness. Can an agent pick this up as-is? Does it need more info from the reporter? Is it out of scope?
Assign status. Move to the appropriate status label. If status:ready-for-agent, write a brief (see below).
Assign priority. Ask the user or infer from impact.
Assign scope. Which area(s) does this touch?
Post to the tracker.
gh issue edit <n> --add-label "<labels>"
gh issue comment <n> --body "> *This was generated by AI during triage.*\n\n<brief>"
When an issue moves to status:ready-for-agent, attach a brief with:
prd/features/<slug>.md it belongs to, if any.prd/behaviours.md this work affects, by number. None is a valid answer and means no test.Keep briefs under 200 words. The brief is the contract the agent works against — make it specific enough that the agent can execute without guessing.
Done when: the issue has exactly one type label, one status label, one priority label, and at least one scope label. If status:ready-for-agent, a brief is attached under 200 words. Checkable: gh issue view <n> --json labels shows exactly one type, one status, one priority, and at least one scope label.