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/davo20019/aidaemon/claude-mdgit clone --depth 1 https://github.com/davo20019/aidaemonWrote 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/davo20019/aidaemon/claude-md)<a href="https://agentmods.dev/instructions/davo20019/aidaemon/claude-md"><img src="https://agentmods.dev/badge/instructions/davo20019/aidaemon/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.1 | $0.03760 | $0.03760 |
| Opus 5 | $0.01880 | $0.01880 |
| Sonnet 5 | $0.00752 | $0.00752 |
| Haiku 4.5 | $0.00376 | $0.00376 |
Grade A, and why
aidaemon 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 today.
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 — 418 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md / CLAUDE.md
This is the shared coding-agent guide for this repository. AGENTS.md is a
symlink to this file, so keep the content agent-neutral unless a rule truly only
applies to one tool.
Build & Run
cargo build
cargo build --release
cargo build --features browser
cargo build --features discord
cargo build --features slack
cargo build --features encryption
cargo build --features "browser,slack,discord"
cargo test
cargo test --all-features
cargo test router
cargo test --lib memory
cargo test integration_tests
cargo test <test_name>
cargo fmt
cargo fmt --check
cargo clippy --all-features -- -D warnings
No rustfmt.toml is present; use default Rust formatting.
The agent loop is a deep async state machine and debug-profile poll frames are
large. The daemon runtime already uses an 8 MiB worker stack (src/lib.rs);
CI runs tests with RUST_MIN_STACK=8388608 so test threads get the same budget. If a local cargo test aborts with
has overflowed its stack, run it with that variable set rather than
shrinking a frame by hand; the suite sits within a few percent of libtest's
2 MiB default.
Pre-Commit Checklist
Before committing release-quality code:
cargo fmtcargo clippy --all-features -- -D warningscargo test
For CI parity on broad changes, prefer:
cargo test --all-features
cargo test --lib harness_eval --all-features
cargo build --release --features "browser"
Git Safety
This repository often has active, unrelated work in the tree. Do not clean up, discard, or revert files unless the user explicitly asks for that exact action.
Never run broad destructive commands such as:
git checkout *
git checkout .
git restore .
git reset --hard
git clean -fd
If a change needs to be reverted, inspect the diff first and revert only the
specific lines or files you changed. Prefer git diff, git status --short,
and targeted patches. When unrelated files are modified, leave them alone.
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.
- today Changed · +44 lines · +627 tokens per session 510ee758c392
- 5d ago First seen · 374 lines · 3,133 tokens per session scan A 3e4d20ceb41a
aidaemon CLAUDE.md is an instructions file published in the GitHub repository davo20019/aidaemon (5 stars, last pushed 3d ago), licensed MIT. It adds 3,760 tokens to every session, about $0.0188 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
lean-ctx AGENTS.md
AGENTS.md instructions for yvgude/lean-ctx, covering context engineering layer, mandatory multi-agent delivery, integration mode: replace, subagent compatibility (cursor / claude code) and cli commands (optimized shell, lower overhead).
openhuman AGENTS.md
AGENTS.md instructions for tinyhumansai/openhuman, covering openhuman, repository layout, runtime scope, ios client (experimental, non-shipping) and commands (from repo root).
lean-ctx copilot-instructions.md
Copilot instructions for yvgude/lean-ctx, a project described as: Control what your AI can see. LeanCTX (Lean Context) is the context intelligence layer for AI agents — one local Rust binary that decides what they read, remembers what they learn, guards what they touch, and proves what they save. 60–90% fewer tokens…
openhuman CLAUDE.md
Claude Code instructions for tinyhumansai/openhuman, a project described as: OpenHuman is an open source personal AI for Mac, Windows and Linux — local-first memory, agent orchestration, and deep research.
fastagent AGENTS.md
AGENTS.md instructions for fastagent-sh/fastagent, covering fastagent — agent guide, what this is, source of truth, repo map and devx principle stack.
sema AGENTS.md
AGENTS.md instructions for sema-lisp/sema, covering agents.md — sema (lisp with llm primitives, in rust), build & test, architecture (cargo workspace), key design patterns and writing style — plain technical english (mandatory).