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
|
|
|
{
|
|
|
|
|
"name": "clawpal",
|
2026-02-19 20:21:58 +09:00
|
|
|
"version": "0.1.3",
|
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
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
|
|
|
|
"build": "tsc && vite build",
|
|
|
|
|
"lint": "tsc --noEmit",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"release:dry-run": "bash scripts/release.sh --dry-run",
|
|
|
|
|
"release": "bash scripts/release.sh"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@tauri-apps/api": "^2.0.0",
|
2026-02-19 14:47:16 +09:00
|
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
|
|
|
"@tauri-apps/plugin-updater": "^2.10.0",
|
2026-02-17 01:28:04 +09:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2026-02-17 02:22:28 +09:00
|
|
|
"cmdk": "^1.1.1",
|
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
|
|
|
"json5": "^2.2.3",
|
2026-02-17 01:28:04 +09:00
|
|
|
"lucide-react": "^0.564.0",
|
chore: initialize shadcn/ui with Tailwind v4, add UI components
- Create components.json (new-york style, slate base, CSS variables)
- Add shadcn/ui components: button, card, input, select, badge,
scroll-area, checkbox, separator, label, textarea
- Create src/lib/utils.ts with cn() helper (clsx + tailwind-merge)
- Replace old CSS classes in styles.css with Tailwind v4 @theme inline
block containing shadcn color tokens and custom app theme colors
- Add radix-ui dependency (required by shadcn components)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 01:33:02 +09:00
|
|
|
"radix-ui": "^1.4.3",
|
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
|
|
|
"react": "^18.3.1",
|
2026-02-17 18:37:28 +09:00
|
|
|
"react-diff-viewer-continued": "^4.1.2",
|
2026-02-17 01:28:04 +09:00
|
|
|
"react-dom": "^18.3.1",
|
|
|
|
|
"tailwind-merge": "^3.4.1"
|
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
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-17 01:28:04 +09:00
|
|
|
"@tailwindcss/vite": "^4.1.18",
|
|
|
|
|
"@types/node": "^25.2.3",
|
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
|
|
|
"@types/react": "^18.3.2",
|
|
|
|
|
"@types/react-dom": "^18.3.2",
|
|
|
|
|
"@vitejs/plugin-react": "^4.3.4",
|
2026-02-17 01:28:04 +09:00
|
|
|
"tailwindcss": "^4.1.18",
|
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
|
|
|
"typescript": "^5.5.4",
|
|
|
|
|
"vite": "^5.4.1"
|
|
|
|
|
}
|
|
|
|
|
}
|