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/deeptrail/deepsecure/claude-mdgit clone --depth 1 https://github.com/DeepTrail/deepsecureWhat 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.01603 | $0.01603 |
| Opus 5 | $0.00801 | $0.00801 |
| Sonnet 5 | $0.00321 | $0.00321 |
| Haiku 4.5 | $0.00160 | $0.00160 |
Grade A, and why
deepsecure 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl http://localhost:8000/health # Control plane How it starts
The opening of the file, as written. The whole thing — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
DeepSecure is a security platform that provides Identity-as-Code for AI agents, enabling them to fetch their own ephemeral credentials programmatically instead of using static API keys. The project consists of a Python CLI/SDK and backend services that implement a dual-service gateway architecture.
Development Commands
Environment Setup
# Install development dependencies
make install-dev
# or traditionally
make install-traditional
# Setup development environment
make setup
Testing
# Run all tests
make test
pytest
# Run tests with coverage
make test-cov
pytest --cov=deepsecure --cov-report=html --cov-report=term
# Run specific test markers
pytest -m e2e # End-to-end tests (require live backend)
pytest -m integration # Integration tests
Code Quality
# Run linting
make lint
ruff check .
mypy deepsecure/
# Format code
make format
black .
isort .
# Security scanning
make security
bandit -r deepsecure/
safety check
# Run all quality checks
make check-all
Build and Package
# Build package
make build
./scripts/build_package.sh
# Clean build artifacts
make clean
Architecture Overview
Core Module Structure
-
deepsecure/_core/: Internal implementation modulesclient.py: High-level client services wrapping core functionalitiesbase_client.py: Base HTTP client with authenticationvault_client.py: Secret management operationsagent_client.py: Agent identity managementidentity_manager.py: Agent identity and key managementcrypto/key_manager.py: Cryptographic key operationsconfig.py: Configuration management
-
deepsecure/: Public API layerclient.py: Main SDK client (uses _core modules)commands/: CLI command implementationsintegrations/: Framework integrations (LangChain, CrewAI)resources/: Resource objects (Agent, Secret)
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.
- 2d ago First seen · 221 lines · 1,603 tokens per session scan A 9df464cea752
deepsecure CLAUDE.md is an instructions file published in the GitHub repository DeepTrail/deepsecure (52 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 1,603 tokens to every session, about $0.0080 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
authgear-server AGENTS.md
AGENTS.md instructions for authgear/authgear-server, covering agents.md, repository layout, documentation map, common commands and start local dev.
auth0-cli CLAUDE.md
Instructions for auth0/auth0-cli, covering ai agent guidelines for auth0-cli, your role, project overview, project structure and key files.
auth0-mcp-server AGENTS.md
Instructions for auth0/auth0-mcp-server, covering agents.md, what this is, commands, architecture and tool system.
auth0-cli AGENTS.md
Instructions for auth0/auth0-cli: This repository's guidelines for AI coding agents live in CLAUDE.md, the single source of truth.
auth0-mcp-server GEMINI.md
Instructions for auth0/auth0-mcp-server, covering auth0 gemini cli extension, custom commands and troubleshooting.
phantom-secrets CLAUDE.md
Instructions for ashlrai/phantom-secrets, covering phantom — development guide, quick reference, build, test and lint (must pass with zero warnings).