Skip to content

Getting Started

  • Claude CodeInstall Claude Code if you haven’t already
  • Git — Version control (required for stow-based installation)
  • GitHub CLI (gh) — Used by shipping commands (commit, pr, release)
  • Bun or Node.js — For JavaScript/TypeScript projects
  1. Clone and stow my-kit:

    Terminal window
    git clone https://github.com/mayknxyz/my-kit.git ~/.my-kit
    cd ~/.my-kit && stow -t ~ .
  2. Initialize in your project:

    Terminal window
    cd your-project
    /mykit.init
  3. Run your first workflow:

    Terminal window
    /mykit.specify

my-kit follows a spec-driven pipeline: Specify → Plan → Tasks → Implement → Ship → Audit.

  1. /mykit.specify — Describe what you want to build. my-kit creates a structured spec.
  2. /mykit.plan — Claude generates an implementation plan from the spec.
  3. /mykit.tasks — The plan is broken into trackable tasks.
  4. /mykit.implement — Claude works through each task, writing code.
  5. /mykit.commit — Stage and commit with conventional commit messages.
  6. /mykit.pr — Create a pull request with auto-generated summary.