Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/naverpaydev/naverpay-plugins/changesetgit clone --depth 1 https://github.com/NaverPayDev/naverpay-pluginsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00015 | $0.00690 |
| Opus 5 | $0.00008 | $0.00345 |
| Sonnet 5 | $0.00003 | $0.00138 |
| Haiku 4.5 | $0.00002 | $0.00069 |
Grade A, and why
changeset scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Changeset Generator
지침
git diff main..HEAD로 모든 변경사항과 변경된 파일 목록 확인packages/디렉토리 내 변경된 패키지 식별- 사용자에게 각 패키지별 버전 타입 질문 (major/minor/patch)
- 유의적 버전 명세에 맞게 일관된 타입을 추천 (https://semver.org/)
- 기존 버전과 호환되지 않게 API가 바뀌면 "major 버전"을 올리고,
- 기존 버전과 호환되면서 새로운 기능을 추가할 때는 "minor 버전"을 올리고,
- 기존 버전과 호환되면서 버그를 수정한 것이라면 "patch 버전"을 올린다.
- 유의적 버전 명세에 맞게 일관된 타입을 추천 (https://semver.org/)
- 커밋 메시지와 변경 사항을 기반으로 변경 내용을 일목요연하게 요약
- 전체 변경사항 요약 - 전체 변경사항을 한 문장으로 짧게 요약
- 상세 요약 - 변경 내용을 비슷한 유형끼리 그룹화하여 소제목과 함께 작성
- 그룹이 한개라면 소제목은 작성하지 않음(전체 요약으로 대체)
.changeset/[random-name].md파일 생성- 기존에 changeset 파일이 존재한다면 해당 파일을 덮어씀.
- 모노레포 환경에서 변경된 패키지가 여러개라면 changeset 파일을 각각 생성함.
파일 형식
생성되는 changeset 파일 형식:
---
"@naverpay/some-package": patch | minor | major
---
전체 요약
**변경 내용 요약 제목1**
- 변경 사항 1
- 변경 사항 2
**변경 내용 요약 제목2**
- 변경 사항 1
changeset 파일 예시
---
"@naverpay/utils": patch
---
someFunc 함수 로직 수정
- `someFunc` 함수에서 로직 오류 수정
---
"@naverpay/sdk": major
---
initialize 함수 시그니처 변경
**Breaking Changes**
- `initialize()` 함수의 시그니처 변경: `options` 파라미터가 필수로 변경됨
- 기존: `initialize(apiKey?: string)`
- 변경: `initialize(options: InitOptions)`
**문서 업데이트**
- README 업데이트
changeset 파일명 생성 방법
두 개의 랜덤 영단어를 조합해서 kebab-case로 생성합니다. (길이는 10-25자 정도로 생성합니다.)
패키지 명 확인 방법
변경된 패키지의 package.json 파일에서 name 필드를 읽어 사용합니다.
주의사항
- 변경된 패키지가 없으면 changeset 생성 불필요 안내
skip-detect-change레이블 사용 시 changeset 불필요
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 88 lines · 15 tokens per session scan A 305119dfa7a7
changeset is a command published in the GitHub repository NaverPayDev/naverpay-plugins (2 stars, last pushed 3mo ago), licensed MIT. It adds 15 tokens to every session and 690 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.