Skip to content
1 min read · 56 words

Variable: DANGEROUS_DIRECTORIES

ts
const DANGEROUS_DIRECTORIES: readonly [
  ".vscode",
  ".idea",
  ".claude/commands",
  ".claude/agents",
];

Defined in: src/batteries/sandbox/node/fs_node.ts:325

Directories SRT mandatory-denies, reproduced from upstream.

Remarks

.git is deliberately ABSENT: upstream filters it out of its own list and handles it separately, because the rules differ per platform and per .git being a directory rather than a worktree file. Reproducing it here would deny what the profile permits.