oh-my-harness 0.2.0 → 0.2.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 +4 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -51,6 +51,10 @@ npx oh-my-harness init "TypeScript Next.js frontend with Python FastAPI backend"
|
|
|
51
51
|
# Or install globally
|
|
52
52
|
npm install -g oh-my-harness
|
|
53
53
|
oh-my-harness init --preset nextjs fastapi
|
|
54
|
+
|
|
55
|
+
# Short alias works too
|
|
56
|
+
omh init "React app with TDD"
|
|
57
|
+
omh catalog list
|
|
54
58
|
```
|
|
55
59
|
|
|
56
60
|
### What Gets Generated
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-harness",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Tame your AI coding agents with natural language",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"oh-my-harness": "dist/bin/oh-my-harness.js"
|
|
7
|
+
"oh-my-harness": "dist/bin/oh-my-harness.js",
|
|
8
|
+
"omh": "dist/bin/oh-my-harness.js"
|
|
8
9
|
},
|
|
9
10
|
"main": "dist/cli/index.js",
|
|
10
11
|
"types": "dist/cli/index.d.ts",
|