Summary
- 设计 Loop 中的 Maker-Checker 模式: 用独立 agent 审查产出,避免自产自检。
- 当用户发现 loop 产出质量不稳定、agent 自我评估过于宽容、或需要提升产出可信度时使用。
- 不适用于: 产出可以客观验证 (测试通过/失败) 的任务、或成本极其敏感的场景。
- 关键 trigger:…
kangarooking/loop-engineering-skill · Archived
设计 Loop 中的 Maker-Checker 模式: 用独立 agent 审查产出,避? 当用户发现 loop 产出质量不稳定、agent 自我评估过于宽容、或需要提升产出可信度时使用。 不适用于: 产出可以客观验证 (测试通过/失败) 的任务、或成本极? ?
npx skills add kangarooking/loop-engineering-skill --skill maker-checker
This repository is archived — consider an actively maintained alternative.
评估个人或团队在 AI 工? 当用户想判断"我现在 AI 用得怎么样"、"下一步该学什么"、或团队要做 AI 能…
7 installs判断一个任务是否值得做成 Loop 的四条决策标准。 当用户在纠结"这件事要不要自动化"、"该不该用 loop…
7 installs设计或审计任何循环系统的起点: 将循环拆解为 Trigger(触发器)、Action(动作)、Stop Condition(停止条…
7 installsRelated neighbors and high-traction skills in the same topics — useful to compare before installing.
Find and fix broken or insecure links across an entire site, including CMS content, to improve …
674 installstechnical-seo-checker — an installable skill for AI agents, published by aaron-he-zhu/seo-geo-c…
5.6K installsSystematic fact verification and misinformation identification using evidence-based analysis. U…
3.3K installsCRITICAL: Use for unsafe Rust code review and FFI.
2.7K installsValidate data quality in market analysis documents and blog articles before publication.
1.9K installs표준 한국어 규칙에 기반한 문법, 맞춤법, 띄어쓰기, 구두점 검사기. 맞춤법 오류(되/돼, -ㄴ지/-는지…
1.7K installsOther skills from kangarooking/loop-engineering-skill.
npx skills add kangarooking/loop-engineering-skill
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Files included with this skill beyond the listing page.
SKILL.md
4,906 B
SUMMARY.md
442 B
Original cangjie-skill frontmatter from the distillation run:
name: maker-checker
description: |
设计 Loop 中的 Maker-Checker 模式: 用独立 agent 审查产出,避免自产自检。
当用户发现 loop 产出质量不稳定、agent 自我评估过于宽容、或需要提升产出可信度时使用。
不适用于: 产出可以客观验证 (测试通过/失败) 的任务、或成本极其敏感的场景。
关键 trigger: "agent 自评不准确"、"产出质量不稳定"、"怎么让 agent 审查 agent"。
source_book: "Loop Engineering 视频合集"
source_chapter: 视频2 (Boris Cherny) / 视频3 (小木头)
tags: [maker-checker, verification, quality, separation-of-concerns]
related_skills: [goal-verification, loop-5plus1-architecture, loop-three-elements]
"Don't get agent to self-verify its own work. It just generally didn't work that well."
— Boris Cherny (视频2)
"写代码的那个模型给自己的作业打分,有的时候太宽容了。所以我们需要让另一个agent来挑刺。"
— 小木头 (视频3)
核心规则: 不要让同一个 agent 做事又检查。
Maker-Checker 模式将生产和审查拆分为两个独立 agent:
为什么需要:
案例1: Boris 的代码审查 (视频2)
-Checker: read-only 的 verifier agent,有详细 spec
案例2: 缩略图评分 (视频1)
语言信号: "agent 自评不准确"、"怎么让 agent 审查 agent"、"产出质量不稳定"、"独立审查"
与相邻 skill 的区别:
goal-verification: 关注"验证什么" (标准设计); 本 skill 关注"谁来验证" (角色分工)loop-5plus1-architecture: 完整系统架构 (本 skill 是子智能体层的具体模式)loop-three-elements: 三要素框架 (本 skill 是 action 环节的质量保障)不要使用这个 skill 的场景:
作者的盲点与局限:
与之相邻但容易混淆的方法论: