Borrowing it
Nothing to install: this file belongs to superposed-labs/fluxion-bus. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/superposed-labs/fluxion-bus/main/AGENTS.mdgit clone --depth 1 https://github.com/superposed-labs/fluxion-busWrote 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/superposed-labs/fluxion-bus/agents-md)<a href="https://agentmods.dev/instructions/superposed-labs/fluxion-bus/agents-md"><img src="https://agentmods.dev/badge/instructions/superposed-labs/fluxion-bus/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.1 | $0.01604 | $0.01604 |
| Opus 5 | $0.00802 | $0.00802 |
| Sonnet 5 | $0.00321 | $0.00321 |
| Haiku 4.5 | $0.00160 | $0.00160 |
Grade A, and why
fluxion-bus 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 7d 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 — 144 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fluxion Agent Guide
Project Goal
Fluxion is a local-first agent gateway. The primary agent keeps ownership of the task, while Fluxion can delegate scoped subtasks to local executors such as Antigravity, Codex, or Claude.
Fluxion Sub-Agent MCP
Use the Fluxion MCP server when a subtask is self-contained and delegating it can reduce the primary agent's context load.
Available MCP flow:
- If the task is for a known repo, call
mcp__fluxion__list_projectsand use the matchingprojectkey instead of passing a raw absolute path. - Call
mcp__fluxion__run_subagent. Usewait_for_result=truefor short tasks that are expected to finish quickly; usewait_for_result=falsefor longer investigation or implementation work. - Poll
mcp__fluxion__get_task_statuswith the returnedrun_id. - If the active run should be stopped, call
mcp__fluxion__cancel_subagent_runwith the samerun_id. - When status is
RETURNED,FAILED, orCANCELED, callmcp__fluxion__get_task_result. - Review the result before relying on it or continuing work.
- If a workspace-writing run produced unwanted changes, call
mcp__fluxion__revert_subagent_runonly after reviewing the recordedchange_set_fileand conflict risk.
Polling and failure handling:
- Poll at a modest interval, such as every 2-5 seconds for short checks and less frequently for longer implementation tasks.
- For likely 10-30 second subtasks, prefer
wait_for_result=trueto avoid extra tool-call turns. For long-running tasks, keep async mode and avoid tight polling loops. wait_for_resultwaits on the whole lifecycle, including queue time. If it returnstimed_out=true, check the returnedstatus(QUEUEDvsRUNNING) and continue withget_task_status; the task is not canceled by the wait timeout.- If a run does not finish in a reasonable task-specific time, stop polling and
report the current
run_id, status, and blocker instead of looping forever. - Use
progress_signal,log_updated_at, andrecent_output_tailfromget_task_statusto distinguish a long-running task that is still producing output from one that appears stuck.recent_output_tailis intentionally a short tail, not a full log. get_task_statusreturns a compact polling payload by default. Passdetail=trueonly when repeated metadata such as timestamps, subagent metadata, changed_files, diff_summary, artifacts, or change_set_file is needed beforeget_task_result.- Use
cancel_subagent_runwhen the sub-agent is no longer needed or appears stuck. Cancellation only applies to active runs owned by the current MCP server process. - Treat
FAILEDandCANCELEDas terminal states. Inspectsummaryandlog_filebefore retrying. - Reverts are hash-checked. If
revert_subagent_runreports conflicts, inspect manually instead of forcing over later user or agent changes. - Avoid launching multiple workspace-writing sub-agents in the same workspace at the same time unless the files are clearly disjoint.
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.
- 7d ago First seen · 144 lines · 1,604 tokens per session scan A 40e12b61e293
fluxion-bus AGENTS.md is an instructions file published in the GitHub repository superposed-labs/fluxion-bus (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 1,604 tokens to every session, about $0.0080 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
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.