galaxium-travels: Instructions file for Codex

AGENTS.md

galaxium-travels AGENTS.md is an instructions file for Codex, OpenCode from IBM/galaxium-travels. It costs 2,261 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for the Galaxium Travels demo, an interplanetary flight-booking app designed to show the challenges of working in a multi-service codebase. They describe its setup, backend, prerequisites, commands, and known pitfalls.

In plain words
What is it for?
Use them when planning, exploring, testing, or changing the Galaxium Travels Python and FastAPI codebase, including its MCP server and booking services.
Why use it?
They give coding agents the project-specific rules needed to explore and modify the app without breaking important service relationships or type-handling conventions.

Instructions file for CodexOpenCode ✓ vendor

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions subagents.

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

Reuse

Borrowing it

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

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 galaxium-travels AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ibm/galaxium-travels/agents-md/github.svg)](https://agentmods.dev/instructions/ibm/galaxium-travels/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/ibm/galaxium-travels/agents-md"><img src="https://agentmods.dev/badge/instructions/ibm/galaxium-travels/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 galaxium-travels AGENTS.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/ibm/galaxium-travels/agents-md"><img src="https://agentmods.dev/badge/instructions/ibm/galaxium-travels/agents-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 2,261 This file is loaded in full into every session.
When invoked 2,261 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.02261 $0.02261
Opus 5 $0.01130 $0.01130
Sonnet 5 $0.00452 $0.00452
Haiku 4.5 $0.00226 $0.00226

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

Security

Grade A, and why

galaxium-travels 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 · 150 lines

How it starts

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

Galaxium Travels

A demo interplanetary flight-booking app that mimics a real enterprise system. Its purpose is to showcase challenges agents face in a multi-service codebase — not to run in production.

When you are asked to create a plan while in agent mode, do other things you need to do, like gathering data from a CLI and then explicitly switch to plan mode.

When creating planning documents, put them on the root level in all caps.

Before you start building anything look for information about tests and verification

For any exploration task, use subagents. E.g. when you are asked to create an onboarding document

Footguns

  • MCP server MUST be created before FastAPI appserver.py line 22 instantiates FastMCP before FastAPI. Swapping the order breaks lifespan composition.
  • MCP tools bypass FastAPI DI — they call SessionLocal() and db.close() directly; they do NOT use Depends(get_db).
  • Service functions return Union types, not exceptionsbooking.py returns BookingOut | ErrorResponse. Callers check isinstance(result, ErrorResponse).
  • book_flight() validates both user_id AND name — intentional non-standard security pattern; name mismatch rejects the booking.
  • SQLite is the production databaseDATABASE_URL is intentionally unset on ECS; db.py defaults to ./booking.db. Data is ephemeral per container task.
  • SEED_DEMO_DATA=true re-seeds on every start — set to false if you need data to survive a restart locally.
  • Tests must patch SessionLocal in two placesconftest.py lines 49–50 patches both db.SessionLocal and server.SessionLocal. Patching only one leaves the MCP tools hitting the real DB.
  • Java hold service requires Java 17 or 21 — Lombok does not support Java 22+. The start script auto-detects sdkman candidates; set JAVA_HOME manually if needed.
  • docker-compose.yml Java service is behind a profile — it uses profiles: [hold-service]. Run docker compose --profile hold-service up to include it, or use e2e/docker-compose.e2e.yml which enables it unconditionally.
  • Python proxy swallows Java 404s — proxy endpoints in server.py catch httpx.HTTPError and return {"error": "..."} with HTTP 200. Callers must check the response body, not just the status code (see test_holds.py line 82).
  • holds.db and booking.db are committed artefacts — do not delete; they seed local dev. They are regenerated on startup via spring.jpa.hibernate.ddl-auto=update and SEED_DEMO_DATA=true.
  • Some of the rules above are enforced by lifecycle hooks, not just documented — see .bob/settings.json. Deleting a .db file and committing while the backend suite is red are both blocked outright. If a tool call is reported as blocked, read .bob/hooks/state/.last-block for the reason — the hook writes the full explanation there.

Read the full file on GitHub · 150 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 · 150 lines · 2,261 tokens per session scan A 6bfbb3163b82

Subscribe to this mod's changes

galaxium-travels AGENTS.md is an instructions file published in the GitHub repository IBM/galaxium-travels (53 stars, last pushed 13d ago), licensed Apache-2.0. It adds 2,261 tokens to every session, about $0.0113 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

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