Skip to content

Commands

PopKit provides 25 slash commands for common development workflows. Commands are the primary interface for interacting with PopKit.

PopKit intentionally exposes both orchestration commands and direct skills:

TierPrefixPurposeRecommended
Workflow commands/popkit-High-level flows that orchestrate skills, hooks, and scriptsYes
Direct skills/pop-Low-level primitives for targeted/advanced usageAdvanced

Most users should start with /popkit-* commands and drop to /pop-* when they want precise, direct control.

  • /popkit-dev:next - Get context-aware next actions
  • /popkit-core:project analyze - Comprehensive project analysis
  • /popkit-dev:milestone - Milestone management and tracking
  • /popkit-dev:git commit - Create commit with auto-generated message
  • /popkit-dev:git push - Push changes with pre-push checks
  • /popkit-dev:git pr - Create pull request with comprehensive summary
  • /popkit-dev:dev - 7-phase feature development workflow
  • /popkit-dev:issue - GitHub issue management and execution flows
  • /popkit-ops:debug - Debug code or routing issues
  • /popkit-dev:routine morning - Morning health check
  • /popkit-dev:routine nightly - End-of-day cleanup
  • /popkit-dev:routine generate - Create custom routine

Commands follow a consistent pattern:

/plugin-name:command [subcommand] [arguments] [--flags]

Examples:

Terminal window
/popkit-dev:git commit
/popkit-dev:git pr --draft
/popkit-dev:routine morning quick
/popkit-ops:security scan --fix
CommandsSkills
User-facing workflowsReusable primitives
Usually /popkit-*Usually /pop-* (or /skill invoke <name>)
Can orchestrate multiple skills + hooksFocused on one domain capability
Stable entry points for daily usageAdvanced/direct execution and building blocks

Commands often use multiple skills internally to accomplish their goals.

When a /popkit-* command wraps a /pop-* skill, it typically adds:

Commands detect your current context and adjust behavior:

  • Plan mode: Commands may gather more information before acting
  • Quick mode: Commands skip exploratory steps for faster execution
  • Power mode: Commands can delegate to multiple agents in parallel

Example: /popkit-dev:next in quick mode skips detailed analysis; in verbose mode it provides full recommendations with reasoning.

Commands produce structured output that includes:

  • Scores: Numerical health indicators (Ready to Code Score, Sleep Score)
  • Summaries: What was analyzed or accomplished
  • Next steps: Recommended follow-up actions with AskUserQuestion

Commands provide context-aware suggestions:

  • What to do next based on results
  • Which related commands might help
  • When to escalate to Power Mode for complex tasks

This guidance follows “The PopKit Way” — every command ends with actionable options, not just a report dump.