Help us improve
Share bugs, ideas, or general feedback.
From claude-commands
Parses a goal statement, extracts measurable success criteria, and saves them to a file without executing. Use to define goals for later execution.
npx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:goalexec-defineThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Define a goal with measurable success criteria and save it, without starting any execution loop. Use when you want to define a goal and hand off execution separately.
Defines goals with measurable success criteria and runs an autonomous convergence loop until goals are met or limits reached.
Creates a goal frame with success evidence, stop conditions, and routing for Aegis task execution. Useful when defining task boundaries before work.
Executes durable, contract-driven goals with checkpoint validation and judge-gated completion. Useful for multi-turn autonomous tasks that need structured progress tracking.
Share bugs, ideas, or general feedback.
Define a goal with measurable success criteria and save it, without starting any execution loop. Use when you want to define a goal and hand off execution separately.
/goalexec_define "Fix the rewards latency issue"
goals/.current-goal (flat file, single active goal):
# Goal
<original statement>
## Success Criteria
1. <criterion>
2. <criterion>
...
Does NOT start any loop or cron. Use /goalexec to define AND execute.
| Goal phrase | Criterion |
|---|---|
| "Create X" | X exists with correct content |
| "Fix Y" | Y no longer fails |
| "PR merged" | PR state = MERGED |
| "All tests pass" | Test exit code = 0 |
| "Implement Z" | Z works as specified |