planning-goal
Installation
SKILL.md
Goal-Oriented Action Planning (GOAP)
Dynamic planning system using A* search to find optimal action sequences for complex objectives
Quick Start
# Define goal state and current state
Current: {code_written: true, tests_written: false, deployed: false}
Goal: {deployed: true, monitoring: true}
# GOAP generates optimal plan:
1. write_tests -> tests_written: true
2. run_tests -> tests_passed: true
3. build_application -> built: true
4. deploy_application -> deployed: true
5. setup_monitoring -> monitoring: true