Skills
Skills
Section titled “Skills”Skills are reusable automation workflows that encapsulate common development tasks. PopKit currently includes 50 skills across 4 plugins.
What are Skills?
Section titled “What are Skills?”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-*)
Skill Categories
Section titled “Skill Categories”Planning & Execution
Section titled “Planning & Execution”pop-brainstorming: Design exploration and specification refinementpop-writing-plans: Structured implementation plan generationpop-executing-plans: Controlled batch execution with checkpointspop-finish-branch: End-of-work branch finalization flow
Routines & Context
Section titled “Routines & Context”pop-morning: Start-of-day health and readiness workflowpop-nightly: End-of-day cleanup and session capture workflowpop-session-capture: Persist working context for next sessionpop-session-resume: Restore previous context
Quality & Operations
Section titled “Quality & Operations”pop-assessment-security: Security posture assessmentpop-code-review: Risk-focused code reviewpop-systematic-debugging: Structured debugging methodologypop-benchmark-runner: Controlled benchmark and analysis runs
Project & Platform
Section titled “Project & Platform”pop-analyze-project: Architecture and pattern analysispop-project-init: Project bootstrap and Claude config setuppop-project-reference: Cross-project context loadingpop-power-mode: Multi-agent orchestration
Using Skills
Section titled “Using Skills”Skills can be invoked in several ways:
From Commands
Section titled “From Commands”/popkit-dev:next# Internally uses pop-next-action plus command-layer formatting/flowFrom Agents
Section titled “From Agents”Agents can invoke skills as part of their workflows.
Directly (Advanced)
Section titled “Directly (Advanced)”/pop-next-action/pop-assessment-security/skill invoke pop-next-actionDepending on Claude Code client version and settings, direct-skill entries may appear as bare /pop-* aliases or only via /skill invoke.
Creating Custom Skills
Section titled “Creating Custom Skills”Skills are defined in SKILL.md format with:
- Frontmatter: Metadata and configuration
- Description: What the skill does
- Usage: How to use the skill
- Examples: Real-world usage examples
See the Custom Skills Guide for details.
Next Steps
Section titled “Next Steps”- Explore Commands
- Learn about Hooks
- Create Custom Skills