feat(config): auto-enable configured plugins

This commit is contained in:
Peter Steinberger
2026-01-18 16:22:50 +00:00
parent be6a3d4caf
commit 32ae4566c6
9 changed files with 534 additions and 9 deletions

View File

@@ -24,6 +24,12 @@ import type { SkillsConfig } from "./types.skills.js";
import type { ToolsConfig } from "./types.tools.js";
export type ClawdbotConfig = {
meta?: {
/** Last clawdbot version that wrote this config. */
lastTouchedVersion?: string;
/** ISO timestamp when this config was last written. */
lastTouchedAt?: string;
};
auth?: AuthConfig;
env?: {
/** Opt-in: import missing secrets from a login shell environment (exec `$SHELL -l -c 'env -0'`). */