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/prevalentware/opencode-loop-plugin/agents-mdgit clone --depth 1 https://github.com/prevalentWare/opencode-loop-pluginWhat 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.00982 | $0.00982 |
| Opus 5 | $0.00491 | $0.00491 |
| Sonnet 5 | $0.00196 | $0.00196 |
| Haiku 4.5 | $0.00098 | $0.00098 |
Grade A, and why
opencode-loop-plugin 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 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 — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Notes
Project Shape
This package is an OpenCode plugin with separate server and TUI entrypoints:
src/server.tsis the server plugin. It registers the/loopcommand, the loop tools, chat/session hooks, compaction context, and the scheduler that injects loop iterations while a session is idle.src/state.tsowns loop persistence and lifecycle state. It stores JSON atOPENCODE_LOOP_STATE_PATHwhen set, otherwise under the user's OpenCode data location. It also owns interval parsing/formatting.src/tui.tsxis the Solid/OpenTUI sidebar and command-palette UI. It is exported as source, so avoid adding heavy runtime dependencies here unless there is a strong reason.src/prompts.tscontains the/loopcommand template, the per-iteration synthetic prompt, the loop system reminder, and the compaction context.test/covers state, server hooks/tools/scheduler, and TUI helpers with Bun tests. Scheduler tests use 1-second intervals via themin_interval_secondsoption.
Scheduler Invariants
- Iterations are only injected while the session is idle; busy sessions defer with
min(intervalMs, busy_backoff_seconds). sendingLoopsguards against concurrent iterations of the same loop; after a successful injection the session is optimistically marked busy so sibling loops defer.- Dynamic loops live one iteration at a time:
dynamicPendingentries settle on idle, and a dynamic loop whose turn ended withoutschedule_next_runorstop_loopis stopped.sawBusymust startfalsefor injected iterations (only the creating turn startstrue) so a stale idle event cannot settle a just-injected loop. runDuemust never throw: it runs fromsetTimeoutcallbacks, so errors are caught and logged.- Timers are per-loop, always re-armed from persisted
nextRunAt, and cancelled on stop/pause/dispose.
Change Guidelines
- Preserve the public Promise-based state API (
createLoop,listLoops,stopLoop,recordRunSent, etc.) because OpenCode hooks and tests call it directly. - Keep
zodpinned to the exact version@opencode-ai/plugindepends on; tool argument schemas fail typechecking across zod minor versions. - Effect is intentionally used in the state/persistence boundary. Do not spread Effect into the TUI.
- State writes should remain atomic: write to a temp file, then
renameinto place. - Use
OPENCODE_LOOP_STATE_PATHfor tests and smoke runs so you do not touch a real user's loop state. - All loop tools return
{ ..., loops }for the session; the TUI sidebar parses that shape from tool outputs, so keep it stable.
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 · 64 lines · 982 tokens per session scan A cdb0c9a53239
opencode-loop-plugin AGENTS.md is an instructions file published in the GitHub repository prevalentWare/opencode-loop-plugin (3 stars, last pushed 3d ago), licensed MIT. It adds 982 tokens to every session, about $0.0049 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
Lody AGENTS.md
Instructions for LodyAI/Lody, covering repository guidelines, context maintenance, repository boundary, project map and checks and commits.
autolith AGENTS.md
Instructions for lambda-symbolics/autolith, covering repository guidelines, purpose and sources of truth, upstream references, architectural guardrails and package policy.
supercli AGENTS.md
Instructions for yashdev9274/supercli, covering agent instructions for supercode monorepo, build commands, root level commands, individual app/package commands and package-specific commands (run from package directory).
senpi AGENTS.md
Instructions for code-yeongyu/senpi, covering senpi repository guide, mandatory execution protocols — non-negotiable, protocol 1 — explicitly requested modifications, protocol 2 — user-requested pr reviews and structure.
cocode AGENTS.md
Instructions for cocode-agency/cocode, covering agents.md, 仓库布局, 仓库边界, cocode-gui/ and cocode-tui/.
sortie copilot-instructions.md
Instructions for sortie-ai/sortie, covering sortie coding & review standards, 1. layered imports (downward only; violation is critical), 2. concurrency safety, 3. workspace path safety (critical: security boundary) and 4. persistence (sqlite).