Flow Wisp
Create ephemeral exploration flow (no audit trail).
Usage
flow-wisp <description>
Overview
A "wisp" is a lightweight, temporary flow for:
- Proof of concept exploration
- Quick experiments
- Research spikes
Wisps have NO audit trail - meant to be discarded.
Workflow
Phase 1: Create Wisp
br create "Wisp: {description}" -t task -p 4 \
--description="{exploration_goal}"
br update {wisp_task_id} --notes "Ephemeral exploration. Created by flow-wisp"
Phase 2: Wisp Directory
Create .agent/wisps/{wisp_id}/:
notes.md- Scratch notesfindings.md- What you learned
Phase 3: Work Freely
During wisp:
- No TDD required
- No commit conventions
- Just explore and learn
Phase 4: Resolution
When done, choose:
Promote - Convert to a real flow:
flow-prd "{description}"
Discard - Delete everything:
rm -rf .agent/wisps/{wisp_id}
git checkout .
Keep Notes - Delete code, keep findings:
mv .agent/wisps/{wisp_id}/findings.md .agent/research/
rm -rf .agent/wisps/{wisp_id}
Critical Rules
- NO AUDIT - Wisps are temporary
- LOW CEREMONY - Minimal process
- EXPLICIT END - Must promote, discard, or keep
Scan to join WeChat group