
- Implemented GitHub agent browser in CCAgents component - Created GitHubAgentBrowser component for browsing and importing agents - Added Rust commands for fetching and importing agents from GitHub - Updated API layer with GitHub agent import methods - Updated Cargo.toml with new dependencies - Fixed Tauri configuration and capabilities - Added dropdown menu for import options - Implemented search and preview functionality for GitHub agents
35 lines
806 B
JSON
35 lines
806 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Capability for the main window",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"dialog:default",
|
|
"dialog:allow-open",
|
|
"dialog:allow-save",
|
|
"shell:allow-execute",
|
|
"shell:allow-spawn",
|
|
"shell:allow-open",
|
|
"fs:default",
|
|
"fs:allow-mkdir",
|
|
"fs:allow-read",
|
|
"fs:allow-write",
|
|
"fs:allow-remove",
|
|
"fs:allow-rename",
|
|
"fs:allow-exists",
|
|
"fs:allow-copy-file",
|
|
"fs:read-all",
|
|
"fs:write-all",
|
|
"fs:scope-app-recursive",
|
|
"fs:scope-home-recursive",
|
|
"http:default",
|
|
"http:allow-fetch",
|
|
"process:default",
|
|
"notification:default",
|
|
"clipboard-manager:default",
|
|
"global-shortcut:default",
|
|
"updater:default"
|
|
]
|
|
}
|