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/thoreinstein/aix/copilot-instructionsgit clone --depth 1 https://github.com/thoreinstein/aixWhat 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.01820 | $0.01820 |
| Opus 5 | $0.00910 | $0.00910 |
| Sonnet 5 | $0.00364 | $0.00364 |
| Haiku 4.5 | $0.00182 | $0.00182 |
Grade A, and why
aix copilot-instructions.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.
How it starts
The opening of the file, as written. The whole thing — 199 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Copilot Instructions for aix
Repository Overview
aix is a unified Go CLI for managing AI coding assistant configurations across multiple platforms (Claude Code, OpenCode, Codex CLI, Gemini CLI). It provides a platform-agnostic way to define and deploy skills, MCP servers, and slash commands.
- Size: ~1.2MB, 59 Go source files
- Language: Go 1.25.5
- Architecture: CLI tool using Cobra, adapter pattern for platform-specific implementations
- Key Dependencies: spf13/cobra, spf13/viper, adrg/frontmatter, gopkg.in/yaml.v3
Repository Structure
aix/
|-- cmd/aix/ # CLI entry point - main.go and commands/
|-- internal/ # Private packages (NOT importable externally)
| |-- config/ # Configuration management
| |-- errors/ # Error handling utilities
| |-- logging/ # Logging utilities
| |-- paths/ # Path resolution for platform configs
| `--- platform/ # Platform adapters (claude/, opencode/)
|-- pkg/ # Public packages (importable)
| `--- frontmatter/ # YAML frontmatter parser
|-- docs/adr/ # Architecture Decision Records (see ADR-001)
|-- .github/workflows/ # CI/CD pipelines (ci.yml, codeql.yml, release.yml)
|-- .golangci.yml # Linter configuration
|-- .pre-commit-config.yaml # Pre-commit hooks (requires local tools)
`--- .beads/ # Issue tracker (bd CLI)
Build, Test, and Lint Commands
Prerequisites
- Go 1.25.5+ (specified in go.mod)
- Dependencies are automatically downloaded on first build
Build
go build ./cmd/aix # Build CLI binary -> ./aix
go build ./... # Build all packages (verification only)
go build -v -o aix cmd/aix/main.go # Verbose build with custom output name
First build downloads dependencies (~30 seconds). Subsequent builds are fast (<5 seconds).
Test
go test ./... # Run all tests (ALWAYS use this)
go test -v -race ./... # Verbose with race detection (CI requirement)
go test -cover ./... # With coverage report
go test ./internal/platform/... # Test specific package
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.
- 2d ago First seen · 199 lines · 1,820 tokens per session scan A 82bd73af0374
aix copilot-instructions.md is an instructions file published in the GitHub repository thoreinstein/aix (16 stars, last pushed 1mo ago), licensed MIT. It adds 1,820 tokens to every session, about $0.0091 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.
Other instructions, from other repositories
agentrules-architect AGENTS.md
Instructions for trevor-nichols/agentrules-architect, covering development principles, execplans, milestones, prefer cli creation over manual file creation and 2. temporal framework.
flt CLAUDE.md
Instructions for twaldin/flt, covering flt, the soul of the project: primitives, not a monolith, architecture, repo map and conventions.
agentor CLAUDE.md
Instructions for lonetis/agentor, covering agent orchestrator (agentor), architecture, detailed documentation, tech stack and dev commands.
vivagents CLAUDE.md
Instructions for n0an/vivagents, covering claude.md, project overview, build & run, architecture and key files.
agents-and-commands CLAUDE.md
Instructions for sonomirco/agents-and-commands, covering claude.md, repository overview, repository structure and maintenance guidelines.
agentrq-gemini-extension GEMINI.md
Instructions for agentrq/agentrq-gemini-extension: You are connected to the AgentRQ platform via the supervisor MCP server. You have access to manage workspaces, tasks, and communicate with human operators.