| name | codex-symlinks |
| description | Create Codex project symlinks for quick access to key repositories. |
Skill: codex-symlinks
Create or update Codex project symlinks for quick access to key repos.
Overview
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.
Repos to Link
| 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 |
Create Symlinks
mkdir -p ~/bin
ln -sf ~/projects_other/ai_universe ~/bin/codex-ai-universe
ln -sf ~/projects_other/your-project.com ~/bin/codex-worldarchitect
find ~/projects_other ~/projects -maxdepth 2 -type d -name "agent_orchestrator" 2>/dev/null | head -1 | xargs -I{} ln -sf {} ~/bin/codex-orchestrator
ln -sf ~/projects_other/user_scope ~/bin/codex-user-scope
Verify Symlinks
ls -la ~/bin/codex-*
Add ~/bin to PATH (if not already)
export PATH="$HOME/bin:$PATH"
Codex Project Config Entries
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"
Quick Verify
cd ~/bin/codex-ai-universe && pwd
cd ~/bin/codex-worldarchitect && pwd