docs: fix front matter + workspace defaults
This commit is contained in:
@@ -8,26 +8,26 @@ read_when:
|
|||||||
|
|
||||||
## First run (recommended)
|
## First run (recommended)
|
||||||
|
|
||||||
Clawdbot uses a dedicated workspace directory for the agent. Default: `~/.clawdbot/workspace`.
|
Clawdbot uses a dedicated workspace directory for the agent. Default: `~/clawd` (configurable via `agent.workspace`).
|
||||||
|
|
||||||
1) Create the workspace (if it doesn’t already exist):
|
1) Create the workspace (if it doesn’t already exist):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
mkdir -p ~/.clawdbot/workspace
|
mkdir -p ~/clawd
|
||||||
```
|
```
|
||||||
|
|
||||||
2) Copy the default workspace templates into the workspace:
|
2) Copy the default workspace templates into the workspace:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cp docs/templates/AGENTS.md ~/.clawdbot/workspace/AGENTS.md
|
cp docs/templates/AGENTS.md ~/clawd/AGENTS.md
|
||||||
cp docs/templates/SOUL.md ~/.clawdbot/workspace/SOUL.md
|
cp docs/templates/SOUL.md ~/clawd/SOUL.md
|
||||||
cp docs/templates/TOOLS.md ~/.clawdbot/workspace/TOOLS.md
|
cp docs/templates/TOOLS.md ~/clawd/TOOLS.md
|
||||||
```
|
```
|
||||||
|
|
||||||
3) Optional: if you want the personal assistant skill roster, replace AGENTS.md with this file:
|
3) Optional: if you want the personal assistant skill roster, replace AGENTS.md with this file:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cp docs/AGENTS.default.md ~/.clawdbot/workspace/AGENTS.md
|
cp docs/AGENTS.default.md ~/clawd/AGENTS.md
|
||||||
```
|
```
|
||||||
|
|
||||||
4) Optional: choose a different workspace by setting `agent.workspace` (supports `~`):
|
4) Optional: choose a different workspace by setting `agent.workspace` (supports `~`):
|
||||||
@@ -73,7 +73,7 @@ cp docs/AGENTS.default.md ~/.clawdbot/workspace/AGENTS.md
|
|||||||
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.
|
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
|
```bash
|
||||||
cd ~/.clawdbot/workspace
|
cd ~/clawd
|
||||||
git init
|
git init
|
||||||
git add AGENTS.md
|
git add AGENTS.md
|
||||||
git commit -m "Add Clawd workspace"
|
git commit -m "Add Clawd workspace"
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
summary: "Fix Chrome/Chromium CDP startup issues for Clawdbot browser control on Linux"
|
||||||
|
read_when: "Browser control fails on Linux, especially with snap Chromium"
|
||||||
|
---
|
||||||
|
|
||||||
# Browser Troubleshooting (Linux)
|
# Browser Troubleshooting (Linux)
|
||||||
|
|
||||||
## Problem: "Failed to start Chrome CDP on port 18800"
|
## Problem: "Failed to start Chrome CDP on port 18800"
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
summary: "RPC protocol notes for onboarding wizard and config schema"
|
||||||
|
read_when: "Changing onboarding wizard steps or config schema endpoints"
|
||||||
|
---
|
||||||
|
|
||||||
# Onboarding + Config Protocol
|
# Onboarding + Config Protocol
|
||||||
|
|
||||||
Purpose: shared onboarding + config surfaces across CLI, macOS app, and Web UI.
|
Purpose: shared onboarding + config surfaces across CLI, macOS app, and Web UI.
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ Once setup is complete, the user can switch to the normal chat (`main`) via the
|
|||||||
|
|
||||||
We no longer collect identity in the onboarding wizard. Instead, the **first agent run** performs a playful bootstrap ritual using files in the workspace:
|
We no longer collect identity in the onboarding wizard. Instead, the **first agent run** performs a playful bootstrap ritual using files in the workspace:
|
||||||
|
|
||||||
- Workspace is created implicitly (default `~/.clawdbot/workspace`) when local is selected,
|
- Workspace is created implicitly (default `~/clawd`, configurable via `agent.workspace`) when local is selected,
|
||||||
but only if the folder is empty or already contains `AGENTS.md`.
|
but only if the folder is empty or already contains `AGENTS.md`.
|
||||||
- Files are seeded: `AGENTS.md`, `BOOTSTRAP.md`, `IDENTITY.md`, `USER.md`.
|
- Files are seeded: `AGENTS.md`, `BOOTSTRAP.md`, `IDENTITY.md`, `USER.md`.
|
||||||
- `BOOTSTRAP.md` tells the agent to keep it conversational:
|
- `BOOTSTRAP.md` tells the agent to keep it conversational:
|
||||||
@@ -131,7 +131,7 @@ The workspace is created automatically as part of agent bootstrap (no dedicated
|
|||||||
Recommendation: treat the workspace as the agent’s “memory” and make it a git repo (ideally private) so identity + memories are backed up:
|
Recommendation: treat the workspace as the agent’s “memory” and make it a git repo (ideally private) so identity + memories are backed up:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd ~/.clawdbot/workspace
|
cd ~/clawd
|
||||||
git init
|
git init
|
||||||
git add AGENTS.md
|
git add AGENTS.md
|
||||||
git commit -m "Add agent workspace"
|
git commit -m "Add agent workspace"
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
summary: "SSH tunnel setup for Clawdbot.app connecting to a remote gateway"
|
||||||
|
read_when: "Connecting the macOS app to a remote gateway over SSH"
|
||||||
|
---
|
||||||
|
|
||||||
# Running Clawdbot.app with a Remote Gateway
|
# Running Clawdbot.app with a Remote Gateway
|
||||||
|
|
||||||
Clawdbot.app uses SSH tunneling to connect to a remote gateway. This guide shows you how to set it up.
|
Clawdbot.app uses SSH tunneling to connect to a remote gateway. This guide shows you how to set it up.
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
summary: "Slack socket mode setup and Clawdbot config"
|
||||||
|
read_when: "Setting up Slack or debugging Slack socket mode"
|
||||||
|
---
|
||||||
|
|
||||||
# Slack (socket mode)
|
# Slack (socket mode)
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|||||||
Reference in New Issue
Block a user