Skip to main content

skills Command

Skills are bundled knowledge packages that teach AI coding assistants (Claude Code, OpenAI Codex) how to work with Agent Actions workflows. Instead of explaining the framework from scratch every session, you install skills once and the assistant understands YAML syntax, field references, guards, and execution patterns.

bash
BASH
agac skills <subcommand> [options]

:::tip Run from Anywhere You can run this command from any subdirectory within your project. :::

Subcommands

SubcommandDescription
listList available bundled skills
installInstall skills to your project

skills list

List available bundled skills:

bash
BASH
agac skills list

skills install

Install skills for your AI coding assistant:

bash
BASH
agac skills install --claude # For Claude Code
agac skills install --codex # For OpenAI Codex

Options:

OptionDescription
--claudeInstall skills for Claude Code (.claude/skills/)
--codexInstall skills for OpenAI Codex (.codex/skills/)
--forceOverwrite existing skills

Examples:

bash
BASH
# Install for Claude Code
agac skills install --claude

# Install for OpenAI Codex
agac skills install --codex

# Update skills after upgrading agent-actions
agac skills install --claude --force

What Gets Installed

Each skill includes:

text
TXT
.claude/skills/agac-agent-skills/
├── SKILL.md # Main skill documentation
├── references/ # Pattern guides, context scoping, prompt engineering
└── scripts/ # Helper scripts (inspect_action, reset_workflow)

Skills are project-scoped - each agent-actions project can have skills installed, and the AI assistant picks them up when you open that project.

See Also

  • Editor Setup - LSP support for Go to Definition, Hover, Autocomplete