skills/install-local-skill/SKILL.md
Install or refresh a skill from this repo into the local machine's skill directories. Use when the user asks to make a repo skill available locally, install a local skill for Claude, Agents, or Codex, update local skill symlinks, or follow the .claude/skills source link pattern with .agents/skills and .codex/skills symlinks.
npx skillsauth add kyzooghost/audit-code-health-skill install-local-skillInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Install a skill from this repository by making ~/.claude/skills/<skill> the source-facing symlink to the repo skill, then making ~/.agents/skills/<skill> and ~/.codex/skills/<skill> point at the Claude skill path.
Use the bundled script for the filesystem changes so repeated installs update links consistently.
skills/<name>.SKILL.md.python3 <this-skill-dir>/scripts/install_local_skill.py <skill-name-or-path>
Example from this repo:
python3 skills/install-local-skill/scripts/install_local_skill.py handover
~/.claude/skills/<skill> -> repo skill directory~/.agents/skills/<skill> -> ~/.claude/skills/<skill>~/.codex/skills/<skill> -> ~/.claude/skills/<skill>The installer replaces whatever is already at the destination:
Use --dry-run to preview changes without writing symlinks:
python3 skills/install-local-skill/scripts/install_local_skill.py handover --dry-run
Use --repo-root <path> when running from outside this repository and passing a skill name.
Only override the destination directories when the user explicitly asks for non-default install roots.
development
Sync a skill from this repo into the local machine's skill directories. Use when the user asks to make a repo skill available locally, sync a local skill for Claude, Agents, or Codex, update local skill symlinks, or follow the .claude/skills source link pattern with .agents/skills and .codex/skills symlinks.
development
Sync a command from this repo into local agent surfaces. Use when the user asks to make a repo command available locally, sync a local command for Claude, Agents, or Codex, update command symlinks, or expose a command to Codex as a skill.
testing
Use when the user asks to grill, interrogate, pressure-test, or relentlessly interview them about a plan until requirements, tradeoffs, dependencies, and implementation decisions are clear.
tools
Use when the user asks to create, update, draft, or generate a GitHub pull request, including /create-pr behavior or equivalent workflow.