muxa_xtream: Instructions file for Codex

AGENTS.md

muxa_xtream AGENTS.md is an instructions file for Codex, OpenCode from felixssimoes/muxa_xtream. It costs 1,285 tokens per session, scanned A, original, MIT.

Repository instructions for a Dart package, including its folder layout, build and test commands, formatting rules, naming style, and analysis checks.

In plain words
What is it for?
Use them when editing library code, adding or updating tests, running Dart analysis, formatting files, or checking package publication readiness.
Why use it?
They give a coding agent the project conventions needed to make changes that pass the package’s checks.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md.

This is felixssimoes/muxa_xtream's own configuration. It tells Codex and OpenCode how to work on muxa_xtream 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 muxa_xtream configures →

Reuse

Borrowing it

Nothing to install: this file belongs to felixssimoes/muxa_xtream. 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/felixssimoes/muxa_xtream/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/felixssimoes/muxa_xtream

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 muxa_xtream AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/felixssimoes/muxa_xtream/agents-md/github.svg)](https://agentmods.dev/instructions/felixssimoes/muxa_xtream/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/felixssimoes/muxa_xtream/agents-md"><img src="https://agentmods.dev/badge/instructions/felixssimoes/muxa_xtream/agents-md/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for muxa_xtream AGENTS.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/felixssimoes/muxa_xtream/agents-md"><img src="https://agentmods.dev/badge/instructions/felixssimoes/muxa_xtream/agents-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,285 This file is loaded in full into every session.
When invoked 1,285 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.01285 $0.01285
Opus 5 $0.00642 $0.00642
Sonnet 5 $0.00257 $0.00257
Haiku 4.5 $0.00128 $0.00128

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

Security

Grade A, and why

muxa_xtream 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 10d 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 · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Repository Guidelines

Project Structure & Module Organization

  • lib/: Public package code (entrypoint: lib/muxa_xtream.dart). Keep APIs small and documented.
  • test/: Unit tests (e.g., test/muxa_xtream_test.dart). Mirror lib/ structure; one *_test.dart per unit.
  • doc/: Design notes and requirements.
  • Root files: pubspec.yaml (deps, SDK), analysis_options.yaml (lints), README.md, CHANGELOG.md.

Build, Test, and Development Commands

  • Note: A pre-commit hook runs the full verification pipeline automatically on every commit. Running the verify script manually is optional and useful mainly when iterating on failures.
  • Install deps: dart pub get — resolves package dependencies.
  • Run tests: dart test — executes test suites.
  • Coverage: dart test --coverage=coverage — writes VM coverage data.
  • Static analysis: dart analyze — checks style and common issues.
  • Format: dart format . — apply standard Dart formatting.
  • Publish check: dart pub publish --dry-run — validates package readiness.

Coding Style & Naming Conventions

  • Indentation: 2 spaces, no tabs. Use dart format.
  • Lints: flutter_lints (see analysis_options.yaml). Fix all analyzer warnings.
    • Analyzer must be clean: resolve all issues (including info-level) before committing. If suppression is justified, use the narrowest // ignore: with a rationale.
  • Files: lowercase_with_underscores.dart (e.g., my_service.dart).
  • Types: UpperCamelCase; members/variables: lowerCamelCase; constants: SCREAMING_SNAKE_CASE.
  • Public API lives under lib/; avoid exposing internals inadvertently.

Testing Guidelines

  • Framework: flutter_test with test(...) and group(...).
  • Location: place tests in test/; name files *_test.dart.
  • Aim for fast, deterministic unit tests. Prefer pure Dart tests for logic.
  • You can still run tests and analysis locally while iterating, but the pre-commit hook will enforce verification automatically on commit.

Commit & Pull Request Guidelines

  • Commits: use Conventional Commits with structured, multi-line messages.
    • Subject: type(scope): concise summary (imperative, max ~50 chars).
    • Blank line after subject.
    • Body: wrapped at ~72 cols; bullets for key changes; include “why” when helpful.
    • Prefer small scopes (e.g., core, http, docs, tool).
    • Tip: when committing via CLI, avoid literal \\n in -m strings — Git does not interpret escapes.
      • Use multiple -m flags for paragraphs, or pipe a properly formatted message via stdin: git commit -F - <<'MSG' ... MSG.
      • Example:
        • git commit -m "feat(url): add probe" -m "- Adds HEAD/Range probe\\n- Adds tests" (note: each -m is a new paragraph; for line breaks within a paragraph, prefer -F -).
        • git commit -F - <<'MSG'\\nfeat(url): add probe\\n\\n- Adds HEAD/Range probe\\n- Adds tests\\nMSG
    • Examples:
      • chore(core): complete Phase 0 bootstrap

Read the full file on GitHub · 79 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. 10d ago First seen · 79 lines · 1,285 tokens per session scan A bb6c16035807

Subscribe to this mod's changes

muxa_xtream AGENTS.md is an instructions file published in the GitHub repository felixssimoes/muxa_xtream (5 stars, last pushed 1mo ago), licensed MIT. It adds 1,285 tokens to every session, about $0.0064 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

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

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,153 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

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

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

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