deepsecure CLAUDE.md

Project instructions for an AI coding agent working on DeepSecure, a security platform that gives AI agents short-lived credentials instead of permanent API keys. They document setup, testing, code checks, and packaging.

In plain words
What is it for?
Setting up DeepSecure, running tests and coverage, checking code quality and security, and building its Python package.
Why use it?
They provide the repository’s expected commands and practices, reducing mistakes when installing dependencies, validating changes, or building the project.

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/deeptrail/deepsecure/claude-md
Clone the repo
git clone --depth 1 https://github.com/DeepTrail/deepsecure
Per session 1,603 This file is loaded in full into every session.
When invoked 1,603 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.01603 $0.01603
Opus 5 $0.00801 $0.00801
Sonnet 5 $0.00321 $0.00321
Haiku 4.5 $0.00160 $0.00160

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

Security

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
CLAUDE.md · 221 lines

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 modules

    • client.py: High-level client services wrapping core functionalities
    • base_client.py: Base HTTP client with authentication
    • vault_client.py: Secret management operations
    • agent_client.py: Agent identity management
    • identity_manager.py: Agent identity and key management
    • crypto/key_manager.py: Cryptographic key operations
    • config.py: Configuration management
  • deepsecure/: Public API layer

    • client.py: Main SDK client (uses _core modules)
    • commands/: CLI command implementations
    • integrations/: Framework integrations (LangChain, CrewAI)
    • resources/: Resource objects (Agent, Secret)

Read the full file on GitHub · 221 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. 2d ago First seen · 221 lines · 1,603 tokens per session scan A 9df464cea752

Subscribe to this mod's changes

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.