Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

compound-engineering复合工程

Agent Skill

compound-engineering 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

公开资料未说明

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:compound-engineering(复合工程)
来源仓库:https://github.com/5dlabs/cto
仓库路径:skills/compound-engineering
安装命令:
npx skills add 5dlabs/cto --skill "compound-engineering"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add 5dlabs/cto --skill "compound-engineering"

简介

compound-engineering 用于复合工程方案设计支持。

  • 适用于多模块集成、系统架构或跨组件协作场景。
  • 通过 npx skills add 5dlabs/cto --skill "compound-engineering" 安装,建议拆分任务逐步验证。
  • 使用前需明确各子系统接口契约和依赖关系。
  • 应预留足够测试覆盖率防止耦合过紧。

SKILL.md

Compound Engineering

A development methodology where each unit of work makes subsequent work easier—not harder.

Core Philosophy

"Each unit of engineering work should make subsequent units of work easier—not harder."

Traditional development accumulates technical debt. Every feature adds complexity. Compound engineering inverts this by creating a learning loop where each bug, failed test, or problem-solving insight gets documented and reused.

The Compound Loop

Plan (40%) → Work (20%) → Review (20%) → Compound (20%)

80% of compound engineering is in planning and review. 20% is in execution.


Phase 1: Plan (40% of effort)

Before writing any code, create a comprehensive plan.

Research Phase

  1. Codebase Analysis: Search for similar patterns, conventions, and prior art
  2. Commit History: Use git log to understand how related features were built
  3. Documentation: Check AGENTS.md files in relevant directories
  4. External Research: Search for best practices relevant to the problem

Plan Structure

# Feature: [Name]

## Context
- What problem does this solve?
- Who is affected?
- Current vs desired behavior?

## Research Findings
- Similar patterns in codebase: [file links]
- Relevant prior implementations: [commit refs]
- Best practices discovered: [references]

## Acceptance Criteria
- [ ] Criterion 1 (testable)
- [ ] Criterion 2 (testable)

## Technical Approach
1. Step 1: [specific action]
2. Step 2: [specific action]

## Risks & Mitigations
- Risk 1: [mitigation]

Phase 2: Work (20% of effort)

Execute the plan systematically.

Execution Workflow

  1. Create isolated environment: Feature branch or worktree
  2. Break into tasks: One task at a time
  3. Validate continuously: Run tests after each change
  4. Commit incrementally: Small, focused commits

Working Principles

  • Follow existing patterns discovered in research
  • Run tests after every meaningful change
  • If something fails, understand WHY before proceeding
  • Keep changes focused—no scope creep

Quality Checks

# After each change:
cargo fmt --all --check    # or npm run lint
cargo clippy --all-targets # or npm run typecheck
cargo test                 # or npm test

Phase 3: Review (20% of effort)

Before completing, perform comprehensive review.

Review Checklist

Code Quality

  • Follows existing codebase patterns and conventions
  • No unnecessary complexity
  • Clear naming that matches project conventions
  • No debug code left behind

Testing

  • Tests cover acceptance criteria
  • Edge cases considered
  • Tests are maintainable, not brittle

Architecture

  • Change is consistent with system design
  • No unnecessary coupling introduced

Multi-Perspective Review

Consider code from different angles:

  • Maintainer: Will this be easy to modify in 6 months?
  • Performance: Any bottlenecks?
  • Security: Any vulnerabilities?
  • Simplicity: Can this be simpler?

Phase 4: Compound (20% of effort)

Capture learnings to make future work easier.

What to Compound

Patterns: Document new patterns discovered

## Pattern: [Name]
When to use: [context]
Implementation: [example]
See: [file reference]

Decisions: Record why approaches were chosen

## Decision: [Choice Made]
Context: [situation]
Options: [alternatives]
Rationale: [why this choice]

Failures: Turn every bug into a lesson

## Lesson: [What Went Wrong]
Symptom: [observed]
Root cause: [actual problem]
Fix: [solution]
Prevention: [how to avoid]

Where to Codify Learnings

