claude-code-server CLAUDE.md

claude-code-server CLAUDE.md is an instructions file for coding agents from suwa-sh/claude-code-server. It costs 2,346 tokens per session, scanned A, original, MIT.

Japanese-language instructions for working in the claude-code-server repository, including project rules and a required structure for Python tests.

In plain words
What is it for?
Writing focused tests with Arrange, Act, and Assert sections, following test naming rules, and explaining proposed changes in Japanese.
Why use it?
They keep the agent's conversation, code changes, and tests consistent with that repository's conventions.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/suwa-sh/claude-code-server/claude-md
Clone the repo
git clone --depth 1 https://github.com/suwa-sh/claude-code-server

Wrote 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.

agentmods badge for claude-code-server CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/suwa-sh/claude-code-server/claude-md.svg)](https://agentmods.dev/instructions/suwa-sh/claude-code-server/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/suwa-sh/claude-code-server/claude-md"><img src="https://agentmods.dev/badge/instructions/suwa-sh/claude-code-server/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,346 This file is loaded in full into every session.
When invoked 2,346 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.02346 $0.02346
Opus 5 $0.01173 $0.01173
Sonnet 5 $0.00469 $0.00469
Haiku 4.5 $0.00235 $0.00235

Measured 4d ago against content hash a446e7859c49, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

claude-code-server CLAUDE.md scanned grade A 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 4d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- **モック**: claude-code CLIへの`subprocess.run`呼び出し
CLAUDE.md · 217 lines

How it starts

The opening of the file, as written. The whole thing — 217 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

このファイルは、Claude Code (claude.ai/code) がこのリポジトリでコードを作業する際のガイダンスを提供します。

ルール

  • 日本語で会話してください。
  • 新しい施策を試す前に、思考プロセスをユーザーに説明してください。

テストコードのルール

テストコードは以下のルールに従って作成してください:

1. テストメソッド命名規則

テストメソッド名は以下の形式で命名してください:

test_{対象機能}_{テスト条件}_と_期待結果であること

例:

def test_models_endpoint_GETリクエストを送信した場合_claude_sonnet_4だけが返されること(self, server_process):
def test_chat_completion_正常なチャットリクエストを送信した場合_回答が得られること(self, server_process, client):
def test_chat_completion_チャットリクエストで無効なAPIキーでリクエストを送信した場合_例外が発生すること(self, server_process):
2. AAAパターンの実装

すべてのテストメソッドは以下の3つのセクションに明確に分割してください:

def test_example_テスト条件_期待結果であること(self, fixtures):
    #------------------------------
    # 準備 (Arrange)
    #------------------------------
    # テストデータの設定、モックの準備など
    
    #------------------------------
    # 実行 (Act)
    #------------------------------
    # テスト対象の機能を実行
    
    #------------------------------
    # 検証 (Assert)
    #------------------------------
    # 結果の検証とアサーション
3. テストメソッドの構造化
  • 準備 (Arrange): テストに必要なデータ、オブジェクト、モックを設定
  • 実行 (Act): テスト対象の機能を実行(1つの操作に集中)
  • 検証 (Assert): 期待される結果と実際の結果を比較・検証
4. テストケースの焦点化
  • 各テストメソッドは1つの具体的なシナリオに集中する
  • 複雑な並行処理や複数の条件を組み合わせたテストは避ける
  • 基本的な動作確認を重視し、エッジケースは別のテストで扱う
5. BDDスタイルの採用

テスト名と内容は「〜の場合、〜であること」という形式で、ビジネス要件を明確に表現してください。

プロジェクト概要

これは、claude-code CLIをラップしてClaude AIの機能を標準APIインターフェース経由で提供する、OpenAI API互換サーバーです。LiteLLMをプロキシサーバーとして使用してOpenAI互換のリクエストを処理し、claude-code CLIに転送します。

アーキテクチャ

システムは2つの主要コンポーネントで構成されています:

  1. LiteLLM Proxy (litellm_config.yaml): ポート4000でOpenAI互換APIリクエストを処理
  2. Custom Provider (claude_code_server/provider.py): claude-code CLIコマンドを実行するCustomLLMクラス

フロー: OpenAI APIリクエスト → LiteLLM → ClaudeCodeProvider → claude-code CLI → レスポンス

主要な実装詳細

  • CustomLLM継承: ClaudeCodeProviderはLiteLLMのCustomLLM基底クラスを拡張
  • 非同期サポート: completion()acompletion()メソッドの両方を実装
  • プロバイダー登録: litellm_config.yamlcustom_provider_mapで登録
  • モデルマッピング: claude-sonnet-4claude-code-server/claude-code

Read the full file on GitHub · 217 lines

Changes

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.

  1. 4d ago First seen · 217 lines · 2,346 tokens per session scan A a446e7859c49

Subscribe to this mod's changes

claude-code-server CLAUDE.md is an instructions file published in the GitHub repository suwa-sh/claude-code-server (2 stars, last pushed 1y ago), licensed MIT. It adds 2,346 tokens to every session, about $0.0117 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

scalar AGENTS.md

AGENTS.md instructions for scalar/scalar, covering agents.md - ai agent guide for scalar, project overview, prerequisites, first-time setup and commands.

scalar/scalar · 4,816 tokens

codex-router CLAUDE.md

Claude Code instructions for duolahypercho/codex-router: Open and read AGENTS.md in full before installing, configuring, or extending this repository. It is the canonical instruction file for both Codex and Claude-based agents, including the procedures for adding local curated models, shipping repository-wide model…

duolahypercho/codex-router · 103 tokens

dario CLAUDE.md

Claude Code instructions for askalf/dario, covering dario — notes for claude code (and other llm coding agents), commits and prs, style, scope and when in doubt, ask.

askalf/dario · 407 tokens

awesome-ai-gateway CLAUDE.md

Claude Code instructions for cuihuan/awesome-ai-gateway, covering claude.md — working rules for this repository, what this repository is, the two goals — judge every change against these, non-negotiable rules and before you commit.

cuihuan/awesome-ai-gateway · 988 tokens

mate CLAUDE.md

Claude Code instructions for antiv/mate, covering claude.md, project overview, running the application, setup and run (auto-applies db migrations, default sqlite).

antiv/mate · 2,198 tokens

real-estate-mcp CLAUDE.md

Instructions for tae0y/real-estate-mcp, covering claude.md, project overview, commands, run a single test file and run a single test by name.

tae0y/real-estate-mcp · 1,480 tokens