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/gemini-mdgit 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.00647 | $0.00647 |
| Opus 5 | $0.00324 | $0.00324 |
| Sonnet 5 | $0.00129 | $0.00129 |
| Haiku 4.5 | $0.00065 | $0.00065 |
Grade A, and why
aix GEMINI.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 — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.
aix Project Context
Overview
aix is a unified CLI tool for managing AI coding assistant configurations across multiple platforms (Claude Code, OpenCode, Codex, Gemini CLI). It allows developers to define skills, MCP servers, and commands once and deploy them to all supported AI assistants.
Tech Stack
- Language: Go 1.25+
- CLI Framework: Cobra + Viper
- Configuration: YAML (users), TOML/JSON (platforms)
- Linter: golangci-lint
- Build: Go standard toolchain + Goreleaser
Architecture
The project follows a Clean Architecture approach with a strong separation of concerns:
cmd/aix/: CLI entry points and command definitions.internal/cli/: Core CLI logic andPlatforminterface definition.internal/platform/: Adapter implementations for each AI assistant (claude, opencode, etc.).internal/skill/: Logic for parsing and validating Agent Skills.internal/mcp/: Logic for managing Model Context Protocol servers.
Key Concepts
- Platform Adapter: Each AI assistant is implemented as a plugin-like adapter satisfying the
Platforminterface. - Unified Config: User configuration lives in
~/.config/aix/config.yaml. - Translation Layer: The CLI translates abstract definitions (e.g.,
$ARGUMENTS) into platform-specific syntax (e.g.,{{argument}}).
Development Workflow
Build and Run
# Build the binary
go build ./cmd/aix
# Install locally
go install ./cmd/aix
Testing
Tests are standard Go unit tests, emphasizing table-driven design.
# Run all tests
go test ./...
# Run with race detection (Recommended)
go test -race ./...
# Run specific package
go test ./internal/skill/...
Linting & Formatting
Strict linting rules are enforced via .golangci.yml.
# Format code
go fmt ./...
goimports -w .
# Run linters
golangci-lint run
Coding Conventions
- Imports: Grouped as Standard Library, External (3rd party), and Internal (project).
- Error Handling: Always wrap errors with
fmt.Errorf("...: %w", err)to preserve context and stack traces. Useerrors.Isfor checking. - Interfaces: Define interfaces where they are used, not where they are implemented.
- Testing:
- Use
t.Parallel()for independent tests. - Use
t.TempDir()for file system tests. - Use
t.Setenv()for environment variables. - Prefer table-driven tests for logic with multiple edge cases.
- Use
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 · 75 lines · 647 tokens per session scan A 211dc56a3293
aix GEMINI.md is an instructions file published in the GitHub repository thoreinstein/aix (16 stars, last pushed 1mo ago), licensed MIT. It adds 647 tokens to every session, about $0.0032 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.