workflow.json 450 B

12345678910111213141516
  1. {
  2. "description": "全自动开发闭环工作流 Agent - 基于状态机+Hook驱动五步Agent(规格/计划/实施/验证/总控)",
  3. "allowedTools": ["fs_read"],
  4. "toolsSettings": {
  5. "fs_read": {
  6. "allowedPaths": ["./**"]
  7. },
  8. "fs_write": {
  9. "allowedPaths": ["./workflow_engine/**"]
  10. },
  11. "execute_bash": {
  12. "allowedCommands": ["python3 workflow_engine/runner.py.*"],
  13. "autoAllowReadonly": true
  14. }
  15. }
  16. }