-
Notifications
You must be signed in to change notification settings - Fork 1
ci: preserve Strix failure evidence in OpenCode reviews #500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
b538ec9
ci: preserve Strix failure evidence in OpenCode reviews
seonghobae f91487f
fix: address Strix review gate feedback
seonghobae 3c315a1
fix: report Strix provider blockers concretely
seonghobae 9179a46
fix: explain pending checks when OpenCode models fail
seonghobae 51c4854
fix: explain cancelled Strix runs without logs
seonghobae 45686f8
fix: anchor Strix provider blockers to config line
seonghobae 31c5582
fix: scope failed-check evidence to Strix runs
seonghobae fb1580f
fix: cap OpenCode prompt evidence
seonghobae 4b29cc8
fix: align OpenCode evidence self-test
seonghobae add611c
fix: add contextual workspace aria labels
seonghobae 75bd5d7
fix: debounce network graph resize fitting
seonghobae ee48163
fix: reduce email grouping lookup overhead
seonghobae 474b4e6
fix: include manual Strix evidence reruns
seonghobae 9d48b7f
fix: validate configured CORS origins
seonghobae 6f621d1
fix: expand checkbox label hit targets
seonghobae 5a6c6ca
fix: harden session auth checks
seonghobae 01a576b
fix: address review gate follow-ups
seonghobae 341cb4b
fix: forward-port http-only browser sessions
seonghobae 217b00c
fix: address strix session and scan findings
seonghobae 6f15aaf
fix: fail closed on session claim fetch
seonghobae d0efcba
fix: require organization scope for browser session claims
seonghobae 21c58d8
fix: reject non-source-backed opencode findings
seonghobae File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| from fastapi import APIRouter, Depends | ||
| from pydantic import BaseModel | ||
|
|
||
| from api.auth import AuthContext, get_auth_context | ||
|
|
||
|
|
||
| router = APIRouter(prefix="/api/auth", tags=["auth"]) | ||
|
|
||
|
|
||
| class SessionResponse(BaseModel): | ||
| user_id: str | ||
| organization_id: str | None | ||
| workspace_id: str | ||
|
|
||
|
|
||
| @router.get("/session", response_model=SessionResponse) | ||
| async def current_session( | ||
| auth_context: AuthContext = Depends(get_auth_context), | ||
| ) -> SessionResponse: | ||
| return SessionResponse( | ||
| user_id=auth_context.user_id, | ||
| organization_id=auth_context.organization_id, | ||
| workspace_id=auth_context.workspace_id, | ||
| ) |
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.