skill
Utilities for managing skills on disk — listing, validating repo-private skills, and repairing their metadata.
Commands
Section titled “Commands”skill list
Section titled “skill list”List skills from the repo, global install, and the cyberplace package:
npx cyberplace@<version> skill listnpx cyberplace@<version> skill list --grep "init-*"npx cyberplace@<version> skill list --format agentnpx cyberplace@<version> skill list --format jsonskill validate-private
Section titled “skill validate-private”Check that repo-private skills under .agents/skills/ have metadata: internal: true and no erroneous symlinks into skills/:
npx cyberplace@<version> skill validate-privateskill repair-private
Section titled “skill repair-private”Fix repo-private skills — sets metadata: internal: true and removes bad symlinks. Called by the init skill after writing AGENTS.md:
npx cyberplace@<version> skill repair-privateskill source
Section titled “skill source”Find the source repo of an installed skill:
npx cyberplace@<version> skill source commit-workUsage notes
Section titled “Usage notes”skill list --grepaccepts a glob pattern — useful for discoveringinit-*companion skills.skill repair-privateis idempotent; safe to run multiple times.- Do not read
.agents/skills/manually to check forinternal: true— usevalidate-privateinstead.