Custom skills that extend the local ~/.agents/skills skill base.
course-review-generator/- build exam-focused review guides from source course materialshandwritten-pdf-transcription/- transcribe handwritten PDFs into high-fidelity Markdowntranscription-content-review/- review a transcription and produce a corrected standalone document
- Root skill folders are the editable source of truth.
packages/contains packaged.skillarchives built from those folders.- Each skill folder includes
SKILL.mdandagents/openai.yaml.
From any checkout of this repository in a POSIX shell. If you run this from .worktrees/..., it installs symlinks to that current worktree checkout rather than the primary checkout:
repo_root="$(git rev-parse --show-toplevel)"
mkdir -p "$HOME/.agents/skills"
rm -rf "$HOME/.agents/skills/course-review-generator"
rm -rf "$HOME/.agents/skills/handwritten-pdf-transcription"
rm -rf "$HOME/.agents/skills/transcription-content-review"
ln -s "$repo_root/course-review-generator" "$HOME/.agents/skills/course-review-generator"
ln -s "$repo_root/handwritten-pdf-transcription" "$HOME/.agents/skills/handwritten-pdf-transcription"
ln -s "$repo_root/transcription-content-review" "$HOME/.agents/skills/transcription-content-review"From the repository root in a POSIX shell:
mkdir -p "packages"
rm -f "packages/course-review-generator.skill"
rm -f "packages/handwritten-pdf-transcription.skill"
rm -f "packages/transcription-content-review.skill"
zip -rq "packages/course-review-generator.skill" "course-review-generator"
zip -rq "packages/handwritten-pdf-transcription.skill" "handwritten-pdf-transcription"
zip -rq "packages/transcription-content-review.skill" "transcription-content-review"