-
-
Notifications
You must be signed in to change notification settings - Fork 202
Add first-class workflow profiles: delivery and co-creation #106
Description
Problem statement
Overstory seems optimized today for execution-oriented orchestration, which works very well for well-scoped implementation tasks.
I would like to propose first-class support for two workflow profiles:
delivery
For tasks where the solution is already known or tightly specified:
bug fixes
focused features
targeted refactors
In this mode, the human should not need to stay in the loop during execution. The system should optimize for:
autonomous execution
strong quality gates
tests, review, docs
escalation only on ambiguity, risk, or unexpected blast radius
co-creation
For larger, more open-ended work where the best solution emerges during the process:
building a product/site from scratch
architecture/design work
major UX or product direction efforts
In this mode, the human should stay in the loop at explicit decision points. The system should optimize for:
discovery before implementation
option generation with tradeoffs
milestone reviews
structured human decision gates
Why
These are two different collaboration problems:
some tasks need speed, rigor, and autonomy
others need exploration, iteration, and human judgment
Using the same execution-first orchestration model for both creates friction, especially for open-ended work where discussion and innovation are part of the process, not an exception.
Proposed solution
Possible direction
A workflow profile could influence:
agent prompts
expected artifacts
escalation behavior
whether the default posture is “execute now” or “explore and align first”
whether human approval gates are expected
Examples:
delivery: compact spec, autonomous build/review flow
co-creation: discovery notes, option memos, ADRs, milestone checkpoints, “waiting for human decision” states
This would make Overstory more flexible without reducing its autonomy for implementation-heavy workflows.
Alternatives considered
No response