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/gitmono-dev/mega/copilot-instructionsgit clone --depth 1 https://github.com/gitmono-dev/megaWhat 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.01330 | $0.01330 |
| Opus 5 | $0.00665 | $0.00665 |
| Sonnet 5 | $0.00266 | $0.00266 |
| Haiku 4.5 | $0.00133 | $0.00133 |
Grade A, and why
mega 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 — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Mega – Repository Custom Instructions for GitHub Copilot
What this repo is
Mega is an unofficial open-source implementation of Google Piper: a monorepo/monolithic codebase management system with Git compatibility, FUSE mounting, and Buck2 integration. When proposing designs or code, optimize for very large repos, content-addressed storage, and Git internals (packfiles, MIDX, commit-graph, delta chains). License is Apache-2.0 + MIT; keep new files compatible with both.
Languages & defaults
- Prefer Rust (Edition 2021+). Use async/await with Tokio, and structured logging with tracing.
- Serialization: serde; CLI: clap; errors: thiserror (library) and anyhow (bin/tests/tools).
- Avoid unsafe unless there’s a measurable win (perf or FFI). If unsafe is required, add a // SAFETY: rationale comment and tests.
- For small utilities, you may use Python or Bash, but default to Rust when feasible.
Build & run
- Primary build: Buck2. Provide buck2 rules/macros and examples when adding code or docs.
- Crate local build: cargo build -p is welcomed for dev loops; ensure parity with Buck2 rules.
- When generating commands, prefer:
buck2 build //... for CI-style full builds
buck2 test //... for tests
cargo nextest run -p <crate> when suggesting fast local test runs
Key Components (Modules)
| Crate | Role |
|---|---|
mono |
Server binary (HTTP REST, Git HTTP/SSH, Swagger) |
ceres |
Domain library: transport, application, HTTP DTOs |
jupiter / callisto |
Storage and SeaORM entities |
jupiter-migrate |
Database migrations |
orion / orion-server / orion-scheduler |
Build orchestration |
saturn |
Cedar policy |
vault |
Crypto and secrets |
moon |
Frontend (TypeScript) |
See docs/architecture.md for the full workspace map.
Coding style & quality
- Run rustfmt defaults.
- Treat clippy warnings as errors for new/changed code; prefer #[must_use], #[deny(unsafe_op_in_unsafe_fn)] where appropriate.
- Return Result<T, E>; avoid unwrap()/expect() in library code except in tests or when invariant-proofed and documented.
- Prefer iterator and slice APIs to heap-allocating vectors in hot paths. Use SmallVec, bytes, or no_std-friendly patterns when beneficial.
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 · 117 lines · 1,330 tokens per session scan A a24f82f0427e
mega copilot-instructions.md is an instructions file published in the GitHub repository gitmono-dev/mega (507 stars, last pushed 3d ago), licensed Apache-2.0. It adds 1,330 tokens to every session, about $0.0066 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
crates.io AGENTS.md
Instructions for rust-lang/crates.io, covering crates.io, repository layout, general guidance, backend and building and running.
freya AGENTS.md
Instructions for marc2332/freya, covering agents, commands, architecture, rust and general instructions.
rustzen-admin AGENTS.md
Instructions for idaibin/rustzen-admin, covering repository rules, source of truth, reading order, boundaries and working rules.
freya CLAUDE.md
Instructions for marc2332/freya, a project described as: Cross-platform and non-web GUI library for 🦀 Rust powered by 🎨 Skia.
maui uitests.instructions.md
Instructions for dotnet/maui, covering ui testing guidelines for .net maui, ui test structure, two-project requirement, base class and infrastructure and naming conventions.
maui performance-hotpaths.instructions.md
Instructions for dotnet/maui, covering performance-critical path rules, hot paths in maui, allocation avoidance, caching and invalidation and collection iteration.