infra/scripts/workstation/claude-skills
Viktor Barzin fc83595f5e
All checks were successful
ci/woodpecker/push/default Pipeline was successful
devvm: vendor cluster-health into per-user agent-skill snapshot
Make cluster-health a user-global skill for emo (the lone entry in the
provisioner's SKILL_USERS allowlist), so it's available from any directory
— not only when working inside the infra clone where it already exists as a
project skill (.claude/skills/cluster-health). install_skills() in
t3-provision-users.sh copies the vendored snapshot into ~/.agents/skills/ and
symlinks ~/.claude/skills/, so this is the durable, rebuild-surviving path.

cluster-health is homelab-local (vendored from this repo's own
.claude/skills/), unlike the other snapshot entries which mirror upstream
mattpocock/skills + vercel-labs/skills; README documents its provenance and
the explicit re-sync step so the vendored copy doesn't silently drift.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-26 15:20:19 +00:00
..
caveman t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
cluster-health devvm: vendor cluster-health into per-user agent-skill snapshot 2026-06-26 15:20:19 +00:00
diagnose t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
find-skills t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
grill-me t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
grill-with-docs t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
handoff t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
improve-codebase-architecture t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
prototype t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
setup-matt-pocock-skills t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
tdd t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
teach t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
to-issues t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
to-prd t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
triage t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
write-a-skill t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
zoom-out t3-provision-users: vendor agent skills + per-user install_skills (emo) 2026-06-23 09:23:37 +00:00
README.md devvm: vendor cluster-health into per-user agent-skill snapshot 2026-06-26 15:20:19 +00:00

claude-skills — vendored agent-skill snapshot

Point-in-time snapshot of the admin's (wizard) Claude Code agent skills, deployed per-user by install_skills() in ../../t3-provision-users.sh (scoped to the SKILL_USERS allowlist). Each subdirectory is one skill (SKILL.md + any bundled references). The provisioner copies a skill into ~/.agents/skills/<name>/ (owned by the user) and symlinks ~/.claude/skills/<name> -> ../../.agents/skills/<name> — the layout the skills CLI's -g install produces; Claude Code reads ~/.claude/skills/.

Why vendored (not npx skills add at provision time)

Upstream drifted from this set: on mattpocock/skills master, diagnosediagnosing-bugs and write-a-skillwriting-great-skills were renamed, and caveman + zoom-out are no longer published — so npx skills cannot reproduce this exact set. Vendoring is also offline/deterministic and keeps GitHub-clone + unpinned-CLI dependencies out of the hourly root reconcile.

Sources

  • mattpocock/skills (https://github.com/mattpocock/skills) — all except find-skills
  • vercel-labs/skills (https://github.com/vercel-labs/skills) — find-skills
  • homelab-localcluster-health is vendored from this repo's own .claude/skills/cluster-health/ (the canonical copy, a project skill in the infra clone). It is NOT in ~/.agents/skills/, so the cp -a refresh below does NOT update it — re-copy it explicitly when the canonical skill changes (see Refreshing).

Refreshing

Re-snapshot the upstream skills from a current install and commit the diff:

cp -a ~/.agents/skills/. scripts/workstation/claude-skills/

Re-sync the homelab-local skill(s) from their canonical in-repo copy:

cp -a .claude/skills/cluster-health scripts/workstation/claude-skills/

Snapshot taken 2026-06-23 (upstream); cluster-health vendored 2026-06-26.