Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/y3owk1n/nix-system-config-v2 --skill pr명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | pr |
| description | Commit changes and open a pull request. |
main. New branch always.git add -A or git add . — stage paths individually.main.git switch -c <type>/<short-kebab-summary>.just ci, make test, npm test). Open only on green. Skip when /ship already ran the fast checks.git add <paths> && git status --short — named paths only.claude|anthropic|co-authored|generated with) before committing.cat .github/pull_request_template.md 2>/dev/nullThis PR <verb> ....git push -u origin <branch> && gh pr create --title "<type>(<scope>): <subject>" --body "<body>"gh pr checks --watchBoth use the same shape:
<type>(<scope>): <subject>
Types: feat, fix, perf, revert, docs, refactor, test, chore, ci, build, style.
Write the subject for a user, not the diff:
fix(auth): handle expired tokens gracefully ✓fix: update auth.go ✗For a single-commit PR, reuse the commit subject as the title. For a multi-commit PR, write a subject that covers the whole branch rather than copying the last commit.
Commit body: explain why and behaviour change, wrap at 72 chars. Closes #123 when fixing an issue.
This PR <verb> ...
## What changed
<2-3 sentences: user-visible behaviour>
## Why
<1-2 sentences: motivation>
## How to test
<concrete steps>
Write for the reader, not the diff:
This PR fixes button responsiveness on touch devices. ✓Updates handleClick in Button.tsx ✗Config/command changes: name them exactly as typed, note defaults, say whether existing configs keep working.
Done when: checks are green, the PR is open with a conventional-commit title and a body written for a reader, and no commit or PR text mentions Claude, Anthropic, or AI. Checkable: gh pr checks passes, gh pr view --json title -q .title matches ^(feat|fix|perf|revert|docs|refactor|test|chore|ci|build|style)(\(.+\))?!?: .+, and gh pr view --json title,body piped through grep -iE 'claude|anthropic|co-authored|generated with' returns nothing.