Community生产力与协作github.com

thanhnam2811/ag-flow

Adaptive, agent-agnostic workflow skills for efficient coding-agent orchestration, delegation, and verification

ag-flow 是什么?

ag-flow is a Claude Code agent skill that adaptive, agent-agnostic workflow skills for efficient coding-agent orchestration, delegation, and verification.

兼容平台~Claude Code~Codex CLI~Cursor
npx skills add thanhnam2811/ag-flow

Installed? Explore more 生产力与协作 skills: steipete/gemini, steipete/gh-issues, steipete/skill-creator · View all 6 →

在你喜欢的 AI 中提问

打开一个已预加载此 Agent Skill 的新对话。

文档

Implementation Planning

Plan only to the depth needed to execute safely.

Plan contract

For each meaningful step capture:

  • outcome
  • owned files or subsystem
  • dependencies on earlier steps
  • interfaces/contracts that must remain stable
  • invariants and constraints
  • acceptance criteria
  • verification method

Rules

  • Base plans on repository evidence, not generic architecture patterns.
  • Separate required work from optional cleanup.
  • Prefer dependency order over arbitrary file order.
  • Identify shared files and integration boundaries before parallelizing.
  • Make hidden assumptions explicit when they can change implementation.
  • Keep plans compact enough to remain useful during execution.

Simplicity gate

Before adding complexity, check in order:

  1. Can this requirement be omitted because it isn't actually needed?
  2. Does the repository, stdlib, or platform already provide it?
  3. Can an existing abstraction be extended instead of adding a new one?
  4. Is a new abstraction/config/dependency justified by more than one real use case now?
  5. Can the same behavior ship with a smaller diff?

Simplicity is a constraint after correctness, acceptance criteria, compatibility, and safety — never cut necessary robustness just to shrink the diff.

Decide whether to delegate

A multi-step plan does not automatically justify multiple agents. Delegate only when work packages can be isolated with explicit ownership and the coordination cost is lower than sequential execution.

For complex parallel work, hand the validated plan to agf-dispatch-package.

相关技能