sandbox-agent/foundry/packages/desktop/src-tauri/capabilities/default.json
Nicholas Kissel f464fa96ad Add Foundry mobile layout with Tauri iOS/Android support
- Add responsive mobile layout with bottom pill tab bar, swipe navigation, and task list as home screen
- Add platform detection (useIsMobile hook) with viewport breakpoint and VITE_MOBILE build flag
- Mobile-optimize settings/billing/account pages (single-column layout with horizontal tabs)
- Add iOS safe area inset handling with 47px minimum padding
- Scaffold Tauri v2 mobile targets (iOS/Android) with platform-gated sidecar and capabilities
- Add notification sound support and mobile build script

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 22:35:54 -07:00

31 lines
657 B
JSON

{
"identifier": "default",
"description": "Default capability for Foundry desktop",
"windows": ["main"],
"platforms": ["macOS", "windows", "linux"],
"permissions": [
"core:default",
"core:window:allow-start-dragging",
"shell:allow-open",
{
"identifier": "shell:allow-execute",
"allow": [
{
"name": "sidecars/foundry-backend",
"sidecar": true,
"args": true
}
]
},
{
"identifier": "shell:allow-spawn",
"allow": [
{
"name": "sidecars/foundry-backend",
"sidecar": true,
"args": true
}
]
}
]
}