-
Notifications
You must be signed in to change notification settings - Fork 0
Remove plan comment step from single-phase workflow prompt #161
Copy link
Copy link
Closed
Description
Problem
The prompt tells agents to "Post plan as comment (for audit trail)" on every task. This adds 2 extra API calls per task. For simple text edits (like lota-3's tasks), the commit message IS the audit trail. Plan comments are noise.
What to do
In src/daemon.ts, buildPrompt() function:
- In the
singlephase block, remove the step that says to post a plan comment - The agent should go straight from reading → editing → building → pushing → completing
- Keep the plan comment step ONLY in the
planphase (where it's the whole point)
Acceptance
- Single-phase agents no longer post plan comments
- Plan-phase agents still post plans (unchanged)
- Saves 2 API calls per single-phase task
- Build passes:
npm run build
Reactions are currently unavailable