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/mineru98/skills-store/commitgit clone --depth 1 https://github.com/Mineru98/skills-storeWhat 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.00644 |
| Opus 5 | $0.00008 | $0.00322 |
| Sonnet 5 | $0.00003 | $0.00129 |
| Haiku 4.5 | $0.00002 | $0.00064 |
Grade A, and why
commit 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 2d ago.
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
지금 즉시 아래 워크플로우를 실행하라. 질문하지 말고 바로 실행하라.
현재 상태 수집
!git status
!git diff --stat
!git log --oneline -3
실행 지시
위 상태를 분석하여 다음을 수행하라:
- 변경 파일 분석: 위의 git status와 git diff 결과를 기반으로 변경된 파일들을 파악한다.
- 기능별 그룹화: 변경 파일들을 아래 기준으로 그룹으로 나눈다:
feat- 새로운 기능 추가fix- 버그 수정docs- 문서 업데이트style- 코드 스타일 수정 (동작 변경 없음)refactor- 코드 리팩토링test- 테스트 추가/수정chore- 유지보수 작업
- 그룹별 커밋 생성: 각 그룹마다 관련 파일만
git add로 스테이징한 뒤 커밋한다. - 커밋 내역 검증:
git log --oneline -5로 결과를 확인한다.
커밋 메시지 규칙
- 형식:
<type>(<scope>): <subject> - 커밋 메시지는 반드시 한글로 작성
- 명령형 현재 시제 사용: "추가", "수정", "삭제"
- subject는 50자 이내, 끝에 마침표 없음
- 필요시 body에 상세 설명 추가
한글 커밋 메시지 깨짐 방지
git commit -m "한글" 사용 시 터미널 환경에 따라 한글이 깨질 수 있다. 반드시 HEREDOC 또는 임시 파일 방식을 사용하라.
macOS/Linux (HEREDOC 방식 - 권장)
git commit -m "$(cat <<'EOF'
feat(auth): JWT 로그인 및 미들웨어 추가
- JWT 토큰 생성 구현
- 보호된 라우트용 인증 미들웨어 추가
Co-Authored-By: Claude <[email protected]>
EOF
)"
Windows PowerShell (임시 파일 방식)
PowerShell에서는 -m 옵션으로 한글 전달 시 인코딩 문제가 발생한다. UTF-8 임시 파일을 사용하라:
chcp 65001
# commit_msg.txt에 UTF-8로 메시지 작성 후:
git commit -F commit_msg.txt
Remove-Item commit_msg.txt
사용자 힌트: $ARGUMENTS
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.
- 2d ago First seen · 69 lines · 15 tokens per session scan A 00c0f6926ae1
commit is a command published in the GitHub repository Mineru98/skills-store (13 stars, last pushed 3d ago), licensed MIT. It adds 15 tokens to every session and 644 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-30.
Other commands, from other repositories
upgrade
Upgrade the skillshare CLI binary and/or the built-in skillshare skill.
marketing
Command "marketing" from Infrasity-Labs/dev-gtm-claude-skills, covering seo & discoverability, content & copy, demand gen & growth, lifecycle & retention and research & competitive.
verify
Perform a non-destructive post-implementation verification gate validating the implementation against spec.md, plan.md, tasks.md, and constitution.md.
triage
Triage review findings one by one — present pending TODOs for user decision (approve, skip, modify).
release
Git geçmişinden hedef kitleye uygun sürüm notları oluştur.
spec-forge
Use when generating software specifications — full chain (Idea→Decompose→Tech Design + Feature Specs) or individual documents.