docs(macos): critter-first onboarding copy

main
Peter Steinberger 2025-12-14 06:26:51 +00:00
parent e82ee731bf
commit 5792887883
3 changed files with 12 additions and 2 deletions

View File

@ -69,6 +69,16 @@ enum AgentWorkspace {
This folder is the assistants working directory. This folder is the assistants working directory.
## Backup tip (recommended)
If you treat this workspace as the agents memory, make it a git repo (ideally private) so your identity
and notes are backed up.
```bash
git init
git add AGENTS.md
git commit -m "Add agent workspace"
```
## Safety defaults ## Safety defaults
- Dont exfiltrate secrets or private data. - Dont exfiltrate secrets or private data.
- Dont run destructive commands unless explicitly asked. - Dont run destructive commands unless explicitly asked.

View File

@ -476,7 +476,7 @@ struct OnboardingView: View {
VStack(alignment: .leading, spacing: 10) { VStack(alignment: .leading, spacing: 10) {
Text("Theme") Text("Theme")
.font(.headline) .font(.headline)
TextField("space lobster", text: self.$identityTheme) TextField("helpful lobster", text: self.$identityTheme)
.textFieldStyle(.roundedBorder) .textFieldStyle(.roundedBorder)
} }

View File

@ -79,7 +79,7 @@ If the user skips auth, onboarding should be clear: the agent likely wont res
After auth (or skip), onboarding asks: After auth (or skip), onboarding asks:
1) Agent **name** (e.g. “Samantha”) 1) Agent **name** (e.g. “Samantha”)
2) Agent **theme/persona** (e.g. “space lobster”, “helpful sloth”) 2) Agent **theme/persona** (e.g. “helpful lobster”, “helpful sloth”)
3) Suggested **emoji** (based on theme; user can override) 3) Suggested **emoji** (based on theme; user can override)
Persist identity in two places: Persist identity in two places: