Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

agent-first-repoAgent 第一回购协议

Agent Skill

agent-first-repo 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

588

周安装

25

GitHub Stars

公开资料未说明

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-first-repo(Agent 第一回购协议)
来源仓库:https://github.com/caidanw/skills
仓库路径:skills/agent-first-repo
安装命令:
npx skills add https://github.com/caidanw/skills --skill agent-first-repo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/caidanw/skills --skill agent-first-repo

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态和变更进行整理。

  • 适用于代码库结构设计和 AI 代理友好型仓库搭建,提供分层文档架构。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限范围和是否触发文件读写。
  • 建议在安装前检查维护状态和命令执行边界,避免越权操作。
  • agent-first-repo 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Agent-First Repository Design

Patterns for structuring a repository so AI coding agents can do effective, autonomous work. Based on OpenAI's harness engineering approach: https://openai.com/index/harness-engineering/

The core insight: if the agent can't see it in the repo, it doesn't exist. Knowledge in Slack, Google Docs, or people's heads is invisible to agents. The repository must be the single source of truth.

The Knowledge Hierarchy

A well-structured agent-first repo follows a layered documentation architecture:

AGENTS.md                    ~100 lines — table of contents, dev commands
ARCHITECTURE.md              codemap with boundaries and invariants
docs/
├── design-docs/
│   ├── index.md             catalogue of all design docs with status
│   ├── core-beliefs.md      agent-first operating principles
│   └── [feature-name].md    individual design documents
├── exec-plans/
│   ├── active/              in-progress execution plans
│   ├── completed/           finished plans (kept for context)
│   └── tech-debt-tracker.md known debt, prioritized
├── product-specs/
│   ├── index.md             catalogue of product specs
│   └── [feature-name].md    individual specs with acceptance criteria
├── references/
│   ├── [library]-llms.txt   LLM-friendly reference docs for key deps
│   └── [topic].md           reference material agents may need
├── generated/
│   └── db-schema.md         auto-generated from source of truth
├── DESIGN.md                design system and patterns
├── FRONTEND.md              frontend conventions
├── PLANS.md                 current priorities and roadmap
├── QUALITY_SCORE.md         quality grades per domain/layer
├── RELIABILITY.md           uptime, error budgets, SLOs
└── SECURITY.md              security model and boundaries

Not every project needs all of this. Start with AGENTS.md + ARCHITECTURE.md and grow the docs/ tree as the project demands it.

The Three Pillars

1. Agent Legibility

Optimize the codebase for the agent's ability to reason about it, not human aesthetics.

Prefer boring, composable technology. Technologies with stable APIs, good documentation, and broad representation in training data are easier for agents to model. "Boring" is a feature, not a limitation.

Inline over opaque. Sometimes reimplementing a small subset of functionality is better than depending on an opaque library the agent can't reason about. If the agent can read, test, and modify the code directly, it has more leverage than if it's calling into a black box.

Structured over unstructured. Typed boundaries, structured logging, schema-validated configs. Everything the agent interacts with should be queryable and parseable.

Parse data at system boundaries into precise types — don't let raw/untyped data flow deep into business logic. For the full treatment, see the parse-dont-validate skill.

Everything in the repo. Design decisions, architectural rationale, product context, quality assessments — if it matters, it's a versioned markdown file checked into the repo. The moment a Slack thread resolves an architectural question, the conclusion goes into a design doc.

2. Progressive Disclosure

Agents should start with minimal context and drill deeper as needed. Don't dump everything into one file or into the initial prompt.

See references/progressive-disclosure.md for the full pattern, including directory structure, indexing, and cross-linking strategies.

3. Mechanical Enforcement

Encode architectural rules as linters and tests, not prose. Prose gets ignored; CI failures don't. When documentation falls short, promote the rule into code.

See references/mechanical-enforcement.md for patterns including custom linters with remediation messages, structural dependency tests, and layer architecture enforcement.

Entropy Management

Agent-generated code drifts. Agents replicate existing patterns — including bad ones. Without active maintenance, the codebase accumulates inconsistency and technical debt faster than a human-only codebase would.

See references/entropy-management.md for the golden principles pattern, recurring cleanup cadence, and quality scoring approach.

Companion Skills

This skill focuses on repository structure and documentation architecture. For specific topics, load these companion skills:

TopicSkillWhat It Covers
Writing AGENTS.mdagents-mdStructure, sections, anti-patterns for the entry point file
Architecture docsarchitecture-mdCodemap with boundaries, invariants, cross-cutting concerns
Type-driven boundariesparse-dont-validateParsing at boundaries, making illegal states unrepresentable

Quick Reference

NeedWhere to Look
Agent entry point fileagents-md skill
Architecture codemaparchitecture-md skill
Layer docs for agents to drill intoprogressive-disclosure.md
Enforcing rules via linters/CImechanical-enforcement.md
Preventing codebase driftentropy-management.md
Typing boundariesparse-dont-validate skill

Workflow: Setting Up an Agent-First Repo

For a new project:

  1. Create AGENTS.md — dev commands, repo structure, boundaries (~100 lines)
  2. Create ARCHITECTURE.md — bird's eye view, codemap, cross-cutting concerns
  3. Set up docs/ with at minimum design-docs/index.md and core-beliefs.md
  4. Add mechanical enforcement — linter for dependency directions, structural tests
  5. Establish quality scoring — grade each domain/layer, track in QUALITY_SCORE.md
  6. Set up entropy management — recurring cleanup cadence, golden principles doc

For an existing project:

  1. Write AGENTS.md starting from what's in CI config and CONTRIBUTING.md
  2. Write ARCHITECTURE.md by exploring the codebase (use the architecture-md skill)
  3. Identify the top 3 architectural rules agents violate — encode as lints or tests
  4. Move critical design context from Slack/docs/wikis into versioned repo files
  5. Start a QUALITY_SCORE.md to track known gaps per module

Anti-Patterns

  • Knowledge lives outside the repo — Slack threads, Google Docs, wikis, Notion pages. If the agent can't cat it, it doesn't exist.
  • One giant AGENTS.md — Monolithic instruction files crowd out actual task context. Use progressive disclosure.
  • Rules as prose only — "Don't import from the API layer in workers" is ignored. A lint that fails CI is not.
  • No quality tracking — Without explicit grades, drift is invisible until it's painful.
  • Manual cleanup Fridays — Doesn't scale. Encode golden principles and automate scanning.
  • Opaque dependencies — Libraries the agent can't read, test, or modify reduce leverage. Prefer transparent, in-repo code for critical paths.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.32%
按下载量换算75

Claude

30.09%
按下载量换算62

Cursor

20.29%
按下载量换算42

Gemini CLI

8.91%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills