@skillscraft/cli
v0.9.1
Published
CLI for building, validating, and linting Agent Skills
Maintainers
Readme
@skillscraft/cli
CLI for building, validating, and linting Agent Skills against the Agent Skills specification.
Installation
npm install -g @skillscraft/cliThis provides the skill command.
Commands
skill init <name>
Scaffold a new Agent Skill directory with a SKILL.md template.
skill init my-new-skill
skill init my-new-skill --template basicOptions:
-t, --template <template>-- template to use (default:basic)
skill validate <path>
Validate a skill against the Agent Skills specification.
skill validate ./my-skill/SKILL.md
skill validate ./my-skill/SKILL.md --strictOptions:
-s, --strict-- treat warnings as errors
skill lint <path>
Lint a skill for best practices.
skill lint ./my-skill/SKILL.md
skill lint ./my-skill/SKILL.md --fixOptions:
--fix-- show fix suggestions
skill install <path>
Install a skill for a specific agent or generically.
skill install ./my-skill
skill install ./my-skill --target claude --scope project
skill install ./my-skill --target copilot --scope user --forceOptions:
-t, --target <target>-- target agent:claude,copilot,codex,generic(default:generic)-s, --scope <scope>-- install scope:projectoruser(default:project)-f, --force-- overwrite existing installation
License
Apache-2.0
