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
|
|
|
[package]
|
|
|
|
|
name = "clawpal"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "clawpal"
|
|
|
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
dirs = "5.0.1"
|
|
|
|
|
json5 = "0.4.1"
|
|
|
|
|
regex = "1.10.6"
|
|
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
|
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.133"
|
|
|
|
|
tauri = { version = "2.1.0", features = [] }
|
|
|
|
|
thiserror = "1.0.63"
|
|
|
|
|
uuid = { version = "1.11.0", features = ["v4"] }
|
|
|
|
|
chrono = { version = "0.4.38", features = ["clock"] }
|
2026-02-18 21:01:48 +09:00
|
|
|
russh = "0.46"
|
|
|
|
|
russh-keys = "0.46"
|
|
|
|
|
russh-sftp = "2.0"
|
|
|
|
|
async-trait = "0.1"
|
|
|
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
|
shellexpand = "3.1"
|
2026-02-19 14:47:16 +09:00
|
|
|
tauri-plugin-updater = "2"
|
|
|
|
|
tauri-plugin-process = "2"
|
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
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
tauri-build = { version = "2.1.0", features = [] }
|