hammadev 0.1.0-alpha.0 → 0.1.0-alpha.1
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 +20 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -111,9 +111,27 @@ codex "Read .hamma/tasks/<id>/handoff.md and continue the task from the current
|
|
|
111
111
|
|
|
112
112
|
---
|
|
113
113
|
|
|
114
|
-
## Install
|
|
114
|
+
## Install
|
|
115
115
|
|
|
116
|
-
|
|
116
|
+
Requires Node.js 22.12+ (Node 24 recommended).
|
|
117
|
+
|
|
118
|
+
Note: The npm package is named `hammadev`, but the CLI command is `hamma`.
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
npm install -g hammadev@alpha
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Smoke test the installation:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
hamma --help
|
|
128
|
+
hamma doctor
|
|
129
|
+
hamma status
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## Dev setup
|
|
133
|
+
|
|
134
|
+
Requirements: Node.js 22.12+ and [pnpm](https://pnpm.io/) 10+.
|
|
117
135
|
|
|
118
136
|
```bash
|
|
119
137
|
git clone https://github.com/<you>/hammadev.git
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hammadev",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.1",
|
|
4
4
|
"description": "Local handoff and shared-memory CLI for Codex and Claude Code",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"files": [
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"hamma": "./dist/cli.js"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
|
-
"node": ">=
|
|
15
|
+
"node": ">=22.12.0"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|