Skip to content

Installation

Before installing my-kit, ensure you have:

ToolPurposeRequired
Claude CodeAI coding assistantYes
GitVersion controlYes
GNU StowSymlink managerYes
GitHub CLI (gh)GitHub operationsFor ship commands
Bun or Node.jsJS/TS runtimeFor JS/TS projects
  1. Clone the repository:

    Terminal window
    git clone https://github.com/mayknxyz/my-kit.git ~/.my-kit
  2. Stow the kit into your home directory:

    Terminal window
    cd ~/.my-kit && stow -t ~ .

    This creates symlinks so Claude Code can discover my-kit’s commands and skills globally.

  3. Verify the installation:

    Terminal window
    ls -la ~/.claude/commands/mykit.*.md

    You should see symlinks for all 29 commands.

Run init inside any project to set up my-kit’s project-level configuration:

Terminal window
cd your-project
/mykit.init

This creates project-specific settings and ensures Claude Code picks up my-kit’s skills for your stack.

Pull the latest changes and re-stow:

Terminal window
cd ~/.my-kit && git pull && stow -t ~ .

Remove the symlinks and delete the clone:

Terminal window
cd ~/.my-kit && stow -D -t ~ . && cd ~ && rm -rf ~/.my-kit
  • Stow conflicts — If stow reports conflicts, another file may exist at the symlink target. See Installation Issues.
  • Commands not found — Ensure Claude Code is restarted after installing. Run /mykit.status to verify.
  • Permission errors — Make sure ~/.my-kit is owned by your user, not root.