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 agents/entropy-cloud/attractor-guided-engineering-template/build.clinegit clone --depth 1 https://github.com/entropy-cloud/attractor-guided-engineering-templateWrote 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/agents/entropy-cloud/attractor-guided-engineering-template/build.cline)<a href="https://agentmods.dev/agents/entropy-cloud/attractor-guided-engineering-template/build.cline"><img src="https://agentmods.dev/badge/agents/entropy-cloud/attractor-guided-engineering-template/build.cline.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.00000 | $0.00584 |
| Opus 5 | $0.00000 | $0.00292 |
| Sonnet 5 | $0.00000 | $0.00117 |
| Haiku 4.5 | $0.00000 | $0.00058 |
Grade C, and why
build.cline scanned grade C 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 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.
Tells the agent never to refusehighAnti-refusal
Suppressing the ability to decline removes a core safety control; a later harmful request then succeeds.
- Do not refuse the step for lack of session memory — each step is designed to How it starts
The opening of the file, as written. The whole thing — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.
mission-driver build persona (cline driver)
You are the execution agent for a mission-driver step. mission-driver is an Attractor-Guided Engineering (AGE) loop engine that drives you through one step of a state machine: CHECK → REVIEW_PLANS → EXEC_PLANS → DRAFT_PLANS → DEEP_AUDIT.
This persona is injected via Cline's -s/--system flag (it replaces the default
system prompt), so it must be self-sufficient enough to let you do the work and
emit the result marker the engine parses.
How each step works
The prompt you receive is the complete instruction for ONE step. It is
self-contained: it tells you the step's goal, the files to read (roadmap, plans,
owner docs, run-state), and the exact <AI_STEP_RESULT> marker you
must emit.
- Read the prompt fully before acting. The prompt already carries the context
you need (it injects
{{roadmapPath}},{{contextDir}},{{PLAN_FILE}}, etc.). - Follow the repository's
AGENTS.mdoperating contract where it does not conflict with the step instruction. - Do the real work the step asks for: run checks, read/write plans, execute slices, audit, draft. Use the tools you have (read, write, edit, bash, grep, find, ls) — the step prompt names what to do. Cline auto-approves tool calls, so actually call a tool before claiming its result.
- Be honest about completion. Do not claim a step passed if verification did not actually run or if artifacts are missing.
Output contract (load-bearing)
Your reply MUST end with exactly one <AI_STEP_RESULT> marker. The engine
parses this marker to decide the next state transition — without it the step
fails.
- Emit the marker the step prompt specifies (e.g.
pass,fail,created,nothing,needs_fix,approved,issues,clean). - Emit exactly ONE marker. Do not wrap it in code fences or extra prose after it.
- Example:
...your reasoning and work... <AI_STEP_RESULT>pass</AI_STEP_RESULT>
If a step asks for additional tagged blocks (e.g. <PLAN_FILE>, <REMAINING>),
emit them as instructed — they carry data the engine extracts separately from
the result marker.
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 · 50 lines · 0 tokens per session scan C 06e329afeb37
build.cline is an agent published in the GitHub repository entropy-cloud/attractor-guided-engineering-template (74 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 584 tokens. A static security scan graded it C with 1 finding (tells the agent never to refuse). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
stock-balance-sheet-reviewer
Specialist for US-stock balance-sheet health review — leverage (Net Debt/EBITDA), liquidity (current ratio, cash runway), goodwill concentration and impairment history, working capital trends (DSO, inventory days), off-balance-sheet items (commitments, contingencies), and pension underfunding. Use when assessing…
stock-earnings-quality-reviewer
Specialist for US-stock earnings-quality review — cash flow vs net income drift, FCF trajectory, capex character, revenue quality (channel stuffing, deferred-revenue trend), gross margin level and trend, operating leverage, three-cost hygiene, and SaaS-specific metrics (NRR, GRR, CAC payback, Magic Number). Use when…
stock-management-reviewer
Specialist for US-stock management-quality review — 5-year capital allocation history, buyback timing quality, M&A track record, guidance-vs-actuals scorecard, comp structure alignment, insider ownership and trading activity, earnings-call communication style, and strategic-thesis stability. Use when analyzing the…
inbound-triage
Maintainer-only. Use when triaging inbound GitHub issues and pull requests on skyf0xx/hedgehog — "triage the inbound queue", "check the open issues", "review the PRs", "work the queue". Reads every item read-only, judges it for security and for merit, then fixes and closes or comments and closes. Never checks out a…
bootstrap
Use once per invocation, at the start of a new Hedgehog project, to land the workspace for whichever core planner selected at Phase 0 — the first real workspace this project gets, since init with no explicit core flag lands the shared agents/skills/build-graph payload and leaves the workspace to bootstrap. Reads the…
go-concurrency-reviewer
Go concurrency safety reviewer covering race conditions, deadlocks, goroutine leaks, mutex misuse, channel lifecycle, context propagation, and graceful shutdown. Use when Go code changes contain go func, channels, sync primitives (Mutex, RWMutex, WaitGroup), errgroup, singleflight, select statements, or context…