Borrowing it
Nothing to install: this file belongs to slima-ai/slima-mcp. 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/slima-ai/slima-mcp/main/CLAUDE.mdgit clone --depth 1 https://github.com/slima-ai/slima-mcpWrote 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/slima-ai/slima-mcp/claude-md)<a href="https://agentmods.dev/instructions/slima-ai/slima-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/slima-ai/slima-mcp/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/slima-ai/slima-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/slima-ai/slima-mcp/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.03741 | $0.03741 |
| Opus 5 | $0.01870 | $0.01870 |
| Sonnet 5 | $0.00748 | $0.00748 |
| Haiku 4.5 | $0.00374 | $0.00374 |
Grade A, and why
slima-mcp 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 8d 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 — 461 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md - Slima MCP
此文件提供 Claude Code 理解專案的必要上下文。
專案概述
Slima MCP (slima-mcp on npm) 是一個 MCP (Model Context Protocol) 伺服器,讓所有支援 MCP 的 AI 工具都能與 Slima 書籍管理和 AI Beta Reader 功能互動。
支援平台(MCP 已成為業界標準)
| 平台 | 狀態 | 備註 |
|---|---|---|
| Claude Desktop | ✅ | 原生支援 |
| ChatGPT Desktop | ✅ | Developer Mode (2025.10+) |
| Gemini CLI | ✅ | 原生支援 |
| Cursor | ✅ | 原生支援 |
| Clawdbot | ✅ | Via Skills |
| VS Code | ✅ | Via MCP extensions |
2025.12 MCP 捐給 Linux Foundation (AAIF),由 Anthropic + OpenAI + Block 共同創立。
架構定位
┌─────────────────┐ MCP (STDIO) ┌─────────────────┐ HTTP/REST ┌─────────────────┐
│ Claude Desktop │ │ │ │ │
│ ChatGPT │ ◄─────────────────► │ slima-mcp │ ◄───────────────► │ slima_rails │
│ Gemini CLI │ │ (npm 套件) │ │ (API) │
│ Cursor / etc. │ │ │ │ │
└─────────────────┘ └─────────────────┘ └─────────────────┘
AI 工具 Thin Client 業務邏輯
Thin Client 架構:
- MCP Server 只負責協議轉換,不包含業務邏輯
- 所有資料驗證、權限控制、AI 處理都在 Rails API 端
- 保持 MCP Server 輕量,易於維護和升級
技術棧
| 類別 | 技術 | 版本 |
|---|---|---|
| Runtime | Node.js | 20+ |
| Language | TypeScript | 5.x |
| MCP SDK | @modelcontextprotocol/sdk | 1.x |
| Validation | Zod | 3.x |
| Build | tsup | 8.x |
| Testing | Vitest | 2.x |
目錄結構
slima-mcp-server/
├── src/
│ ├── api/
│ │ ├── client.ts # Slima API Client (HTTP 請求)
│ │ ├── types.ts # TypeScript 型別定義
│ │ └── index.ts # 匯出
│ ├── tools/
│ │ ├── books.ts # 書籍工具 (4 tools)
│ │ ├── content.ts # 內容工具 (1 tool)
│ │ ├── beta-reader.ts # Beta Reader 工具 (2 tools)
│ │ ├── files.ts # 檔案操作工具 (6 tools)
│ │ └── index.ts # 匯出
│ ├── utils/
│ │ ├── errors.ts # 錯誤類別和格式化
│ │ └── logger.ts # 日誌 (輸出到 stderr)
│ ├── server.ts # MCP Server 工廠
│ └── index.ts # CLI 入口點
├── tests/
│ ├── api/
│ │ └── client.test.ts # API Client 測試
│ ├── tools/
│ │ ├── books.test.ts # 書籍工具測試
│ │ ├── content.test.ts # 內容工具測試
│ │ └── beta-reader.test.ts # Beta Reader 測試
│ └── server.test.ts # Server 初始化測試
├── dist/ # 編譯輸出 (gitignored)
├── package.json
├── tsconfig.json
├── tsup.config.ts # Build 設定 (含 shebang)
├── vitest.config.ts # 測試設定
└── README.md # 使用者文件
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.
- 8d ago First seen · 461 lines · 3,741 tokens per session scan A cc70786a142b
slima-mcp CLAUDE.md is an instructions file published in the GitHub repository slima-ai/slima-mcp (1 stars, last pushed 4mo ago), licensed MIT. It adds 3,741 tokens to every session, about $0.0187 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).
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).
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.
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.