feat(onboard): add skip bootstrap flag (#71218)

This commit is contained in:
Patrick Erichsen
2026-04-24 12:42:00 -07:00
committed by GitHub
parent 0f689d22f4
commit 8226a3f8fe
16 changed files with 140 additions and 10 deletions

View File

@@ -28,8 +28,10 @@ inside a sandbox workspace under `~/.openclaw/sandboxes`, not your host workspac
```json5
{
agent: {
workspace: "~/.openclaw/workspace",
agents: {
defaults: {
workspace: "~/.openclaw/workspace",
},
},
}
```
@@ -43,7 +45,7 @@ If you already manage the workspace files yourself, you can disable bootstrap
file creation:
```json5
{ agent: { skipBootstrap: true } }
{ agents: { defaults: { skipBootstrap: true } } }
```
## Extra workspace folders

View File

@@ -44,7 +44,7 @@ If a file is missing, OpenClaw injects a single “missing file” marker line (
To disable bootstrap file creation entirely (for pre-seeded workspaces), set:
```json5
{ agent: { skipBootstrap: true } }
{ agents: { defaults: { skipBootstrap: true } } }
```
## Built-in tools