fivetaku/gptaku_plugins is a Claude Code plugin marketplace containing extensions that add specialized workflows to the coding agent. Its plugins help users perform tasks such as researching web content, extracting website design systems, reviewing code, and creating product requirements. The catalogue entries are instructions, plugins, skills, and commands that support those Claude Code workflows.
Borrowing it
Nothing to install: this file belongs to fivetaku/gptaku_plugins. 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/fivetaku/gptaku_plugins/main/CLAUDE.mdgit clone --depth 1 https://github.com/fivetaku/gptaku_pluginsWrote 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/fivetaku/gptaku_plugins/claude-md)<a href="https://agentmods.dev/instructions/fivetaku/gptaku_plugins/claude-md"><img src="https://agentmods.dev/badge/instructions/fivetaku/gptaku_plugins/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/fivetaku/gptaku_plugins/claude-md"><img src="https://agentmods.dev/badge/instructions/fivetaku/gptaku_plugins/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.02100 | $0.02100 |
| Opus 5 | $0.01050 | $0.01050 |
| Sonnet 5 | $0.00420 | $0.00420 |
| Haiku 4.5 | $0.00210 | $0.00210 |
Grade B, and why
gptaku_plugins CLAUDE.md scanned grade B with 1 finding 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 3d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
⚠️ **신규 플러그인 첫 설치를 수동 파이프라인으로 했다면 `~/.claude/settings.json`의 How it starts
The opening of the file, as written. The whole thing — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.
gptaku-plugins 마켓플레이스
프로젝트 구조
gptaku_plugins/ # 마켓플레이스 (parent repo)
plugins/ # 각 플러그인은 git submodule (신규는 in-tree 임시 허용)
dd/ # 클립보드 드롭 (/dd, /ㅇㅇ)
ddiring/ # 멀티세션 완료 알림 (띠링)
docs-guide/
gaseo/ # Paseo 세션 등록
git-teacher/
goaljaby/
insane-design/
insane-research/
insane-review/ # GPT Pro 웹 브릿지 코드 리뷰
insane-search/
kkirikkiri/
nopal/
pumasi/
sangse/ # 상세페이지 컷 시트 제작 (/sangse)
show-me-the-prd/
skillers-suda/
tikeytaka/ # API 키 중앙 볼트
vibe-sunsang/
# 이외 in-tree WIP/프라이빗: insane-crawl(WIP), insane-slide·insane-video(프라이빗, gitignore)
플러그인 버전 업데이트 체크리스트
플러그인 코드를 수정하고 버전을 올릴 때 반드시 아래 순서를 따른다. 하나라도 빠지면 캐시 불일치로 구버전이 로드된다.
Step 1: 서브모듈 내에서 작업
cd plugins/<plugin-name>
# 코드 수정 완료 후
# 1) plugin.json 버전 업데이트
# 2) git add + commit + push
Step 2: 서브모듈에 GitHub 릴리즈 생성
플러그인은 각자 자기 레포(서브모듈)이므로 릴리즈도 서브모듈 레포에 단다. 버전 bump 커밋을 push한 직후, 그 커밋을 가리키는 태그 + 릴리즈를 만든다.
cd plugins/<plugin-name>
# tag(v<new-version>)는 gh가 자동 생성한다. 별도 git tag 불필요.
gh release create v<new-version> \
--title "v<new-version> — <한 줄 요약>" \
--notes "<변경 내용 요약 (커밋 메시지 재활용 가능)>" \
--target main
- 태그 컨벤션:
v<plugin.json의 version>(예:v0.21.3). plugin.json 버전과 반드시 일치. - 이미 같은 태그가 있으면 실패하므로, 재릴리즈가 필요하면
gh release delete v<ver> --cleanup-tag후 다시 생성한다.
Step 3: 부모 저장소에서 서브모듈 포인터 업데이트
cd /Users/chulrolee/gptaku_plugins
git add plugins/<plugin-name>
git commit -m "chore: update <plugin-name> submodule to v<new-version>"
git push
Step 4: 마켓플레이스 클론 동기화
cd ~/.claude/plugins/marketplaces/gptaku-plugins
git pull
git submodule update --init plugins/<plugin-name>
Step 5: 캐시 교체
# 1) 이전 버전 캐시 삭제
trash ~/.claude/plugins/cache/gptaku-plugins/<plugin-name>/<old-version>
# 2) 새 버전 캐시 생성 (마켓플레이스에서 복사)
cp -R ~/.claude/plugins/marketplaces/gptaku-plugins/plugins/<plugin-name> \
/tmp/<plugin-name>-staging
mkdir -p ~/.claude/plugins/cache/gptaku-plugins/<plugin-name>/<new-version>
cp -R /tmp/<plugin-name>-staging/* \
~/.claude/plugins/cache/gptaku-plugins/<plugin-name>/<new-version>/
trash /tmp/<plugin-name>-staging
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.
- 3d ago First seen · 176 lines · 2,100 tokens per session scan B 74652f1538e5
gptaku_plugins CLAUDE.md is an instructions file published in the GitHub repository fivetaku/gptaku_plugins (1,132 stars, last pushed 4d ago), licensed MIT. It adds 2,100 tokens to every session, about $0.0105 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-08.
Other instructions, from other repositories
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.
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).
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).