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/lijiatuk/dstools/claude-mdgit clone --depth 1 https://github.com/lijiatuk/dstoolsWrote 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/lijiatuk/dstools/claude-md)<a href="https://agentmods.dev/instructions/lijiatuk/dstools/claude-md"><img src="https://agentmods.dev/badge/instructions/lijiatuk/dstools/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.01053 | $0.01053 |
| Opus 5 | $0.00526 | $0.00526 |
| Sonnet 5 | $0.00211 | $0.00211 |
| Haiku 4.5 | $0.00105 | $0.00105 |
Grade A, and why
dstools 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 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.
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 — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — dstools
A reference for anyone (human or AI) working in this repo.
What this is
dstools is an MCP server that gives DeepSeek-V4 (a text-only model)
two capabilities it lacks natively: image understanding and deep
research. It exposes 5 tools over stdio / Streamable HTTP / SSE.
DeepSeek-V4 specifics (verified 2026-06-30 via the official API docs)
- API is OpenAI-compatible;
base_url=https://api.deepseek.com(Anthropic format at/anthropic). Use theopenaiSDK. - Models:
deepseek-v4-flash(cheap/fast) anddeepseek-v4-pro(heavy). The legacydeepseek-chat/deepseek-reasonerare deprecated 2026-07-24. - Thinking mode: toggle via
extra_body={"thinking": {"type": "enabled"|"disabled"}}(default enabled); effort viareasoning_effort(high/max). In thinking modetemperature/top_pare silently ignored; CoT is returned asmessage.reasoning_content. - JSON output:
response_format={"type": "json_object"}. Tool calls: standard OpenAI function format. Context caching: automatic (keep system prompts constant to benefit).
Adaptations live in src/dstools/llm/deepseek.py: per-call thinking toggle,
reasoning_content capture, JSON mode, retry with backoff, pro/flash model
split (pro for synthesis, flash for cheap planning).
Commands
uv sync --extra dev # install
uv run dstools serve # run MCP server (stdio)
uv run dstools serve --transport http --port 8000
uv run dstools inspect # list tools + param schemas
uv run dstools doctor # what's configured (keys/providers)
make lint && make typecheck && make test
uv run python examples/mcp_client_demo.py # end-to-end stdio smoke test
Architecture
server.py—FastMCPinstance + tool registration (create_server()).cli.py—dstoolsCLI (serve / inspect / doctor / cache / version).config.py—Settings(pydantic-settings, env +.env). DeepSeek fields also accept the genericLLM_*aliases (LLM_API_KEY/LLM_BASE_URL/LLM_MODEL/...).runtime.py— lazy singletons; wraps search/fetcher in the cache when enabled.cache.py— opt-in on-disk retrieval cache (RetrievalCache+ caching wrappers).llm/—DeepSeekClient(V4-aware) +VisionClient(pluggable multimodal).search/— providers:DuckDuckGoSearchProvider(keyless default, ad-filtered, retry/backoff) +BraveSearchProvider+TavilySearchProvider(both keyed).web/fetcher.py— async page fetch (streamed, size-capped) + HTML→Markdown; defines theFetcherProtocol satisfied byPageFetcherand the cache wrapper.tools/— logic functions (testable, DI) +register(mcp)wrappers;deep_research= plan → round loop (search/fetch/refine) → rerank → synthesize._ctx.pymakes ctx calls defensive (never crash on missing session).utils/— image I/O + text helpers.
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.
- 4d ago First seen · 76 lines · 1,053 tokens per session scan A 0c7d52f29e51
dstools CLAUDE.md is an instructions file published in the GitHub repository lijiatuk/dstools (1 stars, last pushed 2mo ago), licensed MIT. It adds 1,053 tokens to every session, about $0.0053 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
GPT-RAG release.instructions.md
Instructions for Azure/GPT-RAG, a project described as: Enterprise-grade accelerator for agentic RAG on Azure. Built on Microsoft Foundry with Foundry IQ as the default retrieval backend, Microsoft Agent Framework orchestration, Zero-Trust architecture and IaC.
apex-accelerator vendor-prompting.instructions.md
Vendor prompting best-practice rules for Anthropic Claude and OpenAI GPT-5.6-Terra agents and prompts. Each rule cites a rule ID in the vendor-prompting skill rules.json registry. Validator: npm run lint:vendor-prompting.
ken CLAUDE.md
Claude Code instructions for townsendmerino/ken, covering claude.md, what this is, repository ownership (read this first), commands and embedding parity & golden fixtures (now in aikit).
rag-code-mcp copilot-instructions.md
Instructions for doITmagic/rag-code-mcp, covering copilot instructions - ragcode mcp, ⚖️ the golden rule, project overview, architecture & patterns and developer workflows.
ZipAI CLAUDE.md
Claude Code instructions for nickdesi/ZipAI, covering claude.md — zipai: ultra-dense token optimizer, rules, 1. zero filler, 2. ambiguity and 3. prompt caching.
gpu-ai-skills CLAUDE.md
Claude Code instructions for intel/gpu-ai-skills, covering claude.md, what this repository is, repository structure, commands and validation (required before any skill change).