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/abhichandra21/promptheus/agents-mdgit clone --depth 1 https://github.com/abhichandra21/PromptheusWrote 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/abhichandra21/promptheus/agents-md)<a href="https://agentmods.dev/instructions/abhichandra21/promptheus/agents-md"><img src="https://agentmods.dev/badge/instructions/abhichandra21/promptheus/agents-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 | $0.01303 | $0.01303 |
| Opus 5 | $0.00651 | $0.00651 |
| Sonnet 5 | $0.00261 | $0.00261 |
| Haiku 4.5 | $0.00130 | $0.00130 |
Grade A, and why
Promptheus AGENTS.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 4d 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.
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 — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Guidelines
Project Structure & Module Organization
Runtime code lives under src/promptheus/. main.py owns the CLI entry point, providers.py wraps the adapters for multiple LLM providers (Gemini, Claude, OpenAI, Groq, Qwen, GLM), config.py manages environment-driven settings, and history.py persists prompt sessions. Shared assets (e.g., models.json, logging_config.py, utils.py) sit alongside. Tests mirror this layout in tests/, while helper tools such as sample_prompts.txt remain at the repository root. Add new runtime modules inside src/promptheus/ and keep provider-specific helpers beside existing integrations to simplify discovery.
Build, Test, and Development Commands
Install dependencies in editable mode before contributing:
pip install -e .[dev]
pip install -r requirements.txt # extras for env_validator
Run the CLI locally with either binary or module syntax:
promptheus "Draft an onboarding email"
python -m promptheus.main --skip-questions "Smoke test"
# Quiet mode for scripting (clean stdout/stderr separation)
promptheus "Generate a report" > output.txt # Auto-quiet when piping
promptheus "Write code" | cat # Auto-quiet when piping
# Different output formats
promptheus -o json "Create function" | jq .
promptheus -o plain "Write haiku"
Validate credentials before hitting remote APIs:
promptheus validate --providers google
promptheus validate --test-connection # to test actual API connectivity
Coding Style & Naming Conventions
Target Python 3.8+ with four-space indentation, snake_case for functions/variables, and CapWords for classes. Mirror existing type hints (see main.py) and keep modules under ~300 lines by extracting helpers where needed. Format with black ., keep imports sorted, and align terminal output with the rich styles already used in the CLI panels/table helpers.
Testing Guidelines
Tests live in tests/ and follow the test_<module>.py naming pattern. Prefer fast, offline unit tests that stub provider calls rather than exercising live APIs. Run pytest -q before sending a PR, and supplement with a manual CLI smoke test (promptheus --skip-questions "Smoke test") when you touch interactive flows or history features.
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.
- 4d ago First seen · 103 lines · 1,303 tokens per session scan A 769042287cdc
Promptheus AGENTS.md is an instructions file published in the GitHub repository abhichandra21/Promptheus (17 stars, last pushed 5mo ago), licensed MIT. It adds 1,303 tokens to every session, about $0.0065 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
Pake AGENTS.md
AGENTS.md instructions for tw93/Pake, covering agents.md - pake project knowledge base, project identity, repository structure, development commands and code conventions.
lobehub AGENTS.md
AGENTS.md instructions for lobehub/lobehub, covering lobehub development guidelines, tech stack, agent skills, project structure and spa routes and features.
Pake copilot-instructions.md
Copilot instructions for tw93/Pake, a project described as: 🤱🏻 Turn any webpage into a desktop app with one command.
lobehub CLAUDE.md
Claude Code instructions for lobehub/lobehub, a project described as: 🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team.
Prompt-Engineering-Guide CLAUDE.md
Instructions for dair-ai/Prompt-Engineering-Guide, covering prompt engineering guide, project overview, project learnings, notes & content and git workflow.
AI-MarkDone AGENTS.md
Instructions for zhaoliangbin42/AI-MarkDone, covering ai-markdone engineering guide, project facts, read order, common commands and non-negotiables.