From f7afd1ac831044f2a2973ded881d2952f0b07f26 Mon Sep 17 00:00:00 2001 From: Robb Walters Date: Mon, 13 Apr 2026 21:29:14 -0700 Subject: [PATCH] chore: remove unused .codex/config.toml and its references Delete the OpenAI Codex configuration file and directory, and remove references to it from verify-install.sh (help text and file tracking). Co-Authored-By: Claude Opus 4.6 (1M context) --- .codex/config.toml | 23 ----------------------- .loom/scripts/verify-install.sh | 6 ------ 2 files changed, 29 deletions(-) delete mode 100644 .codex/config.toml diff --git a/.codex/config.toml b/.codex/config.toml deleted file mode 100644 index 4ea0cc5..0000000 --- a/.codex/config.toml +++ /dev/null @@ -1,23 +0,0 @@ -# Codex Configuration for Loom Project -# This configuration provides similar permissions to .claude/settings.json - -# Sandbox mode: workspace-write allows modification within the workspace -# This is safer than danger-full-access but sufficient for our autonomous agents -sandbox = "workspace-write" - -# Approval policy: never - run commands without asking for approval -# Since we trust the commands in our workflow (git, gh, pnpm, cargo, etc.) -ask_for_approval = "never" - -# Enable web search for agents that need it -search = true - -# Shell environment policy - inherit environment variables -[shell_environment_policy] -inherit = "all" - -# Sandbox permissions - grant specific access beyond workspace-write -# These mirror the permissions we've granted in .claude/settings.json -sandbox_permissions = [ - "disk-full-read-access", # Allow reading anywhere (like cat, ls in Claude settings) -] diff --git a/.loom/scripts/verify-install.sh b/.loom/scripts/verify-install.sh index 9a3e8fe..7b5f454 100755 --- a/.loom/scripts/verify-install.sh +++ b/.loom/scripts/verify-install.sh @@ -105,7 +105,6 @@ ${BOLD}TRACKED FILE LOCATIONS:${NC} .github/workflows/*.yml GitHub workflows CLAUDE.md Top-level docs .loom/CLAUDE.md, .loom/README.md - .codex/config.toml Codex configuration loom CLI wrapper ${BOLD}NOT TRACKED (runtime/user files):${NC} @@ -197,11 +196,6 @@ collect_tracked_files() { files+=(".loom/README.md") fi - # .codex/config.toml - if [[ -f "$root/.codex/config.toml" ]]; then - files+=(".codex/config.toml") - fi - # CLI wrapper if [[ -f "$root/loom" ]]; then files+=("loom")