opencode-simple AGENTS.md

Project instructions for OpenCode Simple, a template for spec-first development, where the intended behavior is written down before code is written. It uses compilation and language-server checks as its main completion checks and includes agents, commands, rules, hooks and scripts.

In plain words
What is it for?
Use it to guide OpenCode projects through specification, planning, compilation-error fixing and verification, with supporting MCP tools such as documentation lookup and language-server diagnostics.
Why use it?
It gives an OpenCode project a defined workflow for planning work and resolving build errors. It also explains which supporting tools and commands the template expects.

Instructions file for CodexOpenCode

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/zhmxiaowo/opencode-simple/agents-md
Clone the repo
git clone --depth 1 https://github.com/zhmxiaowo/opencode-simple

Made for: Codex, OpenCode.

Per session 1,084 This file is loaded in full into every session.
When invoked 1,084 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.01084 $0.01084
Opus 5 $0.00542 $0.00542
Sonnet 5 $0.00217 $0.00217
Haiku 4.5 $0.00108 $0.00108

Measured yesterday against content hash 11e28ae453ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

opencode-simple 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 yesterday.

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 · 87 lines

How it starts

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

AGENTS.md — OpenCode Simple (CDD & Spec-First)

本文件为 OpenCode AI 编程助手提供项目指导。

项目概述

这是一个基于 ECC (Everything Claude Code) 架构的纯粹 CDD(编译驱动开发)& Spec-First 通用编程框架模板。复制到任何项目根目录后即可使用 OpenCode 进行 CDD 驱动的开发。

核心哲学

  • 🚫 绝对禁止 TDD — 不写任何测试代码
  • 📋 Spec 先行 — 无 SPEC.md 不编码
  • ⚙️ 编译驱动 — Exit Code 0 + LSP 0 Error = 任务完成
  • 🧠 Think Before Fix — 编译错误必须用 sequential-thinking 分析

架构

核心组件

  • .opencode/agents/ — 精简的 Agent 团队(planner, architect, build-error-resolver, code-reviewer 等)
  • .opencode/skills/ — 通用工作流知识(CDD 验证、蓝图规划、持续学习 V2 等)
  • .opencode/commands/ — 用户命令(/spec, /plan, /build-fix, /verify, /learn 等)
  • rules/common/ — 永远遵守的准则(CDD 核心、编码风格、安全),通过 opencode.jsonc 的 instructions 字段引入
  • hooks/ — Claude Code 兼容的异步 Hooks(会话持久化、上下文防腐烂、持续学习观测)
  • scripts/ — 跨平台 Node.js 工具脚本

核心 MCP 矩阵(仅 5 个)

MCP 用途
exa-web-search 全网搜索代码和报错
context7 查阅最新官方文档防幻觉
mcp-language-server 本地 LSP 诊断(CDD 核心)
memory 跨会话记忆
sequential-thinking 编译错误链式推理

关键命令

命令 说明
/plan Spec-First + 实施计划: MCP 研究 → SPEC → 步骤分解(编码前必须执行)
/spec /plan 的轻量版,只输出 SPEC 不输出步骤
/build-fix CDD 修复编译错误
/cdd 快速 CDD 编译验证
/verify CDD 全面验证(编译+LSP+AI slop 检查,无测试)
/code-review 代码审查(无测试覆盖率要求)
/handoff 结构化会话交接(CDD 状态、SPEC 进度、决策记录)
/learn 从会话中提取可复用模式
/evolve 将 instincts 进化为 skills/commands

工作流

意图分类 → /plan [功能] → SPEC + 步骤 → 用户确认 → 编码 → /build-fix → /verify → /code-review → /handoff

保留的 ECC 核心机制

  1. V2 本能学习 (Continuous Learning) — 自动从会话中提取编译错误模式
  2. Memory MCP — 跨会话记忆,记录项目上下文
  3. Sequential Thinking — 编译错误时的强制链式推理

禁止事项

  • ❌ 不要编写任何测试文件
  • ❌ 不要引用 Jest/Vitest/pytest 等测试框架
  • ❌ 不要以"缺少测试"为由阻塞代码审查
  • ❌ 不要在没有 SPEC.md 的情况下开始编码
  • ❌ 不要在编译错误时盲目试错(必须先 think)

外部规则引用

CRITICAL: 当你遇到文件引用(如 @rules/common/cdd-core.md),按需使用 Read 工具加载它。这些规则文件与当前任务相关。

核心规则文件:

  • CDD 核心准则: @rules/common/cdd-core.md
  • 编码风格: @rules/common/coding-style.md
  • 开发工作流: @rules/common/development-workflow.md
  • Agent 编排: @rules/common/agents.md
  • 通用模式: @rules/common/patterns.md
  • 安全准则: @rules/common/security.md
  • Git 工作流: @rules/common/git-workflow.md
  • 性能优化: @rules/common/performance.md
  • Hooks 使用: @rules/common/hooks.md

Read the full file on GitHub · 87 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. yesterday First seen · 87 lines · 1,084 tokens per session scan A 11e28ae453ec

Subscribe to this mod's changes

opencode-simple AGENTS.md is an instructions file published in the GitHub repository zhmxiaowo/opencode-simple (2 stars, last pushed 5mo ago), licensed MIT. It adds 1,084 tokens to every session, about $0.0054 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-31.

Related

Other instructions, from other repositories

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,182 tokens

buildNext

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

next.js 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

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

spec-kit 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,040 tokens

langchain 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,345 tokens