From claude-commands
Creates symlinks in ~/bin/ for quick repo access via /codex commands and adds project entries to Codex config.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:codex-symlinksThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create or update Codex project symlinks for quick access to key repos.
Create or update Codex project symlinks for quick access to key repos.
Codex project symlinks let you quickly open repos with /codex <repo> or equivalent commands. This skill creates symlinks in ~/bin/ (or similar) for the main project repos.
| Name | Path | Symlink |
|---|---|---|
| ai_universe | ~/projects_other/ai_universe/ | ~/bin/codex-ai-universe |
| your-project.com | ~/projects_other/your-project.com/ | ~/bin/codex-worldarchitect |
| agent-orchestrator | ~/projects_other/agent_orchestrator/ or ~/projects/agent_orchestrator/ | ~/bin/codex-orchestrator |
| user_scope | ~/projects_other/user_scope/ | ~/bin/codex-user-scope |
mkdir -p ~/bin
# ai_universe
ln -sf ~/projects_other/ai_universe ~/bin/codex-ai-universe
# your-project.com
ln -sf ~/projects_other/your-project.com ~/bin/codex-worldarchitect
# agent-orchestrator (find actual path first)
find ~/projects_other ~/projects -maxdepth 2 -type d -name "agent_orchestrator" 2>/dev/null | head -1 | xargs -I{} ln -sf {} ~/bin/codex-orchestrator
# user_scope
ln -sf ~/projects_other/user_scope ~/bin/codex-user-scope
ls -la ~/bin/codex-*
# Add to ~/.bashrc or ~/.zshrc
export PATH="$HOME/bin:$PATH"
Codex also tracks projects in ~/.codex/config.toml. The key paths are:
~/.codex/config.toml
Add these project entries if not already present:
[projects."$HOME/projects_other/ai_universe"]
trust_level = "trusted"
[projects."$HOME/projects_other/your-project.com"]
trust_level = "trusted"
# Test codex can access repos
cd ~/bin/codex-ai-universe && pwd
cd ~/bin/codex-worldarchitect && pwd
npx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsCopies patterns, setup, or structure from another project into the current session. Also supports fix-and-PR mode to submit bug fixes to referenced projects.
Creates and manages multi-repo workspaces for AI coding assistants (Claude Code, Codex) by unifying configs from sibling git repos and supporting worktree-based feature branches.
Locates dwmkerr's personal and McKinsey GitHub repositories locally or clones via git/gh CLI. Preserves git state for inspection, searching, and branch viewing.