Installing sublime skills
Skill Emrebener/Sublime-Skills/.claude/skills/installing-sublime-skills
A handy toolbox of AI agent skills that are compliant with https://agentskills.io specification.
npx -y skills add Emrebener/Sublime-Skills --skill installing-sublime-skillsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when the user wants to install, refresh, re-symlink, or fix drift in this repo's Sublime-Skills symlinks under ~/.claude/{skills,commands}/ and ~/.codex/skills/ — e.g. after adding, renaming, moving, or deleting a skill, after a git pull, or when the harness can't find a skill it should see.
SKILL.md
1.9 KB, 425 tokens by cl100k_base, as published. Nobody here has run it
Installing Sublime-Skills
Refresh the symlinks that expose this repo's skills (and slash commands) to Claude Code and Codex.
What the script does
scripts/install.fish walks skills/*/*/SKILL.md and commands/*.md in
this repo and creates / refreshes symlinks at:
~/.claude/skills/<skill-name>— for every skill~/.claude/commands/<file>.md— for every slash command~/.codex/skills/<skill-name>— for every skill (Codex has no slash commands)
It's idempotent. Existing symlinks are repointed in place via ln -sfn;
new ones are created; broken symlinks (e.g. left over from a rename) are
pruned at the end via find -xtype l -delete.
How to run it
"$SUBLIME_SKILLS_HOME/scripts/install.fish"
Expected output (counts vary with current skill set):
Claude Code: linked 40 skills, 2 commands.
Codex: linked 40 skills.
If SUBLIME_SKILLS_HOME isn't set, the script prints a setup hint and
exits non-zero — point the user at docs/SETUP.md.
When to suggest running this
- The user added, renamed, moved, or deleted a skill or command
- A
git pullbrought in upstream changes to theskills/orcommands/trees - A harness reports it can't find a skill that's clearly in the repo
- The user explicitly asks to "reinstall", "refresh symlinks", "fix drift", etc.
Sister skill
uninstalling-sublime-skills — removes every Sublime-Skills symlink from
both harnesses. Use that one when the user wants to remove the install,
not when they want to fix drift (install handles drift on its own).