Skip to main content

Agent Skills

PostKit ships with agent skills — reusable instruction sets that teach AI coding assistants (Claude Code, Cursor, Codex, etc.) how to work with PostKit workflows. Skills follow the Agent Skills open standard.

Available Skills​

SkillInvokeWhen It Triggers
postkit-migrate/postkit-migrateDatabase migrations, deploys, schema diffs
postkit-setup/postkit-setupProject init, config, remotes setup
postkit-schema/postkit-schemaEditing db/schema/ files
postkit-auth/postkit-authKeycloak, auth config, SSO

Install Skills​

Use the skills CLI to install PostKit skills into your project:

# Install all PostKit skills (interactive)
npx skills add appritechnologies/Postkit

# List available skills first
npx skills add appritechnologies/Postkit --list

# Install specific skills only
npx skills add appritechnologies/Postkit --skill postkit-migrate --skill postkit-schema

# Install for a specific agent (e.g., Claude Code)
npx skills add appritechnologies/Postkit -a claude-code

# Non-interactive (CI/CD friendly)
npx skills add appritechnologies/Postkit --all -y

Scope​

ScopeFlagLocationUse Case
Project (default)./<agent>/skills/Committed with your project, shared with team
Global-g~/<agent>/skills/Available across all your projects

By default, skills are symlinked — a single source of truth that's easy to update. Use --copy for independent copies when symlinks aren't supported.

Update Skills​

# Update all installed skills
npx skills update

# Update a specific skill
npx skills update postkit-auth

Supported Agents​

PostKit skills work with any agent that supports the Agent Skills standard, including:

Agent--agent flag
Claude Codeclaude-code
Cursorcursor
Codexcodex
Clinecline
Gemini CLIgemini-cli
GitHub Copilotgithub-copilot
Windsurfwindsurf
Roo Coderoo

The npx skills add CLI auto-detects which agents you have installed. See the full list of supported agents.