vlclaw-worker-spec.json 550 B

1234567891011121314151617181920212223
  1. {
  2. "version": "3.16",
  3. "name": "VLClawSpecWorker",
  4. "description": "Minimal worker workflow used by the VLClaw supervisor prototype. Consumes top-level params and writes a deterministic artifact.",
  5. "steps": [
  6. {
  7. "id": "Set_010_Content",
  8. "target": "$content",
  9. "value": "=\"SPEC:\" + goal",
  10. "next": "Write_020_File"
  11. },
  12. {
  13. "id": "Write_020_File",
  14. "target": "=artifactPath",
  15. "value": "=$content",
  16. "mode": "overwrite",
  17. "next": "Stop_End"
  18. },
  19. {
  20. "id": "Stop_End"
  21. }
  22. ]
  23. }