dev-harness-cli 1.0.0 → 1.0.2
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 +5 -5
- package/cli/lib/help.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,19 +3,19 @@
|
|
|
3
3
|
**Agent-agnostic development pipeline CLI.** Scaffold, phase orchestrate, gate validate, and iterate any software project — works with any coding agent (Claude Code, Codex, OpenCode, Cursor, etc.).
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npx
|
|
6
|
+
npx dev-harness-cli init --stack python --target my-project
|
|
7
7
|
cd my-project
|
|
8
|
-
npx
|
|
8
|
+
npx dev-harness-cli phase define
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
# Quick start (no install)
|
|
15
|
-
npx
|
|
15
|
+
npx dev-harness-cli --help
|
|
16
16
|
|
|
17
|
-
# Global install
|
|
18
|
-
npm install -g
|
|
17
|
+
# Global install
|
|
18
|
+
npm install -g dev-harness-cli
|
|
19
19
|
harness-dev --help
|
|
20
20
|
|
|
21
21
|
# Or clone and install
|
package/cli/lib/help.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev-harness-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Agent-agnostic software development harness CLI — scaffold, phase orchestration, gate validation for any coding agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"harness-dev": "
|
|
7
|
+
"harness-dev": "cli/harness-dev.mjs"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"cli/",
|