ooda-loop 1.0.0

OODA Loop — autonomous coding orchestrator (Ollama/Grok review, codebuff/aider/ollama coding)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# OODA Task Queue — Example
# Copy to tasks.yaml to use: cp tasks.example.yaml tasks.yaml
#
# Tasks are processed in order. The reviewer can append new tasks during review.
# Status: pending | running | done | failed

- id: task-1
  description: "Implement user authentication with JWT tokens"
  context: "New Express.js API. Use bcrypt for password hashing. Store users in SQLite."
  status: pending

- id: task-2
  description: "Add rate limiting middleware"
  context: "Depends on task-1. Limit to 100 req/min per IP. Use express-rate-limit."
  status: pending