@manishbht/helpcode 0.2.2 → 0.2.3

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.
package/README.md CHANGED
@@ -81,7 +81,7 @@ Configure the model in `.helpcode/project.json`:
81
81
  ## Install
82
82
 
83
83
  ```bash
84
- npm install -g helpcode
84
+ npm install -g @manishbht/helpcode
85
85
  ```
86
86
 
87
87
  Requires Node.js 20 or later. Tested on macOS, Linux, and Windows.
File without changes
package/dist/src/index.js CHANGED
@@ -17,7 +17,7 @@ import { handleStatus } from './commands/status.js';
17
17
  import { handleReset } from './commands/reset.js';
18
18
  import { HelpcodeError } from './lib/errors.js';
19
19
  import { c, log } from './lib/ui.js';
20
- const VERSION = '0.2.2';
20
+ const VERSION = '0.2.3';
21
21
  const HELP = `helpcode v${VERSION}
22
22
 
23
23
  A local agent that makes Claude.ai conversations efficient enough to ship
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manishbht/helpcode",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "A local agent that makes Claude.ai conversations efficient enough to ship real projects on a Pro subscription.",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",