docs: recommend git repo for workspace backups
parent
4dd9072a2b
commit
a5b3b8743a
|
|
@ -503,7 +503,9 @@ struct OnboardingView: View {
|
||||||
.foregroundStyle(.secondary)
|
.foregroundStyle(.secondary)
|
||||||
.lineLimit(2)
|
.lineLimit(2)
|
||||||
} else {
|
} else {
|
||||||
Text("Tip: edit AGENTS.md in this folder to shape the assistant’s behavior.")
|
Text(
|
||||||
|
"Tip: edit AGENTS.md in this folder to shape the assistant’s behavior. " +
|
||||||
|
"For backup, make the workspace a (private) git repo so Clawd’s “memory” is versioned.")
|
||||||
.font(.caption)
|
.font(.caption)
|
||||||
.foregroundStyle(.secondary)
|
.foregroundStyle(.secondary)
|
||||||
.lineLimit(2)
|
.lineLimit(2)
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,17 @@ cp docs/AGENTS.default.md ~/.clawdis/workspace/AGENTS.md
|
||||||
- Don’t run destructive commands unless explicitly asked.
|
- Don’t run destructive commands unless explicitly asked.
|
||||||
- Don’t send partial/streaming replies to external messaging surfaces (only final replies).
|
- Don’t send partial/streaming replies to external messaging surfaces (only final replies).
|
||||||
|
|
||||||
|
## Backup tip (recommended)
|
||||||
|
If you treat this workspace as Clawd’s “memory”, make it a git repo (ideally private) so `AGENTS.md` and your memory files are backed up.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ~/.clawdis/workspace
|
||||||
|
git init
|
||||||
|
git add AGENTS.md
|
||||||
|
git commit -m "Add Clawd workspace"
|
||||||
|
# Optional: add a private remote + push
|
||||||
|
```
|
||||||
|
|
||||||
## What Clawdis Does
|
## What Clawdis Does
|
||||||
- Runs WhatsApp gateway + Pi coding agent so the assistant can read/write chats, fetch context, and run tools via the host Mac.
|
- Runs WhatsApp gateway + Pi coding agent so the assistant can read/write chats, fetch context, and run tools via the host Mac.
|
||||||
- macOS app manages permissions (screen recording, notifications, microphone) and exposes a CLI helper `clawdis-mac` for scripts.
|
- macOS app manages permissions (screen recording, notifications, microphone) and exposes a CLI helper `clawdis-mac` for scripts.
|
||||||
|
|
|
||||||
|
|
@ -94,6 +94,8 @@ Pi (the bundled coding agent) will read operating instructions and “memory”
|
||||||
|
|
||||||
By default, Clawdis uses `~/.clawdis/workspace` as the agent workspace, and will create it (plus a starter `AGENTS.md`) automatically on first agent run.
|
By default, Clawdis uses `~/.clawdis/workspace` as the agent workspace, and will create it (plus a starter `AGENTS.md`) automatically on first agent run.
|
||||||
|
|
||||||
|
Tip: treat this folder like Clawd’s “memory” and make it a git repo (ideally private) so your `AGENTS.md` + memory files are backed up.
|
||||||
|
|
||||||
From the CLAWDIS repo:
|
From the CLAWDIS repo:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue