Skip to content

Collaboration

Flow-Next maps agentic work to concrete handovers so teams can review each stage independently.

flowchart LR
  Idea["Idea"] --> Capture["capture or interview"]
  Capture --> Plan["plan"]
  Plan --> Work["work"]
  Work --> Impl["impl-review"]
  Impl --> Completion["spec-completion-review"]
  Completion --> PR["make-pr"]
  PR --> Feedback["resolve-pr"]
  Feedback --> Merge["merge"]
  • Product owner fills the business layer.
  • Tech lead fills technical constraints and validates the plan.
  • Implementing agent runs tasks.
  • Reviewer reads PR cognitive aid before diff.
  • Maintainer audits memory and decisions after merge.
RoleOwnsFlow-Next surface
PO / PMUser problem, success criteria, non-goals/flow-next:interview --scope=business
Tech leadArchitecture, constraints, plan shape/flow-next:interview --scope=technical, /flow-next:plan-review
ImplementerFocused task execution and evidence/flow-next:work fn-N
ReviewerRisk, quality, merge confidence/flow-next:impl-review, /flow-next:make-pr
MaintainerMemory, strategy, changelog, docs/flow-next:audit, docs updates

One person can hold multiple roles. The point is to make which hat is active visible.

Terminal window
/flow-next:capture
/flow-next:interview fn-1 --scope=business
/flow-next:interview fn-1 --scope=technical --strategy --docs
/flow-next:plan-review fn-1
/flow-next:plan fn-1
/flow-next:work fn-1
/flow-next:impl-review fn-1
/flow-next:spec-completion-review fn-1
/flow-next:make-pr fn-1

The business pass can be run by a product person with engineering present. The technical pass should be run by an engineer who knows the codebase. The plan and implementation reviews should use a different model or review backend from the one doing the writing when possible.

Flow-Next works best when product does not hand agents vague tickets. Product should give the spec enough shape that engineering can validate it:

  • target user or operational actor
  • observable behavior
  • acceptance criteria
  • non-goals
  • risks or compliance constraints
  • rollout expectations

Engineering then adds:

  • architecture boundaries
  • data and API contracts
  • migration and compatibility notes
  • test evidence
  • known risky files

The shared artifact is still one spec. Product and engineering are editing different layers of the same thing.

PhaseDelegateReviewOwn
SpecAgent drafts from conversationPO reviews meaningPO owns outcome
PlanAgent maps to codebaseTech lead reviews feasibilityTech lead owns approach
BuildWorker executes tasksReview backend checks diffEngineer owns quality
PRAgent writes cognitive aidHuman reads focused diffMaintainer owns merge

Agents can do first passes. Humans still own judgment.

  • Week 1: capture, plan, work
  • Month 1: add cross-model review and make-pr
  • Quarter 1: add Spec-as-PR, decision records, Ralph for mechanical specs

For high-impact changes, open a PR with only .flow/specs/<id>.md before implementation. Review the acceptance criteria, non-goals, constraints, and rollout plan. Once that PR is approved, implementation work has a frozen contract.

This pattern is especially useful for platform work, data migrations, billing, auth, enterprise controls, or anything where the cost of building the wrong thing is high.