Agent SkillsAgent Skills

Automation & Rules

Event triggers, coding rules, blueprints, and CI/CD generation

triggerruleblueprintci

trigger#

Auto-trigger skills on events.

skills trigger [command]
# Alias: skills tr
SubcommandDescription
add [options] <name>Add a trigger rule
listList all trigger rules
enable <name>Enable a trigger
disable <name>Disable a trigger
remove <name>Remove a trigger

rule#

Manage always-on coding rules.

skills rule [command]
# Alias: skills rl
SubcommandDescription
add [options] <name>Add a coding rule
list [options]List all coding rules
enable [options] <name>Enable a rule
disable [options] <name>Disable a rule
remove [options] <name>Remove a rule
export [options]Export rules as a skill

blueprint#

Structured development plans.

skills blueprint [command]
# Alias: skills bp
SubcommandDescription
create [options] <name>Create a new blueprint
add-milestone <milestone>Add a milestone to the blueprint
add-task [options] <milestone> <task>Add a task to a milestone
statusShow blueprint status
done <task-id>Mark a task as done
export [options]Export blueprint as markdown

ci#

Generate CI/CD workflow for skill validation.

skills ci [platform] [options]
OptionDescription
-o, --output <dir>Output directory (auto-detected)
--auditInclude security audit step (default: true)
--validateInclude validation step (default: true)

Supported platforms: github (GitHub Actions)

Example:

skills ci github

Output: Generates .github/workflows/skills.yml with validation and audit steps.