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/wanghao9610/star/agents-mdgit clone --depth 1 https://github.com/wanghao9610/STARWrote 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/wanghao9610/star/agents-md)<a href="https://agentmods.dev/instructions/wanghao9610/star/agents-md"><img src="https://agentmods.dev/badge/instructions/wanghao9610/star/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.01751 | $0.01751 |
| Opus 5 | $0.00875 | $0.00875 |
| Sonnet 5 | $0.00350 | $0.00350 |
| Haiku 4.5 | $0.00175 | $0.00175 |
Grade A, and why
STAR 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 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.
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 — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Instructions
Behavioral guidelines to reduce common LLM coding mistakes. They bias toward caution over speed; for trivial tasks, use judgment.
1. Think Before Coding
Don't assume. Don't hide confusion. Surface tradeoffs.
- State your assumptions explicitly. If something is unclear, stop, name what's confusing, and ask.
- If multiple interpretations exist, present them - don't pick silently.
- If a simpler approach exists, say so. Push back when warranted.
2. Simplicity First
Minimum code that solves the problem. Nothing speculative.
- Nothing beyond what was asked: no extra features, no abstractions for single-use code, no "flexibility" or configurability nobody requested, no error handling for impossible scenarios.
- If you write 200 lines and it could be 50, rewrite it.
3. Surgical Changes
Touch only what you must. Clean up only your own mess.
- Don't "improve" adjacent code, comments, or formatting; don't refactor what isn't broken.
- Match existing style, even if you'd do it differently.
- Remove imports, variables, and functions that YOUR changes left unused.
- Pre-existing dead code: mention it, don't delete it unless asked.
The test: Every changed line should trace directly to the user's request.
4. Goal-Driven Execution
Define success criteria. Loop until verified.
- Turn the task into a check you can run: "add validation" -> tests for invalid inputs that pass; "fix the bug" -> a test that reproduces it, then passes; "refactor X" -> tests pass before and after.
- For multi-step tasks, state the steps and the check that closes each one.
5. Research Workflow
This project uses the STAR research workflow. Its records are files, not chat history.
- Plans live in
metds/plans/; each leaf's execution record is underwkdrs/<run>/(EXEC_PLAN.md,EXEC_LOG.md). - Run the status skill first when you do not know where things stand: it reads the plan tree and the reports on disk and names the single next action.
- The rules every workflow skill follows are in
docs/mds/star-workflow/research-workflow-conventions.md; what each skill does is inresearch-workflow-skills.md. - A skill step whose written procedure dispatches subagents already carries the user's request to run it: dispatch without asking, even where a host instruction allows delegation only when the user has asked. An outright ban, or a host offering no delegation, still stops it; the grant covers the dispatch itself, not what a delegate may write.
- Do not hand-edit generated reports under
wkdrs/, and do not editdocs/mds/star-workflow/:execs/update.shoverwrites it.
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.
- 5d ago First seen · 105 lines · 1,751 tokens per session scan A f3e77de3123e
STAR AGENTS.md is an instructions file published in the GitHub repository wanghao9610/STAR (51 stars, last pushed 2d ago), licensed MIT. It adds 1,751 tokens to every session, about $0.0088 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
clawock AGENTS.md
AGENTS.md instructions for KCNyu/clawock, covering agents.md - your workspace, every session, kcn 偏好, git hook (one-time setup per clone) and git auto-commit rules.
airflow CLAUDE.md
Claude Code instructions for apache/airflow, a project described as: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows.
mumei CLAUDE.md
Instructions for iroha924/mumei, covering mumei development guide, what mumei is, language policy, bash + jq conventions (essentials) and schemas/ conventions (essentials).
hive CLAUDE.md
Instructions for felipeluissalgueiro/hive, covering hive — orchestrator, who you are, the company (personalize this), squads and how memory works.
superpowers-graph CLAUDE.md
Claude Code instructions for RonMizrahi/superpowers-graph, covering superpowers-graph — repository guide, sources of truth, changing the graph — the eval ships with the change and rules that are not obvious from the code.
unlazier-ai AGENTS.md
Instructions for fco3lho/unlazier-ai, covering global agent rules, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.