Draft
Conversation
Contributor
📊 Test Coverage Report
Coverage measured by |
Contributor
📦 PR Build Artifacts
|
e5d12bf to
de632dd
Compare
Contributor
📏 Metrics Gate ReportStatus: ✅ All gates passed Commit Size ❌
Bundle Size ✅
Perf Metrics E2E ✅
Command Perf (local) ✅
Local command timings
Command Perf (remote SSH) ✅
Remote command timings (via Docker SSH)
Home Page Render Probes (real IPC) ✅
Code Readability
|
c6ef47f to
dda45b7
Compare
Contributor
📸 UI ScreenshotsCommit: Light Mode — Core Pages
Dark Mode
Responsive + Dialogs
|
1eac681 to
4015995
Compare
22a4558 to
3f4376d
Compare
added 7 commits
March 23, 2026 09:43
- Use gh CLI to get release body (avoids shell escaping issues) - Use jq for proper JSON construction - Skip .sig and latest.json files - Use HTTP/1.1 for large file upload stability
- Detect user timezone to determine if likely in China - CN users fetch release assets from GitLab (lay2dev/clawpal) - Other users fetch from GitHub as before - Falls back to secondary source if primary fails
- Add canonical, Open Graph, Twitter Card meta tags - Add SoftwareApplication JSON-LD schema - Add robots.txt with AI crawler permissions - Add llms.txt for AI search engines - Add sitemap.xml - Improve meta description for better CTR
- Redirect clawpal.zhixian.io to clawpal.xyz (301) - Redirect clawpal.pages.dev to clawpal.xyz (301) - Fixes GSC 'Google 选择的规范网页与用户指定的不同' issue
- 1200x630 hero section screenshot - Fixes broken social preview cards
Adds workspace-aware backup/restore and git-based workspace backup: - Copy-based backup/restore now includes workspace directory - Workspace path resolved from OpenClaw config (custom or default) - New git backup commands: workspace_git_status, workspace_git_backup, workspace_git_init - Remote variants for all git backup commands via SSH - WorkspaceGitBackup UI component with status, backup, and init actions - clawpal-core: git status probe, backup, and init shell command builders Rebased on origin/develop (timed_async!/timed_sync! macro wrapping, read_openclaw_config(&OpenClawPaths) signature).
3f4376d to
249dbc1
Compare
Contributor
Recipe GUI E2E PerfArtifacts: perf report
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

























Summary
Based on OpenClaw docs: Git backup (recommended, private), optimizes ClawPal's backup of managed OpenClaw instances in two ways:
Context
ClawPal manages OpenClaw instances (local or remote via SSH). The backup feature protects instance data before upgrades. The workspace (
~/.openclaw/workspace) contains the agent's memory and personality files (AGENTS.md, SOUL.md, USER.md, memory/, skills/) — the most important data to back up.Before this PR:
openclaw.json+agents/+memory/(wrong path) — workspace not backed up~/.openclaw/recursively — workspace included only if at default pathChanges
1. Fix copy-based backup to include workspace
remote_backup_before_upgrade: reads workspace path from remoteopenclaw.json(agents.defaults.workspace), copies it tobackup/workspace/remote_restore_from_backup: restores workspace from backup, resolving target path from configbackup_before_upgrade(local): also copies workspace when configured outside~/.openclaw/(custom path), skips.gitdirrestore_from_backup(local): restores workspace to custom path if backed up separately2. Git-based workspace backup (new feature)
Core layer (
clawpal-core/src/backup.rs):WorkspaceGitStatusstruct — repo state tracking (branch, remote URL, uncommitted count, ahead/behind, last commit)WORKSPACE_GITIGNOREmatching docs recommendationTauri commands (
src-tauri/src/commands/backup.rs):workspace_git_status/remote_workspace_git_status— probe git state on managed instanceworkspace_git_backup/remote_workspace_git_backup— commit + pushworkspace_git_init/remote_workspace_git_init— init repo + .gitignoreBoth local and remote paths follow the same dispatch pattern as existing backup commands.
Frontend (
WorkspaceGitBackup.tsx):Testing
cargo test -p clawpal-core --lib backup— 18/18 pass (7 new + 11 existing)npx tsc --noEmit— zero TypeScript errors