https://github.com/johnlindquist/kit/discussions
https://github.com/johnlindquist/kit-docs
❤️ Sponsor me on GitHub ❤️
| Shipped | Planned |
|---|---|
| Unlimited Active Prompts | Sync Scripts to GitHub Repo |
| Built-in Debugger | Run Script Remotely as GitHub Actions |
| Script Log Window | Advanced Screenshots |
| Vite Widgets | Screen Recording |
| Webcam Capture | Measure Tool |
| Desktop Color Picker | Debug from IDE |
| Basic Screenshots |
Install pnpm:
Clone and install:
git clone https://github.com/johnlindquist/kit.git
cd kit
pnpm install
pnpm build
The build command builds the SDK to ~/.kit
Option 1: Workspace approach (Recommended)
- cd to wherever you cloned kitapp
- Create a
pnpm-workspace.yamlfile with:packages: - '~/.kit' - '.'
- Run
pnpm install- this will automatically link your local kit build - The workspace file is gitignored, so it won't affect CI builds
Option 2: Manual linking (Alternative)
- cd to ~/.kit
- pnpm link
- cd to wherever you cloned kitapp
- pnpm link @johnlindquist/kit
Note: The workspace approach is preferred as it automatically links your local kit development build and doesn't require manual link/unlink commands.