[WIP] Symphony: Send Feedback: in-app issue creation via agent (#457)#1031
Draft
DRAZY wants to merge 40 commits into
Draft
[WIP] Symphony: Send Feedback: in-app issue creation via agent (#457)#1031DRAZY wants to merge 40 commits into
DRAZY wants to merge 40 commits into
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
added 28 commits
May 20, 2026 23:51
Creates src/prompts/feedback.md, the system prompt that wraps a user's
raw in-app feedback and instructs the selected agent to:
- Classify the feedback (Bug, Feature, Improvement, Feedback)
- Compose a prefixed title and a typed structured body
- Ensure the Maestro-feedback label exists on RunMaestro/Maestro
- Create the GitHub issue via gh and surface the resulting URL
The prompt uses {{FEEDBACK}} as the template variable for the raw text
and explicitly tells the agent not to ask clarifying questions. Kept
under 60 lines to match the tone of existing prompts in src/prompts/.
Implements src/main/ipc/handlers/feedback.ts exposing two channels:
- feedback:check-gh-auth — verifies gh CLI is installed and authenticated
via isGhInstalled() + execFileNoThrow('gh', ['auth', 'status']) with a
60s TTL cache. Returns { authenticated, message? } with actionable
install/login messages.
- feedback:submit — substitutes {{FEEDBACK}} in feedbackPrompt and writes
the constructed prompt to the selected agent via ProcessManager.write().
Returns { success, error? }, surfacing 'Agent process not available' if
write fails or throws.
The handler imports feedbackPrompt from src/prompts/index.ts (auto-generated
from feedback.md), matching the convention used by directorNotesPrompt and
tabNamingPrompt. Registered in registerAllHandlers() alongside the other
handler modules.
Adds vitest coverage (12 cases) for handler registration, all gh-auth code
paths, TTL caching behavior, prompt substitution, write failure modes, and
input validation.
added 11 commits
May 24, 2026 14:08
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Maestro Symphony Contribution
Closes #457
Contributed via Maestro Symphony.
Status: In Progress
Started: 2026-05-21T06:49:57.115Z
This PR will be updated automatically when the Auto Run completes.