feat(agent): add skipBootstrap config to skip bootstrap file creation (#292)

This commit is contained in:
Onur
2026-01-07 01:02:51 +08:00
committed by GitHub
parent 38aaa8563b
commit 6cf3570c5b
6 changed files with 25 additions and 7 deletions
+2
View File
@@ -824,6 +824,8 @@ export type ClawdbotConfig = {
models?: Record<string, AgentModelEntryConfig>;
/** Agent working directory (preferred). Used as the default cwd for agent runs. */
workspace?: string;
/** Skip bootstrap (BOOTSTRAP.md creation, etc.) for pre-configured deployments. */
skipBootstrap?: boolean;
/** Optional IANA timezone for the user (used in system prompt; defaults to host timezone). */
userTimezone?: string;
/** Optional display-only context window override (used for % in status UIs). */
+1
View File
@@ -479,6 +479,7 @@ export const ClawdbotSchema = z.object({
)
.optional(),
workspace: z.string().optional(),
skipBootstrap: z.boolean().optional(),
userTimezone: z.string().optional(),
contextTokens: z.number().int().positive().optional(),
tools: z