aix GEMINI.md

A project instruction file for aix, a Go command-line tool that manages configuration for several AI coding assistants. It explains the project’s architecture, configuration formats, platform adapters, skills, and MCP server management.

In plain words
What is it for?
Use it when changing aix’s CLI, platform integrations, configuration handling, skill validation, MCP server support, or build and release setup.
Why use it?
It gives coding agents the project context needed to place changes in the right package and follow the established development workflow.

Instructions file for Gemini CLI

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/thoreinstein/aix/gemini-md
Clone the repo
git clone --depth 1 https://github.com/thoreinstein/aix

Made for: Gemini CLI.

Per session 647 This file is loaded in full into every session.
When invoked 647 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.00647 $0.00647
Opus 5 $0.00324 $0.00324
Sonnet 5 $0.00129 $0.00129
Haiku 4.5 $0.00065 $0.00065

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

Security

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.

GEMINI.md · 75 lines

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 and Platform interface 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 Platform interface.
  • 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. Use errors.Is for 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.

Read the full file on GitHub · 75 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 · 75 lines · 647 tokens per session scan A 211dc56a3293

Subscribe to this mod's changes

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.