Borrowing it
Nothing to install: this file belongs to brody-0125/my-claude-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/brody-0125/my-claude-skills/main/CLAUDE.mdgit clone --depth 1 https://github.com/brody-0125/my-claude-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/brody-0125/my-claude-skills/claude-md)<a href="https://agentmods.dev/instructions/brody-0125/my-claude-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/brody-0125/my-claude-skills/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/brody-0125/my-claude-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/brody-0125/my-claude-skills/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.01093 | $0.01093 |
| Opus 5 | $0.00547 | $0.00547 |
| Sonnet 5 | $0.00219 | $0.00219 |
| Haiku 4.5 | $0.00109 | $0.00109 |
Grade A, and why
my-claude-skills CLAUDE.md 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude Code Skills Repository
Claude Code 스킬(플러그인) 모음 레포지토리. 5개 플러그인(sub-kopring-engineer, sub-test-engineer, plugin-introspector, numerical, engineering-workflow)으로 구성되며, 런타임 빌드 시스템 없이 셸 스크립트와 SKILL.md 기반으로 동작한다.
Validation commands
컨벤션 검증 — 빌드 없이 실행 가능한 셸 스크립트:
# sub-kopring-engineer: Kotlin/Java 코드 컨벤션 검증
plugins/sub-kopring-engineer/skills/sub-kopring-engineer/scripts/verify-conventions.sh [대상경로]
# numerical: 수치 연산 코드 검증
plugins/numerical/skills/numerical/scripts/verify-numeric.sh [대상경로]
# sub-test-engineer: 문서 일관성 검증
plugins/sub-test-engineer/skills/sub-test-engineer/scripts/verify-doc-consistency.sh [대상경로]
# engineering-workflow: 쿼리 도메인 분류 (DB/BE/IF/SE)
plugins/engineering-workflow/skills/engineering-workflow/scripts/classify-query.sh "쿼리 텍스트"
# 프로젝트 자동 감지 (언어, 프레임워크, 쿼리 라이브러리 등)
plugins/sub-kopring-engineer/skills/sub-kopring-engineer/scripts/discover-project.sh
plugins/numerical/skills/numerical/scripts/discover-project.sh
Architecture
2-Layer 스킬 구조
모든 플러그인이 공유하는 핵심 패턴:
- SKILL.md — Claude Code가 읽는 진입점. 코어 프롬프트와 워크플로우 정의
- resources/ — 단계별 on-demand 로딩. 토큰 효율을 위해 필요한 단계에서만 주입
Phase-based 워크플로우
각 플러그인은 단계별 워크플로우를 따른다:
- sub-kopring-engineer: Brainstorm → Plan → Implement → Verify
- sub-test-engineer: Analyze → Strategize → Generate → Validate
- numerical: Analyze → Verify → Optimize
- plugin-introspector: 명령어 기반 (status, dashboard, analyze 등)
- engineering-workflow: Classify → Route → Execute → Resolve → Synthesize
Hook 시스템
plugin.json의 hooks로 자동화 트리거 설정:
- PreToolUse — Edit/Write 전 보안 검사 (프로덕션 시크릿 파일 차단 등)
- PostToolUse — Edit/Write 후 자동 lint (ktlint, checkstyle 등)
- Stop — 세션 종료 시 테스트 Quality Gate
Hook 명령은 $CLAUDE_TOOL_INPUT을 jq로 파싱하여 대상 파일 경로를 추출한다.
셸 스크립트 원칙
- 외부 의존성 없음: bash + jq + git만 사용
- LLM 호출 없이 결정론적 검증 수행
- 패턴 캐시 저장 위치:
~/.claude/cache/
Plugin layout
표준 플러그인 디렉터리 구조 (sub-kopring-engineer 기준):
plugins/sub-kopring-engineer/
├── .claude-plugin/
│ └── plugin.json # hooks 정의 (PreToolUse/PostToolUse/Stop)
└── skills/
└── sub-kopring-engineer/
├── SKILL.md # 진입점 — Claude Code가 읽는 코어 프롬프트
├── resources/ # 단계별 on-demand 프로토콜 문서
├── references/ # 정적 참조 자료
├── scripts/ # 검증/감지 셸 스크립트
├── templates/ # 코드 생성 템플릿
└── ast-grep-rules/ # AST 기반 정적 분석 규칙 (선택적)
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.
- 11d ago First seen · 90 lines · 1,093 tokens per session scan A 10901bb863cb
my-claude-skills CLAUDE.md is an instructions file published in the GitHub repository brody-0125/my-claude-skills (2 stars, last pushed 6mo ago), licensed MIT. It adds 1,093 tokens to every session, about $0.0055 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 instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).