@slahon/lazykit 1.2.6 → 1.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,16 +14,18 @@ You describe what you want. Claude ships it.
14
14
  npx @slahon/lazykit@latest init
15
15
  ```
16
16
 
17
- Run this inside your project folder. That's it. LazyKit handles everything else automatically.
17
+ Run this from your **project's root directory** — the same folder that contains your `.git` folder and has a GitHub remote configured. That's it. LazyKit handles everything else automatically.
18
18
 
19
19
  ## Requirements
20
20
 
21
21
  - Node.js 18+
22
- - A GitHub repository with a remote set up
22
+ - A GitHub repository with a remote set up (`git remote -v` should show a GitHub URL)
23
23
  - A Claude Pro or Max subscription ([claude.ai](https://claude.ai))
24
24
  - Claude Code installed locally (`npm install -g @anthropic-ai/claude-code`)
25
25
  - GitHub CLI (`gh`) — required for full automation (`brew install gh` / [cli.github.com](https://cli.github.com))
26
26
 
27
+ > **All `npx @slahon/lazykit` commands must be run from your project's root directory** — the folder where your `.git` directory lives and your GitHub remote is configured.
28
+
27
29
  ## How it works
28
30
 
29
31
  ### 1. Open an issue using the LazyKit Task template
@@ -120,7 +122,6 @@ During `npx @slahon/lazykit@latest init` you will be asked:
120
122
 
121
123
  | Option | Default | Description |
122
124
  |--------|---------|-------------|
123
- | Label name | `lazykit` | The GitHub label that triggers Claude |
124
125
  | Auto-trigger | Yes | Trigger Claude on every new issue, or only when you apply the label |
125
126
  | Generate CLAUDE.md | Yes | Create a project guide for Claude |
126
127
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slahon/lazykit",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Drop an issue, get a PR. AI-powered issue-to-PR automation using Claude.",
5
5
  "bin": {
6
6
  "lazykit": "./index.js"