dassian-adt CLAUDE.md

dassian-adt CLAUDE.md is an instructions file for coding agents from DassianInc/dassian-adt. It costs 2,489 tokens per session, scanned A, original, MIT.

Repository instructions for Dassian ADT, a TypeScript MCP server that connects tools to SAP development services. They describe its commands, request-handling structure, session reconnects, and testing process.

In plain words
What is it for?
They guide building, testing, running the development inspector, tracing tool requests through handlers, and working with SAP-backed integration and end-to-end tests.
Why use it?
They help an agent make changes that match the project's architecture and remember that the runnable server uses compiled files rather than source files.

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/dassianinc/dassian-adt/claude-md
Clone the repo
git clone --depth 1 https://github.com/DassianInc/dassian-adt

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 dassian-adt CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dassianinc/dassian-adt/claude-md.svg)](https://agentmods.dev/instructions/dassianinc/dassian-adt/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/dassianinc/dassian-adt/claude-md"><img src="https://agentmods.dev/badge/instructions/dassianinc/dassian-adt/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,489 This file is loaded in full into every session.
When invoked 2,489 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.02489 $0.02489
Opus 5 $0.01244 $0.01244
Sonnet 5 $0.00498 $0.00498
Haiku 4.5 $0.00249 $0.00249

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

Security

Grade A, and why

dassian-adt 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 5d 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 -H "Authorization: Bearer $TOKEN" \
CLAUDE.md · 163 lines

How it starts

The opening of the file, as written. The whole thing — 163 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.

Commands

npm run build          # Compile TypeScript → dist/
npm test               # Unit tests only (~180 tests, no SAP needed, <3s)
npm run test:coverage  # Unit tests with coverage report
npm run test:live      # Integration tests (needs SAP env vars)
npm run test:e2e       # End-to-end write lifecycle (create → write → activate → delete)
npm run dev            # Launch MCP Inspector for interactive tool testing

Run a single test file:

npx jest src/__tests__/unit/urlBuilder.test.ts
npx jest src/__tests__/unit/errors.test.ts

After any source change: npm run build — the MCP server runs from dist/, not src/.

Architecture

Request Flow

index.ts (AbapAdtServer)
  → handler.validateAndHandle(toolName, args)   ← centralized required-field check
    → handler.handle(toolName, args)             ← switch to concrete method
      → this.withSession(() => adtclient.xxx())  ← auto-reconnect wrapper

index.ts registers all handlers, wires elicitation/notify/sampling callbacks, and dispatches every tools/call to the correct handler's validateAndHandle. No tool routing logic lives outside index.ts.

Handler Hierarchy

All 8 handlers extend BaseHandler (src/handlers/BaseHandler.ts), which provides:

  • withSession(fn) — wraps every ADT call; detects session expiry (401, ambiguous 400) and re-logins transparently
  • validateAndHandle(toolName, args) — checks JSON schema required fields before any handler code runs
  • elicitForm / elicitChoice / confirmWithUser — MCP elicitation forms injected from index.ts
  • notify(msg, level) — progress messages visible in Claude Code's UI
  • askClaude(system, user) — sampling to ask Claude a question without interrupting the user
  • fail(msg) — throws McpError; never returns

Lock → Write → Unlock Pattern

Critical invariant: lock, write, and unlock for any object MUST happen inside a single withSession(async () => { ... }) block — never in separate withSession calls.

Read the full file on GitHub · 163 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. 5d ago First seen · 163 lines · 2,489 tokens per session scan A a85a271fccd2

Subscribe to this mod's changes

dassian-adt CLAUDE.md is an instructions file published in the GitHub repository DassianInc/dassian-adt (9 stars, last pushed today), licensed MIT. It adds 2,489 tokens to every session, about $0.0124 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-31.