fluxion-bus: Instructions file for Codex

AGENTS.md

fluxion-bus AGENTS.md is an instructions file for Codex, OpenCode from superposed-labs/fluxion-bus. It costs 1,604 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for Fluxion, a local gateway that lets a main coding agent delegate separate tasks to local agents such as Antigravity, Codex, or Claude. They explain how to find projects, start delegated work, check its status, and review its result.

In plain words
What is it for?
Use them when developing or operating the Fluxion repository, especially for local development, agent delegation, status checks, cancellation, result review, and verification.
Why use it?
They provide a defined process for delegating self-contained work without losing track of it. They also describe how to stop or undo delegated work when needed.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions subagents; mentions Codex.

This is superposed-labs/fluxion-bus's own configuration. It tells Codex and OpenCode how to work on fluxion-bus itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything fluxion-bus configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/superposed-labs/fluxion-bus/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/superposed-labs/fluxion-bus

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for fluxion-bus AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/superposed-labs/fluxion-bus/agents-md.svg)](https://agentmods.dev/instructions/superposed-labs/fluxion-bus/agents-md)
Your own site
<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>
Per session 1,604 This file is loaded in full into every session.
When invoked 1,604 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 7d ago against content hash 40e12b61e293, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

AGENTS.md · 144 lines

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:

  1. If the task is for a known repo, call mcp__fluxion__list_projects and use the matching project key instead of passing a raw absolute path.
  2. Call mcp__fluxion__run_subagent. Use wait_for_result=true for short tasks that are expected to finish quickly; use wait_for_result=false for longer investigation or implementation work.
  3. Poll mcp__fluxion__get_task_status with the returned run_id.
  4. If the active run should be stopped, call mcp__fluxion__cancel_subagent_run with the same run_id.
  5. When status is RETURNED, FAILED, or CANCELED, call mcp__fluxion__get_task_result.
  6. Review the result before relying on it or continuing work.
  7. If a workspace-writing run produced unwanted changes, call mcp__fluxion__revert_subagent_run only after reviewing the recorded change_set_file and 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=true to avoid extra tool-call turns. For long-running tasks, keep async mode and avoid tight polling loops.
  • wait_for_result waits on the whole lifecycle, including queue time. If it returns timed_out=true, check the returned status (QUEUED vs RUNNING) and continue with get_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, and recent_output_tail from get_task_status to distinguish a long-running task that is still producing output from one that appears stuck. recent_output_tail is intentionally a short tail, not a full log.
  • get_task_status returns a compact polling payload by default. Pass detail=true only when repeated metadata such as timestamps, subagent metadata, changed_files, diff_summary, artifacts, or change_set_file is needed before get_task_result.
  • Use cancel_subagent_run when the sub-agent is no longer needed or appears stuck. Cancellation only applies to active runs owned by the current MCP server process.
  • Treat FAILED and CANCELED as terminal states. Inspect summary and log_file before retrying.
  • Reverts are hash-checked. If revert_subagent_run reports 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.

Read the full file on GitHub · 144 lines

Changes

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.

  1. 7d ago First seen · 144 lines · 1,604 tokens per session scan A 40e12b61e293

Subscribe to this mod's changes

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.

Related

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.

openai/codex · 5,182 tokens

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).

microsoft/vscode · 6,785 tokens

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.

vercel/next.js · 7,296 tokens

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.

langchain-ai/langchain · 4,469 tokens

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).

microsoft/vscode · 5,001 tokens

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.

github/spec-kit · 7,104 tokens