feat: ClawPal v0.1 — Tauri desktop GUI for OpenClaw
4-page layout (Home, Recipes, Settings, Doctor) with sidebar nav
and integrated Chat panel powered by OpenClaw agent (--local).
- Home: status, agents overview, recommended recipes, recent activity
- Recipes: browse, preview diff, apply with params
- Settings: model profiles CRUD, chat model selection, provider catalog
- Doctor: diagnostics with auto-fix
- Chat: OpenClaw agent integration with session persistence,
agent selector, read-only advisory context injection
- Progressive data loading to avoid UI blocking
- API key resolution from OpenClaw agent auth-profiles
- Model catalog from openclaw CLI with cache
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 01:16:38 +09:00
|
|
|
{
|
|
|
|
|
"$schema": "https://schema.tauri.app/config/2.0.0",
|
|
|
|
|
"identifier": "xyz.clawpal",
|
|
|
|
|
"build": {
|
|
|
|
|
"beforeDevCommand": "npm run dev",
|
|
|
|
|
"beforeBuildCommand": "npm run build",
|
|
|
|
|
"devUrl": "http://localhost:1420",
|
|
|
|
|
"frontendDist": "../dist"
|
|
|
|
|
},
|
|
|
|
|
"app": {
|
|
|
|
|
"windows": [
|
|
|
|
|
{
|
|
|
|
|
"title": "ClawPal",
|
|
|
|
|
"width": 1200,
|
|
|
|
|
"height": 820,
|
|
|
|
|
"minWidth": 1024,
|
|
|
|
|
"minHeight": 680
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2026-02-19 14:47:16 +09:00
|
|
|
"plugins": {
|
|
|
|
|
"updater": {
|
|
|
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDU2QjE4N0M1Mjc0NEEwOUIKUldTYm9FUW54WWV4VnZMQ2JTL1NvZjdKZW55RVhhUENuZ3NxMDFwUVFkSng0UXo3N1lLKzlYYWsK",
|
|
|
|
|
"endpoints": [
|
|
|
|
|
"https://github.com/zhixianio/clawpal/releases/latest/download/latest.json"
|
|
|
|
|
],
|
|
|
|
|
"windows": {
|
|
|
|
|
"installMode": "passive"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
feat: ClawPal v0.1 — Tauri desktop GUI for OpenClaw
4-page layout (Home, Recipes, Settings, Doctor) with sidebar nav
and integrated Chat panel powered by OpenClaw agent (--local).
- Home: status, agents overview, recommended recipes, recent activity
- Recipes: browse, preview diff, apply with params
- Settings: model profiles CRUD, chat model selection, provider catalog
- Doctor: diagnostics with auto-fix
- Chat: OpenClaw agent integration with session persistence,
agent selector, read-only advisory context injection
- Progressive data loading to avoid UI blocking
- API key resolution from OpenClaw agent auth-profiles
- Model catalog from openclaw CLI with cache
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 01:16:38 +09:00
|
|
|
"bundle": {
|
|
|
|
|
"active": true,
|
2026-02-19 14:47:16 +09:00
|
|
|
"createUpdaterArtifacts": true,
|
2026-02-19 11:27:13 +09:00
|
|
|
"icon": [
|
|
|
|
|
"icons/32x32.png",
|
|
|
|
|
"icons/128x128.png",
|
|
|
|
|
"icons/128x128@2x.png",
|
|
|
|
|
"icons/icon.icns",
|
|
|
|
|
"icons/icon.ico"
|
|
|
|
|
],
|
|
|
|
|
"targets": "all",
|
|
|
|
|
"macOS": {
|
|
|
|
|
"minimumSystemVersion": "10.15",
|
2026-02-19 14:31:48 +09:00
|
|
|
"signingIdentity": "Developer ID Application: UNIPASS TECH PTE. LTD. (X53M8444K4)"
|
2026-02-19 11:27:13 +09:00
|
|
|
},
|
|
|
|
|
"windows": {
|
|
|
|
|
"certificateThumbprint": null,
|
|
|
|
|
"timestampUrl": ""
|
|
|
|
|
}
|
feat: ClawPal v0.1 — Tauri desktop GUI for OpenClaw
4-page layout (Home, Recipes, Settings, Doctor) with sidebar nav
and integrated Chat panel powered by OpenClaw agent (--local).
- Home: status, agents overview, recommended recipes, recent activity
- Recipes: browse, preview diff, apply with params
- Settings: model profiles CRUD, chat model selection, provider catalog
- Doctor: diagnostics with auto-fix
- Chat: OpenClaw agent integration with session persistence,
agent selector, read-only advisory context injection
- Progressive data loading to avoid UI blocking
- API key resolution from OpenClaw agent auth-profiles
- Model catalog from openclaw CLI with cache
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 01:16:38 +09:00
|
|
|
}
|
|
|
|
|
}
|