mirror of
https://github.com/humanlayer/humanlayer.git
synced 2025-08-20 19:01:22 +03:00
- Add Tauri shell and store plugins for process and state management - Implement Rust daemon manager with automatic startup on app launch - Add branch-based daemon isolation for development environments - Create TypeScript services and hooks for daemon lifecycle management - Add debug panel UI for manual daemon control in dev mode - Support automatic daemon connection with managed port discovery - Handle graceful daemon shutdown on app close - Implement retry logic for daemon connection during startup
28 lines
596 B
JSON
28 lines
596 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Capability for the main window",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"opener:default",
|
|
"notification:default",
|
|
"core:webview:allow-set-webview-zoom",
|
|
"fs:default",
|
|
{
|
|
"identifier": "fs:scope",
|
|
"allow": [
|
|
{
|
|
"path": "**/*"
|
|
}
|
|
]
|
|
},
|
|
"clipboard-manager:default",
|
|
"clipboard-manager:allow-write-text",
|
|
"shell:allow-spawn",
|
|
"shell:allow-execute",
|
|
"shell:allow-kill",
|
|
"store:default"
|
|
]
|
|
}
|