agent-orchestrator-kit 0.1.1 → 0.1.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
@@ -456,6 +456,10 @@ openspec/ # Committed — spec-driven workflow
456
456
 
457
457
  ## Changelog
458
458
 
459
+ ### 0.1.2
460
+ - Fix CLI: executable bit on `bin/agent-orchestrator.js` (`agent-orchestrator: not found`)
461
+ - Add `agent-orchestrator-kit` bin alias (matches package name for npx)
462
+
459
463
  ### 0.1.1
460
464
  - Added all OpenSpec skills (`openspec-*`, `spec-workflow-openspec`)
461
465
  - Added CI workflow template `.github/workflows/agent-verify.yml`
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-orchestrator-kit",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Universal AI agent orchestration kit for Cursor, Claude Code, and Amp Code — spec-driven pipeline with OpenSpec integration",
5
5
  "keywords": [
6
6
  "ai-agent",
@@ -24,7 +24,8 @@
24
24
  },
25
25
  "type": "module",
26
26
  "bin": {
27
- "agent-orchestrator": "./bin/agent-orchestrator.js"
27
+ "agent-orchestrator-kit": "bin/agent-orchestrator.js",
28
+ "agent-orchestrator": "bin/agent-orchestrator.js"
28
29
  },
29
30
  "files": [
30
31
  "bin/",
@@ -41,6 +42,7 @@
41
42
  "picocolors": "^1.0.0"
42
43
  },
43
44
  "scripts": {
45
+ "prepack": "chmod +x bin/agent-orchestrator.js",
44
46
  "test": "node --test test/*.test.js",
45
47
  "link": "npm link"
46
48
  }