addyosmani-agent-skills-zh: Instructions file for Codex

AGENTS.md

addyosmani-agent-skills-zh AGENTS.md is an instructions file for Codex, OpenCode from vinvcn/addyosmani-agent-skills-zh. It costs 1,638 tokens per session, scanned A, original, MIT.

Repository instructions for coding agents working with AGENTS.md files, skills, and OpenCode. They describe the repository layout and map common development tasks to skills such as planning, testing, debugging, and code review.

In plain words
What is it for?
Use it when modifying this skills collection, choosing a skill for a development task, or following the repository's OpenCode integration and lifecycle rules.
Why use it?
Agents can otherwise miss the repository's required workflow or use the wrong guidance for a task. The instructions make those expectations explicit.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: reads .claude/ paths; mentions subagents; mentions Claude Code.

This is vinvcn/addyosmani-agent-skills-zh's own configuration. It tells Codex and OpenCode how to work on addyosmani-agent-skills-zh 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 addyosmani-agent-skills-zh configures →

Reuse

Borrowing it

Nothing to install: this file belongs to vinvcn/addyosmani-agent-skills-zh. 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/vinvcn/addyosmani-agent-skills-zh/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/vinvcn/addyosmani-agent-skills-zh

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 addyosmani-agent-skills-zh AGENTS.md

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

Your own site · 80×15
<a href="https://agentmods.dev/instructions/vinvcn/addyosmani-agent-skills-zh/agents-md"><img src="https://agentmods.dev/badge/instructions/vinvcn/addyosmani-agent-skills-zh/agents-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,638 This file is loaded in full into every session.
When invoked 1,638 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.01638 $0.01638
Opus 5 $0.00819 $0.00819
Sonnet 5 $0.00328 $0.00328
Haiku 4.5 $0.00164 $0.00164

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

Security

Grade A, and why

addyosmani-agent-skills-zh 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 11d 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 · 186 lines

How it starts

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

AGENTS.md

本文件为 AI coding agents(Claude Code、Cursor、Copilot、Antigravity 等)在本仓库中处理代码时提供指导。

仓库概览

面向资深软件工程师的 Claude.ai 和 Claude Code skills 集合。Skills 是打包后的 instructions 和 scripts,用于扩展 Claude 以及你的 coding agents 的能力。

OpenCode 集成

OpenCode 使用由 skill tool 和本仓库 /skills 目录驱动的 skill-driven execution model

核心规则

  • 如果任务匹配某个 skill,你 MUST 调用它
  • Skills 位于 skills/<skill-name>/SKILL.md
  • 如果有适用 skill,绝不要直接实现
  • 始终严格遵循 skill instructions(不要只部分应用)

意图 → Skill 映射

Agent 应自动将用户意图映射到 skills:

  • Feature / new functionality → spec-driven-development,然后 incremental-implementationtest-driven-development
  • Planning / breakdown → planning-and-task-breakdown
  • Bug / failure / unexpected behavior → debugging-and-error-recovery
  • Code review → code-review-and-quality
  • Refactoring / simplification → code-simplification
  • API or interface design → api-and-interface-design
  • UI work → frontend-ui-engineering

生命周期映射(隐式命令)

OpenCode 不支持 /spec/plan 这样的 slash commands。

因此,agent 必须在内部遵循这个生命周期:

  • DEFINE → spec-driven-development
  • PLAN → planning-and-task-breakdown
  • BUILD → incremental-implementation + test-driven-development
  • VERIFY → debugging-and-error-recovery
  • REVIEW → code-review-and-quality
  • SHIP → shipping-and-launch

执行模型

对每个请求:

  1. 判断是否有任何 skill 适用(即使只有 1% 可能)
  2. 使用 skill tool 调用合适的 skill
  3. 严格遵循 skill workflow
  4. 仅在完成必需步骤(spec、plan 等)后再进入实现

反合理化

以下想法是错误的,必须忽略:

  • "This is too small for a skill"
  • "I can just quickly implement this"
  • "I’ll gather context first"

正确行为:

  • 始终先检查并使用 skills

这能确保 OpenCode 的行为类似具备完整 workflow enforcement 的 Claude Code。

编排:Personas、Skills 和 Commands

本仓库有三个可组合层。它们职责不同,不应混淆:

  • Skills (skills/<name>/SKILL.md) — 带步骤和退出标准的工作流。即 how。当意图匹配时必须经过。
  • Personas (agents/<role>.md) — 带视角和输出格式的角色。即 who
  • Slash commands (.claude/commands/*.md) — 面向用户的入口点。即 when。编排层。

组合规则:用户(或 slash command)是 orchestrator。Personas 不调用其他 personas。 Persona 可以调用 skills。

本仓库唯一认可的 multi-persona orchestration pattern 是 parallel fan-out with a merge step/ship 会用它并发运行 code-reviewersecurity-auditortest-engineer,再综合它们的报告。不要构建一个决定调用哪些其他 persona 的 "router" persona;这是 slash commands 和 intent mapping 的职责。

Read the full file on GitHub · 186 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. 11d ago First seen · 186 lines · 1,638 tokens per session scan A eec935c19cff

Subscribe to this mod's changes

addyosmani-agent-skills-zh AGENTS.md is an instructions file published in the GitHub repository vinvcn/addyosmani-agent-skills-zh (31 stars, last pushed 4mo ago), licensed MIT. It adds 1,638 tokens to every session, about $0.0082 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

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

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