Add continuum objective one-command workflow#41
Merged
Conversation
Strategy §8.2 / Gap1: Continuum read like a toolkit, not a daily
workflow. `continuum objective "<goal>"` turns one objective into a
coordinated, controlled multi-agent plan by composing existing
primitives -- it adds no new state machine of its own.
- New continuum/objective.py thin planner reuses the route classifier
(TeamManager.classify/explain) for task-type + lane inference and
WorktreeManager.schedule for --mode schedule (overlapping-lane
rejection, dependency edges, file ownership and context packets are
enforced there, not duplicated).
- New `objective` subcommand with --task-type, --agent, --path,
--depends-on, --tests, --review-policy, --mode {plan,schedule},
--execute and --json. Output styled like status/route explain:
plan + lanes + dependency timeline + NEXT COMMANDS.
- plan mode creates tasks + next-commands without worktrees when no
paths are given; schedule mode creates branches/worktrees/packets for
lanes that own paths and task-only for the rest. --execute refuses
gracefully (exit 1, no traceback) when an agent provider is disabled.
- tests/test_objective.py (8 tests) covers plan/schedule/json/overlap/
execute-refusal, reusing the git-identity setUp from test_worktrees.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@-