Skip to content

Skills

Skills are reusable automation workflows that encapsulate common development tasks. PopKit currently includes 50 skills across 4 plugins.

Skills in PopKit are:

  • Reusable: Can be invoked from multiple contexts
  • Composable: Can call other skills
  • Documented: Include usage examples and parameters
  • Testable: Have defined input/output contracts
  • Tiered: Exposed directly (/pop-*) and through workflow commands (/popkit-*)
  • pop-brainstorming: Design exploration and specification refinement
  • pop-writing-plans: Structured implementation plan generation
  • pop-executing-plans: Controlled batch execution with checkpoints
  • pop-finish-branch: End-of-work branch finalization flow
  • pop-morning: Start-of-day health and readiness workflow
  • pop-nightly: End-of-day cleanup and session capture workflow
  • pop-session-capture: Persist working context for next session
  • pop-session-resume: Restore previous context
  • pop-assessment-security: Security posture assessment
  • pop-code-review: Risk-focused code review
  • pop-systematic-debugging: Structured debugging methodology
  • pop-benchmark-runner: Controlled benchmark and analysis runs
  • pop-analyze-project: Architecture and pattern analysis
  • pop-project-init: Project bootstrap and Claude config setup
  • pop-project-reference: Cross-project context loading
  • pop-power-mode: Multi-agent orchestration

Skills can be invoked in several ways:

Terminal window
/popkit-dev:next
# Internally uses pop-next-action plus command-layer formatting/flow

Agents can invoke skills as part of their workflows.

Terminal window
/pop-next-action
/pop-assessment-security
/skill invoke pop-next-action

Depending on Claude Code client version and settings, direct-skill entries may appear as bare /pop-* aliases or only via /skill invoke.

Skills are defined in SKILL.md format with:

  1. Frontmatter: Metadata and configuration
  2. Description: What the skill does
  3. Usage: How to use the skill
  4. Examples: Real-world usage examples

See the Custom Skills Guide for details.