autopilot-predict

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese
Predict what to work on next using Ruflo autopilot intelligence:
  1. Call
    mcp__claude-flow__autopilot_predict
    for the recommended next action
  2. If confidence > 0.7, execute the prediction directly
  3. If confidence < 0.7, check
    mcp__claude-flow__autopilot_progress
    for task breakdown
  4. Pick the highest-priority incomplete task
  5. After completing work, call
    mcp__claude-flow__autopilot_learn
    to update patterns
利用Ruflo自动驾驶智能预测下一步工作内容:
  1. 调用
    mcp__claude-flow__autopilot_predict
    获取推荐的下一步行动
  2. 若置信度>0.7,直接执行预测结果
  3. 若置信度<0.7,查看
    mcp__claude-flow__autopilot_progress
    获取任务分解详情
  4. 选择优先级最高的未完成任务
  5. 完成工作后,调用
    mcp__claude-flow__autopilot_learn
    更新模式

Learning Pipeline

学习流程

  • mcp__claude-flow__autopilot_learn
    -- discover success patterns from completed tasks
  • mcp__claude-flow__autopilot_history({ query: "KEYWORD" })
    -- search past completions
  • Patterns are stored in AgentDB for cross-session recall
  • mcp__claude-flow__autopilot_learn
    -- 从已完成任务中发现成功模式
  • mcp__claude-flow__autopilot_history({ query: "KEYWORD" })
    -- 搜索过往完成记录
  • 模式存储在AgentDB中,用于跨会话调用

Integration with /loop

与/loop的集成

When running inside a
/loop
, the predict skill guides each iteration:
  • High confidence prediction -> execute immediately
  • Low confidence -> fall back to task list priority order
  • No tasks remaining -> disable autopilot and exit loop
在/loop中运行时,预测技能会指导每一次迭代:
  • 高置信度预测 -> 立即执行
  • 低置信度 -> 退回至任务列表优先级顺序
  • 无剩余任务 -> 禁用自动驾驶并退出循环