Browse Loops 浏览循环

EN: Search loops by name, tag, category, or agent. Copy the kickoff and let your agent self-pace until the exit condition is met.

ZH: 按名称、标签、类别或代理搜索循环。复制启动提示,让你的代理自动执行直到退出条件满足。

Testing 测试 Manual 手动 Hardened 强化

Test Until Green 测试直到通过

EN: Run your test suite, fix the smallest root cause on failure, and repeat until every test passes.

ZH: 运行测试套件,失败时修复最小根本原因,重复直到所有测试通过。

Max 最大迭代: 10 Check 检查: npm test
Cursor Claude Code
Testing 测试 Manual 手动 Hardened 强化

Build Until Green 构建直到成功

EN: Run the production build, fix compile and bundling errors, and loop until the build succeeds.

ZH: 运行生产构建,修复编译和打包错误,循环直到构建成功。

Max 最大迭代: 10 Check 检查: npm run build
Cursor Claude Code
CI Interval 间隔

CI Failure Watcher CI 失败监控

EN: Poll CI on an interval, investigate failures when checks go red, and push fixes until green.

ZH: 轮询 CI,当检查变红时调查失败,推送修复直到通过。

Max 最大迭代: 12 Check 检查: gh run list
Cursor Claude Code
Testing 测试 Manual 手动 Hardened 强化

Coverage Until Threshold 覆盖率达标

EN: Add focused tests until coverage meets your threshold (e.g. 80%), without changing production behavior unnecessarily.

ZH: 添加针对性测试直到覆盖率达标(如 80%),不改变生产行为。

Max 最大迭代: 12 Check 检查: npm test --coverage
Claude Code Cursor
Review 代码审查 Manual 手动

De-Sloppify Pass 清理代码

EN: After implementation, run a cleanup pass: remove debug code, tighten naming, delete dead branches, and align with project conventions.

ZH: 实现后运行清理:移除调试代码,收紧命名,删除死分支,对齐项目约定。

Max 最大迭代: 4 Check 检查: npm run lint && npm test
Claude Code Cursor
DevOps Manual 手动

Deploy Verification 部署验证

EN: Verify all post-deploy health and smoke endpoints return success.

ZH: 部署后验证所有健康和烟雾端点返回成功。

Max 最大迭代: 8 Check 检查: curl -fsS
Cursor Claude Code
CI GitHub

Fix CI Until Green 修复 CI 直到通过

EN: Find the latest failed CI run, read logs, reproduce locally, fix root cause, push, and verify.

ZH: 找到最新失败的 CI 运行,读取日志,本地复现,修复根本原因,推送并验证。

Max 最大迭代: 8 Check 检查: gh run list
Cursor Claude Code
CI Manual 手动

Ship PR Until Green 提交 PR 直到通过

EN: Implement on a branch, run tests, push, open a PR, wait for CI, and loop until checks pass and the PR is ready to merge.

ZH: 在分支上实现,测试,推送,打开 PR,等待 CI,循环直到检查通过且 PR 可合并。

Max 最大迭代: 10 Check 检查: gh pr checks
Claude Code Cursor Codex
Planning 规划 Manual 手动

Spec-First Ship 规格优先实现

EN: Implement from a written spec.md checklist — each iteration completes one unchecked requirement with verification.

ZH: 从 spec.md 检查列表实现——每次迭代完成一个未勾选的需求并验证。

Max 最大迭代: 15 Check 检查: npm test
Claude Code Cursor Codex