Files
archon/.claude/commands/agent-work-orders/classify_adw.md
Rasmus Widing 9a60d6ae89 sauce aow
2025-10-16 19:17:18 +03:00

1.0 KiB

ADW Workflow Extraction

Extract ADW workflow information from the text below and return a JSON response.

Instructions

  • Look for ADW workflow commands in the text (e.g., /adw_plan, /adw_test, /adw_build, /adw_plan_build, /adw_plan_build_test)
  • Look for ADW IDs (8-character alphanumeric strings, often after "adw_id:" or "ADW ID:" or similar)
  • Return a JSON object with the extracted information
  • If no ADW workflow is found, return empty JSON: {}

Valid ADW Commands

  • /adw_plan - Planning only
  • /adw_build - Building only (requires adw_id)
  • /adw_test - Testing only
  • /adw_plan_build - Plan + Build
  • /adw_plan_build_test - Plan + Build + Test

Response Format

Respond ONLY with a JSON object in this format:

{
  "adw_slash_command": "/adw_plan",
  "adw_id": "abc12345"
}

Fields:

  • adw_slash_command: The ADW command found (include the slash)
  • adw_id: The 8-character ADW ID if found

If only one field is found, include only that field. If nothing is found, return: {}

Text to Analyze

$ARGUMENTS