# Agent Tasks Registry # Location: .agent-state/tasks.yaml # # This file tracks all tasks claimed by agents. # Agents must claim tasks before modifying associated files. version: "1.0" updated_at: "2025-01-29T00:00:00Z" # Task Status Values: # - pending: Available for claiming # - in_progress: Currently being worked on # - completed: Work finished successfully # - abandoned: Work stopped, task available for reclaiming # - blocked: Waiting on dependencies tasks: [] # Example task entry: # # tasks: # - id: "TASK-001" # description: "Implement new feature" # agent: "claude" # status: "in_progress" # priority: "high" # files: # - "src/feature.py" # - "tests/test_feature.py" # depends_on: [] # created_at: "2025-01-29T09:00:00Z" # claimed_at: "2025-01-29T09:30:00Z" # expires_at: "2025-01-29T13:30:00Z" # completed_at: null # # - id: "TASK-002" # description: "Write API documentation" # agent: null # status: "pending" # priority: "medium" # files: # - "docs/api.md" # depends_on: # - "TASK-001" # created_at: "2025-01-29T10:00:00Z" # claimed_at: null # expires_at: null # completed_at: null