Conversation
When an agent discovers bugs or issues unrelated to the current task, it now writes them to .symphony/findings.json in the workspace. After each turn the orchestrator reads this file, creates a Linear issue for each finding (attributed to the source issue), and removes the file. - Add Finding model type (title + description) - Add FetchTeamID and CreateIssue to the Linear client - Append findings instructions to turn-1 prompts so agents know the protocol - Wire processFindings into both Codex and Claude worker loops - Add tests for FetchTeamID and CreateIssue (success, GraphQL error, failure cases) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
.symphony/findings.jsonto their workspaceChanges
internal/model/types.go— newFindingstruct (title,description)internal/linear/client.go—FetchTeamIDandCreateIssuemethodsinternal/orchestrator/orchestrator.go—processFindingshelper, wired into both Codex and Claude worker loops;buildTurnPromptappends findings instructions on turn 1internal/linear/client_test.go— tests forFetchTeamIDandCreateIssue(success, GraphQL error, success=false cases)Test plan
go test ./internal/linear/...passes (includes newTestFetchTeamID_*andTestCreateIssue_*tests)go test ./internal/orchestrator/...passes.symphony/findings.jsonin a workspace between turns and confirm a new Linear issue is created and the file is removed🤖 Generated with Claude Code