-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add local analysis orchestration #51
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
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d3da181
docs: plan issue 32 orchestration work
seonghobae 28554f9
feat: add local analysis orchestration
seonghobae 0e9a12b
fix: harden orchestration contract handling
seonghobae b3b50c4
fix: tighten orchestration review feedback
seonghobae ca8e1b1
fix: resolve orchestration review gaps
seonghobae f708c01
fix: pin sbom generation tooling
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,9 @@ | ||
| fn main() { | ||
| tauri_build::build() | ||
| tauri_build::try_build( | ||
| tauri_build::Attributes::new().app_manifest( | ||
| tauri_build::AppManifest::new() | ||
| .commands(&["start_analysis_job", "get_analysis_job_status"]), | ||
| ), | ||
| ) | ||
| .expect("failed to build tauri application manifest"); | ||
| } |
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,11 @@ | ||
| { | ||
| "$schema": "../gen/schemas/desktop-schema.json", | ||
| "identifier": "main-capability", | ||
| "description": "Capability for the main BandScope window to use the analysis orchestration commands.", | ||
| "windows": ["main"], | ||
| "permissions": [ | ||
| "core:default", | ||
| "allow-start-analysis-job", | ||
| "allow-get-analysis-job-status" | ||
| ] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"main-capability":{"identifier":"main-capability","description":"Capability for the main BandScope window to use the analysis orchestration commands.","local":true,"windows":["main"],"permissions":["core:default","allow-start-analysis-job","allow-get-analysis-job-status"]}} |
2,268 changes: 2,268 additions & 0 deletions
2,268
apps/desktop/src-tauri/gen/schemas/desktop-schema.json
Large diffs are not rendered by default.
Oops, something went wrong.
2,268 changes: 2,268 additions & 0 deletions
2,268
apps/desktop/src-tauri/gen/schemas/macOS-schema.json
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
apps/desktop/src-tauri/permissions/autogenerated/get_analysis_job_status.toml
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,11 @@ | ||
| # Automatically generated - DO NOT EDIT! | ||
|
|
||
| [[permission]] | ||
| identifier = "allow-get-analysis-job-status" | ||
| description = "Enables the get_analysis_job_status command without any pre-configured scope." | ||
| commands.allow = ["get_analysis_job_status"] | ||
|
|
||
| [[permission]] | ||
| identifier = "deny-get-analysis-job-status" | ||
| description = "Denies the get_analysis_job_status command without any pre-configured scope." | ||
| commands.deny = ["get_analysis_job_status"] |
11 changes: 11 additions & 0 deletions
11
apps/desktop/src-tauri/permissions/autogenerated/start_analysis_job.toml
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,11 @@ | ||
| # Automatically generated - DO NOT EDIT! | ||
|
|
||
| [[permission]] | ||
| identifier = "allow-start-analysis-job" | ||
| description = "Enables the start_analysis_job command without any pre-configured scope." | ||
| commands.allow = ["start_analysis_job"] | ||
|
|
||
| [[permission]] | ||
| identifier = "deny-start-analysis-job" | ||
| description = "Denies the start_analysis_job command without any pre-configured scope." | ||
| commands.deny = ["start_analysis_job"] |
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.
🧹 Nitpick | 🔵 Trivial
🧩 Analysis chain
🏁 Script executed:
Repository: seonghobae/bandscope
Length of output: 220
@tauri-apps/api 버전 존재 확인 완료
@tauri-apps/api버전2.8.0은 npm 레지스트리에 존재합니다. 다만 더 최신의 호환 버전들(2.9.0, 2.9.1, 2.10.0, 2.10.1)도 available하므로, Tauri v2.3.1과의 호환성을 재검토하여 더 최신 버전 사용을 고려하십시오.🤖 Prompt for AI Agents