CodeSnuffler Forgejo End-to-End historical review range codesnuffler-forgejo-live-20260714T181808540Z-118062c2-9a8 #65
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "change_forgejo_end_to_end"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Exercise the live Forgejo webhook review pipeline against a stable historical CodeSnuffler diff.
Run marker: codesnuffler-forgejo-live-20260714T181808540Z-118062c2-9a8.
Run started at: 2026-07-14T18:18:08.540Z.
Fixture range: f9d210eccd0075b6b39b606cea9b1376719aa062..d8a3fc420b055e04df1d203706b89b1f1261a9c1.
This stable two-commit AI Harness range is expected to produce actionable findings.
CodeSnuffler Review Findings
Findings
1. Dev-shell auth commands ignore selected plugin instance
app/dev_shell.py:320Details for this finding were posted as an inline review comment on the changed line.
Open finding in CodeSnuffler
Fix via CodeSnuffler
@ -316,3 +318,3 @@async def dev_shell_websocket(websocket: WebSocket) -> None:command_id = websocket.query_params.get("command", "bash")persona_id = websocket.query_params.get("persona_id")instance_id = websocket.query_params.get("instance_id")CodeSnuffler finding: Dev-shell auth commands ignore selected plugin instance
Severity: Medium Category: Correctness
dev_shell_websocketnow reads only theinstance_idquery parameter, butfrontend/src/dev-shell/components/DevShellTerminal.vuestill sendspersona_idfrom the AI tool setup flow. For any non-primary instance,_proxy_runner_auth_sessionreceivesNoneand defaults toprimary, so login/auth shells operate on the wrong plugin-instance storage.Commit: Open commit
d8a3fc420b05Open finding in CodeSnuffler
Fix via CodeSnuffler
Suggested fix: Update
DevShellTerminaland its callers to useinstanceId/instance_idinstead ofpersonaId/persona_id, matching the new backend contract.Pull request closed