agent-orchestrator-kit 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +4 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.1.4] - 2026-06-27
6
+
7
+ ### Added
8
+ - **Kit repo CI** — `.github/workflows/agent-verify.yml` (npm ci → OpenSpec validate → test)
9
+ - **OpenSpec devDependency** — `@fission-ai/openspec` for local and CI validation
10
+
5
11
  ## [0.1.3] - 2026-06-14
6
12
 
7
13
  ### Added
@@ -43,6 +49,7 @@ All notable changes to this project will be documented in this file.
43
49
  ### Added
44
50
  - Initial release: 5-role orchestration pipeline, `/opsx:*` commands, IDE sync
45
51
 
52
+ [0.1.4]: https://github.com/makshc2/agent-orchestrator-kit/compare/v0.1.3...v0.1.4
46
53
  [0.1.3]: https://github.com/makshc2/agent-orchestrator-kit/compare/v0.1.2...v0.1.3
47
54
  [0.1.2]: https://github.com/makshc2/agent-orchestrator-kit/compare/v0.1.1...v0.1.2
48
55
  [0.1.1]: https://github.com/makshc2/agent-orchestrator-kit/compare/v0.1.0...v0.1.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-orchestrator-kit",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
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",
@@ -49,5 +49,8 @@
49
49
  "link": "npm link",
50
50
  "release:check": "npm test && npm pack --dry-run",
51
51
  "release:tag": "git tag v$(node -p \"require('./package.json').version\")"
52
+ },
53
+ "devDependencies": {
54
+ "@fission-ai/openspec": "^1.4.1"
52
55
  }
53
56
  }