aisix-archived AGENTS.md

A project guide for AI coding assistants working on a Rust-based API gateway and its React admin interface. It explains the project structure, coding context, and commands for building, running, linting, and testing.

In plain words
What is it for?
Use it when asking an assistant to modify, build, run, lint, or test the gateway or its admin interface.
Why use it?
It gives an assistant the project-specific context needed to make compatible changes and check them correctly. This reduces guesswork about commands and conventions.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/api7/aisix-archived/agents-md
Clone the repo
git clone --depth 1 https://github.com/api7/aisix-archived

Made for: Codex, OpenCode.

Per session 3,729 This file is loaded in full into every session.
When invoked 3,729 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.03729 $0.03729
Opus 5 $0.01865 $0.01865
Sonnet 5 $0.00746 $0.00746
Haiku 4.5 $0.00373 $0.00373

Measured 2d ago against content hash 472a8b566093, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

aisix-archived 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 2d 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 · 465 lines

How it starts

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

AGENTS.md

For AI coding assistants (OpenCode, Cursor, Copilot, etc.): This file is the primary context source for AI assistants working on this codebase. Use it to understand project structure, coding conventions, and build commands.

For human contributors: See CONTRIBUTING.md for the contribution guide.

Project Overview

Rust-based AI gateway proxy supporting OpenAI, Anthropic, Gemini, and DeepSeek APIs. Built with Axum for HTTP, Tokio for async runtime, and etcd for configuration storage.

Includes a React-based admin UI (in ui/) for managing models, API keys, and a playground for testing chat completions.

Build, Lint, and Test Commands

Build

cargo build           # Debug build
cargo build --release # Release build

Run

RUST_LOG=info cargo run

UI Development

cd ui
pnpm install --frozen-lockfile    # Install dependencies
pnpm dev        # Start dev server
pnpm build      # Build for production
pnpm lint       # Run ESLint
pnpm format     # Format with Prettier
pnpm typecheck  # Type check without emit
pnpm preview    # Preview production build

Lint

cargo clippy --all-targets --all-features --locked -- -D warnings

Clippy warnings are treated as errors. Fix all warnings before committing.

Test

cargo test                             # Run all tests
cargo test --verbose                   # Run tests with verbose output
cargo test --test api                  # Run specific test file (tests/api.rs)
cargo test test_crud                   # Run specific test by name
cargo test --test admin::models_api    # Run tests in specific module
cargo test -- --nocapture              # Show test output

E2E Test

pnpm -C tests install --frozen-lockfile  # Install e2e dependencies
pnpm -C tests test                       # Run all e2e tests

Format

cargo fmt          # Format all code
cargo fmt -- --check  # Check formatting without changes

Read the full file on GitHub · 465 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. 2d ago First seen · 465 lines · 3,729 tokens per session scan A 472a8b566093

Subscribe to this mod's changes

aisix-archived AGENTS.md is an instructions file published in the GitHub repository api7/aisix-archived (59 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 3,729 tokens to every session, about $0.0186 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-30.

Related

Other instructions, from other repositories