TypeLocationDuration
Feature-specific contextprogress.txtCurrent feature only
Permanent patternsAGENTS.mdForever
Code-level gotchasInline commentsWith the code
Regression preventionTest casesForever

Task Discovery (During Work)

Liberally create new tasks when you discover issues during implementation.

What Triggers a New Task

DiscoveryAction
Failing test or test gapCreate task: "Write tests for X"
Code needing refactoringCreate task: "Refactor Y for clarity"
Missing error handlingCreate task: "Add error handling for Z"
Documentation gapCreate task: "Document A module"
TODOs or FIXMEs in codeCreate task with specific fix
Build/lint warningsCreate task: "Fix linting in B"
Performance issuesCreate task: "Optimize C operation"

How to Create Tasks

Use the Linear API or MCP tools to create immediately:

Create task:
- Title: "Fix: [specific issue]"
- Description: "[What you found, why it matters]"
- Dependencies: Set appropriately
- Agent: Same service agent that found it

Do NOT batch for later. Create the task when you discover the issue, then continue your current work.

Compounding Questions

After completing work, ask:

  • What did I learn that others should know?
  • What mistake can be prevented?
  • What pattern did I discover or create?
  • What decision was made and why?

Document in appropriate location so future work benefits.


Memory Architecture

Short-Term Memory: progress.txt

For the current feature only. Reset between features.

# Progress Log
Started: [date]
Feature: [name]
Parent Task: [parent-task-id]

## Codebase Patterns  ← SCANNED FIRST EACH ITERATION
- Pattern 1 discovered
- Pattern 2 discovered

---
## [Date] - [Task]
- What was implemented
- Files changed
- Learnings for future iterations

Long-Term Memory: AGENTS.md

Permanent learnings that anyone should know.

## Learnings

### [Category]
- Pattern: [description]
- Gotcha: [what to avoid]
- Dependency: [what relies on what]

Rule: If it only matters for this feature → progress.txt. If anyone editing this code should know → AGENTS.md.


Progress Archiving (Feature Boundaries)

When starting a new feature, archive the previous progress.txt.

When to Archive

  • Starting work on a different parent task
  • Parent task ID in progress.txt differs from current task
  • Previous feature is complete

Archive Process

# 1. Check if progress.txt has content from previous feature
cat progress.txt

# 2. If different feature, archive it
DATE=$(date +%Y-%m-%d)
FEATURE="previous-feature-name"
mkdir -p archive/$DATE-$FEATURE
mv progress.txt archive/$DATE-$FEATURE/

# 3. Create fresh progress.txt
cat > progress.txt << 'EOF'
# Progress Log
Started: [today's date]
Feature: [new feature name]
Parent Task: [new-parent-task-id]

## Codebase Patterns
(Patterns discovered during this feature - copy relevant ones from archive)

---
EOF

# 4. Commit the archive
git add archive/ progress.txt
git commit -m "chore: archive progress for [previous-feature]"

Preserving Valuable Patterns

When resetting progress.txt:

  1. Review the archived "Codebase Patterns" section
  2. Copy patterns that are still relevant to the new progress.txt
  3. Do NOT copy task-specific entries (those belong in archive)

Why Archive?

  • Fresh context prevents tunnel vision
  • Each feature starts clean
  • Valuable patterns preserved, noise discarded
  • Easy to reference past feature learnings

Success Metrics

You're doing compound engineering well when:

  • Each feature takes less effort than the last similar feature
  • Bugs become one-time events (documented and prevented)
  • New work can be started quickly (patterns are established)
  • Code reviews surface fewer issues (patterns are followed)
  • Technical debt decreases over time

Iron Law

DOCUMENT BEFORE MOVING ON

If you learned something, write it down before starting the next task.


Quick Reference

PhaseTimeKey Activities
Plan40%Research, find patterns, write plan
Work20%Execute plan, validate continuously
Review20%Multi-perspective check, quality gates
Compound20%Document patterns, decisions, lessons

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

27.84%
按下载量换算30

windsurf

25.39%
按下载量换算27

trae

17.88%
按下载量换算19

OpenCode

13.38%
按下载量换算14

Codex

8.47%
按下载量换算9

Antigravity

3.31%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills