Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ npx skills add codesoda/skillable
curl -sSf https://raw.githubusercontent.com/codesoda/skillable/main/install.sh | sh
```

Installs to `~/.agent/skills/skillable` and symlinks into `~/.claude/skills/` if Claude Code is detected.
Installs to `~/.agent/skills/skillable` and symlinks into Claude Code and Codex if detected

### From a clone

Expand Down
11 changes: 9 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ info ""
info "Installing to ${AGENT_SKILLS_DIR}/${SKILL_NAME}..."
install_to_agent_dir

# 2. Symlink from Claude Code if installed (Codex reads ~/.agent/skills directly)
# 2. Symlink into agent-specific skill directories if available
info ""

if command -v claude >/dev/null 2>&1; then
Expand All @@ -206,5 +206,12 @@ if command -v claude >/dev/null 2>&1; then
fi
fi

if command -v codex >/dev/null 2>&1; then
codex_dir="$HOME/.codex/skills"
if prompt_yes_no "Codex detected — symlink to ${codex_dir}/${SKILL_NAME}?" yes; then
symlink_agent_dir "Codex" "$codex_dir"
fi
fi

info ""
info "Done! Use /skillable in your agent to analyze tool usage patterns."
info "Done! Use skillable in your agent to analyze tool usage patterns."
Loading