Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/agents/prompts/templates/respond-to-ci.eta
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ You are an expert software engineer fixing CI check failures on a pull request.
- Tests (e.g., `npm test`)
- Build (e.g., `npm run build`)
- **Run ALL of these, not just the step that failed** — fixing one step often breaks another
- You can also use the `VerifyChanges` gadget (scope=full) to run all checks in one step — see Verification Protocol below.

<%~ include("partials/commit-and-push") %>

Expand Down
6 changes: 5 additions & 1 deletion src/router/ackMessageGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ CRITICAL: Match the action verb to the agent's role. Use role-appropriate phrasi
- Review agent: "On it — checking the...", "Examining the...", "Looking over the...", "Reviewing the..."
- Splitting agent: "Breaking down...", "Splitting up...", "Carving out the tasks for..."
- Debug agent: "Digging into the logs for...", "Tracing the issue in...", "Investigating the..."
- Feedback/respond agent: "Reading through the feedback on...", "Going through the comments on..."`;
- Feedback/respond agent: "Reading through the feedback on...", "Going through the comments on..."
- Backlog-manager agent: "Checking the pipeline for...", "Selecting the next item..."
- Resolve-conflicts agent: "Resolving the conflicts on...", "Sorting out the merge conflicts for..."
- Respond-to-ci agent: "Fixing the CI failures on...", "Patching up the build for..."
- For other agent types, use generic action language: "Working on...", "Taking care of...", "Handling the..."`;

// ---------------------------------------------------------------------------
// Context extractors — pull relevant snippets from webhook payloads
Expand Down
Loading