cook-fast

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese
Start working on these tasks immediately with minimal planning: <tasks>$ARGUMENTS</tasks>
Mode: FAST - Skip research, minimal planning, trust your knowledge.
立即着手处理以下任务,只需极简规划: <tasks>$ARGUMENTS</tasks>
模式: FAST - 跳过调研,极简规划,依托已有知识开展工作。

⚠️ Anti-Hallucination Reminder

⚠️ 防幻觉提醒

Before modifying ANY code: Verify assumptions with actual code evidence. Search for usages, read implementations, trace dependencies. If confidence < 90% on any change, investigate first or ask user. See
.claude/skills/shared/anti-hallucination-protocol.md
for full protocol.
在修改任何代码之前: 用实际代码证据验证假设。搜索用法、阅读实现代码、追踪依赖关系。如果对任何修改的置信度低于90%,请先调研或询问用户。完整协议请查看
.claude/skills/shared/anti-hallucination-protocol.md

Workflow

工作流

  1. Quick Planning (skip research phase)
    • Analyze task requirements directly
    • Create minimal todo list with
      TodoWrite
    • NO researcher subagents, NO scout commands
  2. Rapid Implementation
    • Use
      /code
      directly on tasks
    • Skip multi-step planning documents
    • Focus on working code over documentation
  3. Quick Validation
    • Run type-check and compile
    • Manual spot-check over full test suite
    • Skip code-reviewer subagent
  4. Commit (optional)
    • Ask user if ready to commit via
      AskUserQuestion
    • If yes, use
      /commit
  1. 快速规划(跳过调研阶段)
    • 直接分析任务需求
    • 使用
      TodoWrite
      创建极简待办事项列表
    • 不使用调研子代理,不执行侦察命令
  2. 快速实现
    • 直接对任务使用
      /code
      命令
    • 跳过多步骤规划文档
    • 优先保证代码可运行,而非文档完善
  3. 快速验证
    • 运行类型检查与编译
    • 手动抽查,而非完整测试套件
    • 跳过代码评审子代理
  4. 提交(可选)
    • 通过
      AskUserQuestion
      询问用户是否准备好提交
    • 若用户同意,使用
      /commit
      命令

When to Use

适用场景

  • Simple features with clear requirements
  • Bug fixes with known solutions
  • Refactoring tasks
  • When user says "just do it"
  • 需求明确的简单功能开发
  • 已有已知解决方案的Bug修复
  • 代码重构任务
  • 用户要求"直接动手"时

Trade-offs

权衡对比

AspectFast ModeFull Mode
ResearchSkippedMultiple agents
PlanningMinimalFull plan docs
TestingQuick checkFull test suite
ReviewSkippedCode-reviewer
Speed~2x fasterThorough
维度快速模式完整模式
调研环节跳过多协作代理参与
规划环节极简完整规划文档
测试环节快速抽查完整测试套件
评审环节跳过代码评审代理参与
执行速度约快2倍全面细致

IMPORTANT Task Planning Notes

重要任务规划注意事项

  • Always plan and break many small todo tasks
  • Always add a final review todo task to review the works done at the end to find any fix or enhancement needed
  • 始终将任务拆解为多个小型待办事项
  • 始终添加一个最终评审待办事项,在最后检查已完成工作,找出需要修复或优化的内容