No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-22 18:24:58 +00:00
harness-web-search Add native macOS settings window skill 2026-08-22 18:24:58 +00:00
macos-settings-window Add native macOS settings window skill 2026-08-22 18:24:58 +00:00
progressive-blur-edge Add native macOS settings window skill 2026-08-22 18:24:58 +00:00
README.md Document skill repository and symlink workflow 2026-08-22 17:37:36 +00:00

Kayg Skills

This repository is the version-controlled collection of skills authored for the harness. Each tracked skill lives in its own directory at the repository root and contains a SKILL.md plus any sibling files it references.

The harness discovers skills under ~/.claude/skills. Authored skills are kept in this repository and exposed at their discovery paths through symlinks:

/home/kayg/.claude/skills/<name> -> /home/kayg/Developer/skills/<name>

To add a new authored skill, create it in the repository, then link its discovery path:

name="my-skill"
mkdir -p "/home/kayg/Developer/skills/$name"
$EDITOR "/home/kayg/Developer/skills/$name/SKILL.md"
ln -s "/home/kayg/Developer/skills/$name" "/home/kayg/.claude/skills/$name"
git add "$name" README.md
git commit -m "Add $name skill"
git push origin main

The ~/.claude/skills directory also contains untracked third-party skills. Their licensing and provenance are separate from this repository; do not add them here unless explicitly chosen for authorship and tracking.