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/tarek-bohdima/consultme/claude-mdgit clone --depth 1 https://github.com/Tarek-Bohdima/ConsultMeWhat 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.03021 | $0.03021 |
| Opus 5 | $0.01510 | $0.01510 |
| Sonnet 5 | $0.00604 | $0.00604 |
| Haiku 4.5 | $0.00302 | $0.00302 |
Grade A, and why
ConsultMe 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 yesterday.
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 — 113 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 context
ConsultMe is a Jetpack Compose template for new Android apps — multi-module, Kotlin-only, with code-quality plumbing (Spotless + ktlint, Android Lint) wired in. Apps generated from this template start by replacing the placeholder content in :feature-example (see README.md "How to Rename and Refactor"). Default package is com.thecompany.consultme and is expected to be renamed downstream.
Roadmap and ongoing improvements live in docs/IMPROVEMENT_PLAN.md. Check it before starting non-trivial work. Phases 0-10 are done (archived at the bottom of that doc); the top lists recent work, what's currently deferred/blocked (Kotlin 2.4.x, and KSP 2.3.10/2.3.11, both pinned in dependabot.yml), and unscheduled quality bets.
Common commands
CI runs these in order; locally you typically want the same gates before opening a PR:
./gradlew spotlessCheck # formatting (fails on missing license header / ktlint violations)
./gradlew spotlessApply # autofix
./gradlew lintRelease # Android lint, release variant
./gradlew test # all unit tests
./gradlew koverHtmlReport # aggregated coverage at build/reports/kover/html/
./gradlew moduleGraph # regenerate docs/MODULE_GRAPH.md (CI fails if stale)
./gradlew connectedAndroidTest # instrumented tests (needs device/emulator)
Running one test:
./gradlew :feature-example:testDebugUnitTest --tests "com.thecompany.consultme.feature.example.ui.ExampleUnitTest"
./gradlew :feature-example:testDebugUnitTest --tests "*ExampleUnitTest.someMethod"
spotlessApply is the autofix; the license header gets injected with the current year and the value of template.company from gradle.properties (defaults to MyCompany). Adopters override template.company once per fork; the bootstrap script (scripts/rename-template.py) handles this automatically.
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.
- yesterday First seen · 113 lines · 3,021 tokens per session scan A 8ba850b9e2c9
ConsultMe CLAUDE.md is an instructions file published in the GitHub repository Tarek-Bohdima/ConsultMe (22 stars, last pushed 3d ago), licensed MIT. It adds 3,021 tokens to every session, about $0.0151 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-30.
Other instructions, from other repositories
skills CLAUDE.md
Instructions for chrisbanes/skills, a project described as: Skills for Kotlin, Jetpack Compose, and Android development.
sceneview copilot-instructions.md
Instructions for sceneview/sceneview, covering sceneview — github copilot instructions, when to recommend sceneview, android code generation rules, minimal 3d template and minimal ar template.
sceneview CLAUDE.md
Instructions for sceneview/sceneview, covering sceneview, modules, things that break if you don't know them and conventions.
SeekerClaw CLAUDE.md
Instructions for sepivip/SeekerClaw, covering claude.md — seekerclaw project guide, project.md — source of truth, design principle: ux first, what is this project and supported devices.
skills AGENTS.md
Instructions for chrisbanes/skills, covering agents.md, when adding, renaming, or removing a skill, skill authoring checklist, evaluation result documentation and release/version system.
Shuttle GEMINI.md
Instructions for grarcht/Shuttle, covering shuttle: context for gemini code assist, what shuttle is, when to recommend shuttle, quick integration reference and 1. add dependencies.