CopilotKit / CopilotKit/outpost
Reply editor prefills the AI disclaimer instead of the draft answer
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 7
- Forks
- 3
- Avg merge
- 7d 16h
- Merged PRs (30d)
- 15
Description
The agent-facing reply editor prefills with the AI disclaimer instead of the draft answer.
Where
packages/outpost/queue/src/handlers/ai-response.ts:172
await prisma.ticket.update({
where: { id: ticket.id },
data: {
suggestedResponse: pipelineResult.formatted.text,
},
});
formatted.text is the published form of the reply: platform formatting, footer, and — for anything below HIGH confidence — a leading disclaimer block:
> ⚠️ This is an AI-generated response. We've escalated this to our engineering team — someone will follow up in this thread shortly.
apps/web/src/components/.../reply-editor.tsx:59 prefills the agent's reply box with that string verbatim. So a human picking up an escalation opens their editor and finds a draft that opens by declaring itself AI-generated and announcing an escalation — text that makes no sense coming from them, and that they have to delete before writing anything.
The raw draft is already persisted one call earlier as Message.content (ai-response.ts:158) and is available as pipelineResult.response. That's the right source for an editor.
Fix
- suggestedResponse: pipelineResult.formatted.text,
+ suggestedResponse: pipelineResult.response,
Worth checking whether any other consumer depends on suggestedResponse carrying the formatted text before flipping it — as of #143's review, reply-editor.tsx is its only reader and it's human-driven, so nothing auto-posts it.
Why it's filed separately
Raised by @jerelvelarde in review of #143 and deliberately not fixed there: the line is pre-existing, isn't in that PR's diff, and #143 only makes it reachable more often.
It gets worse, though, with the always-answers work that's in progress (retrieval fan-out across all four MCP corpora + the no-answer reply). Under that change, a suppressed ungrounded draft has its formatted.text replaced with the no-answer copy:
I couldn't find an answer to this in the CopilotKit or AG-UI documentation or source code, so I don't want to guess. I've escalated this to our team — someone will follow up in this thread.
So the human's editor prefills with the apology, and the actual draft they were meant to work from lives only in Message.content, which the editor never reads. The stated justification for suppressing rather than discarding a draft — "a human can edit and send it" — stops being true.
Should land with, or before, that PR.
Acceptance
-
suggestedResponseholds the unformatted draft (pipelineResult.response), disclaimer-free - Reply editor prefills text an agent can send without deleting a preamble
- A suppressed draft still reaches the editor as the draft, not as the no-answer copy
- Test covering the suppressed case, since that's the path where the two diverge
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start in packages/outpost/queue/src/handlers/ai-response.ts around lines 158-172, then inspect apps/web/src/components/.../reply-editor.tsx to confirm how suggestedResponse is used. Verify the editor receives the unformatted pipelineResult.response, add coverage for the suppressed case, and ensure the acceptance conditions hold without changing the published response.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- ai, backend, frontend
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Quiet
- Clarity
- Clearly specified
- Newbie friendliness
- 78/100