Author and run Skills
cmdop skill is the current command tree. The plural cmdop skills remains a
deprecated alias.
Create an offline Skill project
Create an instructions-based Skill, validate it strictly, then package it:
cmdop skill create release-check \
--description "Review release readiness before deployment"
cmdop skill check ./release-check --strict
cmdop skill pack ./release-checkcreate, check, and pack do not execute Skill code. Packaging produces an
artifact; it does not publish or install it.
Use --kind python or --kind node only when the Skill needs that project
shape. Use --json with authoring commands in automation.
Work with installed Skills
cmdop skill list
cmdop skill show <name>
cmdop skill dir
cmdop run <name> "optional prompt"Marketplace management is exposed as cmdop skill install <slug> and
cmdop skill uninstall <name>. Check the installed command’s help and review
the Skill before installation; no example Marketplace slug is treated as a
permanent public test fixture.
For a complete authoring walkthrough, see Write your first Skill.