mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-20 05:04:49 +00:00
- 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>
24 lines
807 B
JSON
24 lines
807 B
JSON
{
|
|
"default": {
|
|
"identifier": "default",
|
|
"description": "Default capability for Foundry desktop",
|
|
"local": true,
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"core:window:allow-start-dragging",
|
|
"shell:allow-open",
|
|
{ "identifier": "shell:allow-execute", "allow": [{ "args": true, "name": "sidecars/foundry-backend", "sidecar": true }] },
|
|
{ "identifier": "shell:allow-spawn", "allow": [{ "args": true, "name": "sidecars/foundry-backend", "sidecar": true }] }
|
|
],
|
|
"platforms": ["macOS", "windows", "linux"]
|
|
},
|
|
"mobile": {
|
|
"identifier": "mobile",
|
|
"description": "Capability for Foundry mobile (iOS/Android)",
|
|
"local": true,
|
|
"windows": ["main"],
|
|
"permissions": ["core:default"],
|
|
"platforms": ["iOS", "android"]
|
|
}
|
|
}
|