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/xintaofei/codeg/agents-mdgit clone --depth 1 https://github.com/xintaofei/codegWhat 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.01625 | $0.01625 |
| Opus 5 | $0.00813 | $0.00813 |
| Sonnet 5 | $0.00325 | $0.00325 |
| Haiku 4.5 | $0.00162 | $0.00162 |
Grade A, and why
codeg 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 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- codeg CLAUDE.md — 98% identical, 4 lines differ
How it starts
The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file provides guidance to Code Agent when working with code in this repository.
项目概述
Codeg(Code Generation)是一个多智能体编码工作台,它将多个智能体(Claude Code、Codex CLI、OpenCode、Gemini CLI、OpenClaw、Cline 等)统一到一个工作区中,支持会话聚合和多智能体协作,支持桌面安装,服务器/Docker 部署。
技术栈
- 桌面运行时: Tauri 2(Rust 后端 + webview 前端)
- 服务器运行时: 独立 Rust 二进制(Axum HTTP + WebSocket)
- 前端: Next.js 16(静态导出模式)+ React 19 + TypeScript(strict)
- 样式: Tailwind CSS v4 + shadcn/ui(radix-maia 风格)
- 国际化: next-intl
- 数据库: SeaORM + SQLite
- 包管理器: pnpm
代码检查与测试(任务完成后进行必要的检查)
前端
pnpm eslint . # lint
pnpm test # vitest 全跑(CI 用同一条命令)
pnpm test:watch # 开发时增量重跑
pnpm test:coverage # 覆盖率报告(输出到 coverage/index.html)
pnpm build # 静态导出构建
后端 Rust(在 src-tauri/ 目录下执行)
# 桌面模式(默认 feature)
cargo check
cargo test --features test-utils
cargo clippy --all-targets --features test-utils -- -D warnings
# 服务器模式
cargo check --no-default-features --bin codeg-server
cargo test --no-default-features --bin codeg-server --lib
cargo clippy --no-default-features --bin codeg-server --lib -- -D warnings
# codeg-mcp 协作伴生进程(多智能体委托)
cargo check --no-default-features --bin codeg-mcp
cargo clippy --no-default-features --bin codeg-mcp -- -D warnings
# 解析器快照评审(输出变化时)
cargo insta review
INSTA_UPDATE=auto cargo test --features test-utils # 自动写新 .snap
架构
双模式运行
项目通过 Cargo feature flags 支持三种二进制:
codeg(tauri-runtime,默认):完整桌面应用,包含 Tauri 窗口管理、系统通知、自动更新等codeg-server(无 feature,--no-default-features):独立服务器模式,仅编译 Axum HTTP API + WebSocketcodeg-mcp(无 feature):per-launch stdio MCP 伴生进程,被注入到代理 CLI 的 MCP 配置中,向 LLM 暴露异步子智能体委托工具。
共享核心
app_state.rs—AppState共享状态结构,两种模式通过EventEmitter枚举区分事件发射方式web/event_bridge.rs—EventEmitter::Tauri(AppHandle)或EventEmitter::WebOnly(Arc<WebEventBroadcaster>)web/router.rs— Axum 路由,接受Arc<AppState>web/handlers/— HTTP API 端点,全部使用Extension<Arc<AppState>>
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 · 122 lines · 1,625 tokens per session scan A b211a60e816d
codeg AGENTS.md is an instructions file published in the GitHub repository xintaofei/codeg (3,066 stars, last pushed 3d ago), licensed Apache-2.0. It adds 1,625 tokens to every session, about $0.0081 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
intelligent-terminal agent-skills.instructions.md
Guidelines for creating high-quality Agent Skills for GitHub Copilot.
intelligent-terminal localization.instructions.md
Instructions for microsoft/intelligent-terminal, covering localization instructions for .resw resource files, components with localized resources, locale categories, authoritative locale list (from terminalapp) and adding or updating localized strings.
intelligent-terminal rust-localization.instructions.md
Instructions for microsoft/intelligent-terminal, covering localization instructions for rust wta (yaml locale files), file structure, file format, the en-us.yml source file and non-translatable token rules.
intelligent-terminal copilot-instructions.md
Instructions for microsoft/intelligent-terminal, covering copilot instructions for windows terminal, build, running, test and code formatting.
intelligent-terminal instructions.instructions.md
Guidelines for creating high-quality custom instruction files for GitHub Copilot.
intelligent-terminal AGENTS.md
Instructions for microsoft/intelligent-terminal, covering intelligent terminal, architecture, supported agents and settings, user-facing behavior and key files.