-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Consolidated Argus Remediation & Refactoring #28
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
Open
DsThakurRawat
wants to merge
8
commits into
main
Choose a base branch
from
unified-remediation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
65f8ee9
feat: consolidated Argus remediation workflow and architecture dedupl…
DsThakurRawat c818a59
fix: address gemini-code-assist review comments
DsThakurRawat b7150cd
ci: upgrade actions/upload-artifact to v4
DsThakurRawat e64c5ae
ci: use uv run python to invoke quality gates cli
DsThakurRawat 4555a8a
fix: resolve static analysis type errors and clean up dead code
DsThakurRawat e442ddb
fix(typing): import Any in pattern_matchers
DsThakurRawat 8d904c4
fix(pyright): resolve various type hints and attribute errors in vali…
DsThakurRawat 6f84b77
fix: resolve all remaining pyright static analysis errors
DsThakurRawat 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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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 |
|---|---|---|
|
|
@@ -120,7 +120,8 @@ class ActionType(str, Enum): | |
| PersistentAgentData, | ||
| StateManager, | ||
| StateSnapshot, | ||
| StateTransition, # State enums; State models; State utilities | ||
| StateTransition, # State models | ||
| StateTransitionEnum, # State enums | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| WorkflowContext, | ||
| WorkflowState, | ||
| WorkflowStep, | ||
|
|
@@ -235,9 +236,9 @@ def validate_agent_data( | |
| # State models | ||
| "AgentState", | ||
| "WorkflowState", | ||
| "StateTransitionEnum", | ||
| "StateSnapshot", | ||
| "StateTransition", | ||
| "StateTransitionEnum", | ||
|
Comment on lines
232
to
+233
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "AgentExecutionContext", | ||
| "AgentExecutionMetrics", | ||
| "AgentExecutionState", | ||
|
|
||
This file was deleted.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: DsThakurRawat/Argus
Length of output: 4870
🏁 Script executed:
Repository: DsThakurRawat/Argus
Length of output: 1651
🏁 Script executed:
Repository: DsThakurRawat/Argus
Length of output: 1651
Remove
uv pip install psutilfrom the frozen CI flowIn
.github/workflows/quality-gates.yml(lines 124-126), the job runs:psutilis already declared inpyproject.tomland present inuv.lock, souv sync --frozenshould install it deterministically; the extrauv pip install psutilis redundant and bypasses lockfile reproducibility. Remove the ad-hoc install step.🤖 Prompt for AI Agents