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 instructions/touwaeriol/claude-code-plus/claude-mdgit clone --depth 1 https://github.com/touwaeriol/claude-code-plusWrote 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/touwaeriol/claude-code-plus/claude-md)<a href="https://agentmods.dev/instructions/touwaeriol/claude-code-plus/claude-md"><img src="https://agentmods.dev/badge/instructions/touwaeriol/claude-code-plus/claude-md.svg" alt="Measured on agentmods" 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 | $0.08578 | $0.08578 |
| Opus 5 | $0.04289 | $0.04289 |
| Sonnet 5 | $0.01716 | $0.01716 |
| Haiku 4.5 | $0.00858 | $0.00858 |
Grade A, and why
claude-code-plus 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 5d 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 — 999 lines — stays where its author put it; the contents beside it link to each section on GitHub.
特别提醒:请使用简体中文进行交流 特别提醒:git commit、changelog 不使用中文,而是使用英文
Claude Code Plus - 架构说明
📋 项目概述
Claude Code Plus 是一个 IntelliJ IDEA 插件,集成了 Claude AI 助手,提供智能代码编辑、文件操作、终端执行等功能。
🏗️ 整体架构
┌─────────────────────────────────────────────────────────────────────────────┐
│ 前端 (Vue 3) │
├─────────────────────────────────────────────────────────────────────────────┤
│ Components: Services: │
│ ├── TerminalBackgroundBar.vue ├── RSocketSession.ts (Claude SDK) │
│ ├── FileRollbackBar.vue ├── jetbrainsRSocket.ts (IDE 功能) │
│ ├── ChatInput.vue (Ctrl+B) └── sessionStore.ts (状态管理) │
│ └── ... │
└────────────────────────┬───────────────────────────────┬────────────────────┘
│ RSocket │ RSocket
▼ ▼
┌────────────────────────────────────┐ ┌──────────────────────────────────────┐
│ ai-agent-server (Kotlin) │ │ jetbrains-plugin (Kotlin) │
│ RSocketHandler.kt │ │ JetBrainsRSocketHandler.kt │
├────────────────────────────────────┤ ├──────────────────────────────────────┤
│ • agent.connect / query / interrupt│ │ • jetbrains.openFile / showDiff │
│ • agent.runToBackground │ │ • jetbrains.terminalBackground │
│ • agent.setModel / setPermission │ │ • jetbrains.batchRollback │
│ • agent.getMcpStatus / reconnectMcp│ │ • jetbrains.getBackgroundableTerminals│
└────────────────────────┬───────────┘ └─────────────────────┬────────────────┘
│ │
▼ ▼
┌────────────────────────────────────┐ ┌──────────────────────────────────────┐
│ claude-agent-sdk (Kotlin) │ │ TerminalMcpServerImpl │
│ ControlProtocol.kt │ │ (Terminal Session Manager) │
└────────────────────────┬───────────┘ └──────────────────────────────────────┘
│
▼
┌────────────────────────────────────┐
│ Official Claude CLI (Patched) │
│ cli-patches/patches/*.js │
└────────────────────────────────────┘
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.
- 5d ago First seen · 999 lines · 8,578 tokens per session scan A 21953a9f716a
claude-code-plus CLAUDE.md is an instructions file published in the GitHub repository touwaeriol/claude-code-plus (144 stars, last pushed 4mo ago), licensed MIT. It adds 8,578 tokens to every session, about $0.0429 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 instructions, from other repositories
jetbrains-claude-subscription CLAUDE.md
Claude Code instructions for vanssata/jetbrains-claude-subscription, covering claude.md, build, -> build/distributions/jetbrains-claude-subscription- .zip, verifying a change and gotchas.
vibing.nvim CLAUDE.md
Claude Code instructions for shabaraba/vibing.nvim, covering claude.md, project overview, commands, install dependencies and build the mcp server.
keen-code AGENTS.md
Instructions for mochow13/keen-code, covering keen code, important guidelines, architecture and permission system.
bear-notes-mcp CLAUDE.md
Claude Code instructions for vasylenko/bear-notes-mcp, covering project purpose, rules of absolute importance, core technical documentation for this project, source layout and additional technical context.
bear-notes-mcp copilot-instructions.md
Copilot instructions for vasylenko/bear-notes-mcp, covering when performing a code review for a pr, review objective, review guidelines and when working on a new feature or an idea.
memctx CLAUDE.md
Claude Code instructions for bbhunterpk-ux/memctx: Last session: Database Schema UI Coverage Analysis — COMPLETED Completed: Analyzed database schema to identify all stored fields, Audited ProjectDetail and SessionDetail UI components, Compared API queries against UI display logic Up next: Add token usage display to…