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 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 github:bakr-bagaber/dev-harness init --stack python --target my-project
6
+ npx dev-harness-cli init --stack python --target my-project
7
7
  cd my-project
8
- npx github:bakr-bagaber/dev-harness phase define
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 github:bakr-bagaber/dev-harness --help
15
+ npx dev-harness-cli --help
16
16
 
17
- # Global install from GitHub
18
- npm install -g https://github.com/bakr-bagaber/dev-harness.git
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
@@ -53,7 +53,7 @@ Exit codes:
53
53
  2 Usage error (bad arguments)
54
54
  3 Internal error`;
55
55
 
56
- const VERSION = '0.2.0';
56
+ const VERSION = '1.0.1';
57
57
 
58
58
  // Help text for JSON output
59
59
  function buildJsonHelp() {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "dev-harness-cli",
3
- "version": "1.0.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": "./cli/harness-dev.mjs"
7
+ "harness-dev": "cli/harness-dev.mjs"
8
8
  },
9
9
  "files": [
10
10
  "cli/",