Files
claudia/src-tauri/capabilities/default.json
Vivek R 4ddb6a1995 refactor: remove bundled Claude Code binary support
- Remove all bundled/sidecar binary functionality
- Delete build scripts for fetching and building Claude executables
- Simplify binary detection to only support system installations
- Update UI to remove bundled installation options
- Update build configuration and documentation
2025-07-22 21:16:54 +05:30

55 lines
1.1 KiB
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",
{
"identifier": "shell:allow-execute",
"allow": [
{
"name": "claude",
"sidecar": false,
"args": true
}
]
},
{
"identifier": "shell:allow-spawn",
"allow": [
{
"name": "claude",
"sidecar": false,
"args": true
}
]
},
"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"
]
}