agent-orchestrator-kit 0.1.7 → 0.1.8
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/CHANGELOG.md +6 -0
- package/README.md +50 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.1.8] - 2026-07-07
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- **README** — Quickstart block (new vs existing project) and upgrade guide for `status` / `gate-check` / GitHub Spec Verifier adoption
|
|
9
|
+
|
|
5
10
|
## [0.1.7] - 2026-07-07
|
|
6
11
|
|
|
7
12
|
### Added
|
|
@@ -89,6 +94,7 @@ All notable changes to this project will be documented in this file.
|
|
|
89
94
|
### Added
|
|
90
95
|
- Initial release: 5-role orchestration pipeline, `/opsx:*` commands, IDE sync
|
|
91
96
|
|
|
97
|
+
[0.1.8]: https://github.com/makshc2/agent-orchestrator-kit/compare/v0.1.7...v0.1.8
|
|
92
98
|
[0.1.7]: https://github.com/makshc2/agent-orchestrator-kit/compare/v0.1.6...v0.1.7
|
|
93
99
|
[0.1.5]: https://github.com/makshc2/agent-orchestrator-kit/compare/v0.1.4...v0.1.5
|
|
94
100
|
[0.1.4]: https://github.com/makshc2/agent-orchestrator-kit/compare/v0.1.3...v0.1.4
|
package/README.md
CHANGED
|
@@ -26,6 +26,28 @@ Without role separation, AI agents tend to mix thinking with implementation, ski
|
|
|
26
26
|
|
|
27
27
|
The `AGENTS.md` / `CLAUDE.md` files tell each IDE exactly what the roles are, so you don't repeat yourself every session.
|
|
28
28
|
|
|
29
|
+
## Quickstart
|
|
30
|
+
|
|
31
|
+
**🆕 New project:**
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm i -D @fission-ai/openspec && npx openspec init
|
|
35
|
+
npx agent-orchestrator-kit@latest init --profile generic --ci gitlab --spec-verify
|
|
36
|
+
./scripts/sync-local-agent-skills.sh
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
See [Installation](#installation) for profile/CI options.
|
|
40
|
+
|
|
41
|
+
**🔄 Already have the kit installed? Get `status` / `gate-check` / GitHub Spec Verifier (v0.1.7+):**
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
npx agent-orchestrator-kit@latest update
|
|
45
|
+
./scripts/sync-local-agent-skills.sh
|
|
46
|
+
npx agent-orchestrator-kit@latest status # try it right away
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
See [Upgrading an existing project](#upgrading-an-existing-project-to-v017-status--gate-check--github-spec-verifier) for what changes and what stays opt-in.
|
|
50
|
+
|
|
29
51
|
## Installation
|
|
30
52
|
|
|
31
53
|
### Prerequisites
|
|
@@ -444,6 +466,31 @@ npx agent-orchestrator-kit update
|
|
|
444
466
|
- `openspec/changes/`
|
|
445
467
|
- Any project-conventions skills
|
|
446
468
|
|
|
469
|
+
### Upgrading an existing project to v0.1.7 (status / gate-check / GitHub Spec Verifier)
|
|
470
|
+
|
|
471
|
+
If the kit is already installed and you just want the new deterministic gates, no re-`init` needed:
|
|
472
|
+
|
|
473
|
+
```bash
|
|
474
|
+
npx agent-orchestrator-kit@latest update
|
|
475
|
+
./scripts/sync-local-agent-skills.sh
|
|
476
|
+
```
|
|
477
|
+
|
|
478
|
+
What this gets you automatically:
|
|
479
|
+
- `.github/workflows/agent-verify.yml` / `.gitlab/agent-verify.yml` refreshed with a `gate-check` step (fails CI if `src/` changed without an approved `review.md`)
|
|
480
|
+
- `sync` (both the CLI command and the shell script) starts removing skills that no longer exist in `.agents/skills/`
|
|
481
|
+
- `agent-orchestrator status` and `agent-orchestrator gate-check` are available immediately (they ship inside `bin/`, not as opt-in templates) — try `npx agent-orchestrator-kit@latest status` right away
|
|
482
|
+
|
|
483
|
+
Two things `update` will **not** do for you (by design — opt-in, and it never touches your CI root file):
|
|
484
|
+
|
|
485
|
+
1. **GitLab-only projects that already had `--spec-verify`** — `update` refreshes `.gitlab/spec-verify.yml` and the scripts automatically (only because they already exist in your project).
|
|
486
|
+
2. **Adding GitHub Spec Verifier where you didn't have it before** — that's a new opt-in, run it once:
|
|
487
|
+
```bash
|
|
488
|
+
npx agent-orchestrator-kit@latest init --ci github --spec-verify
|
|
489
|
+
```
|
|
490
|
+
then add the `AMP_API_KEY` repo secret (Settings → Secrets and variables → Actions).
|
|
491
|
+
|
|
492
|
+
Nothing about `update` retroactively edits your `.gitlab-ci.yml` / already-included workflows — if `gate-check` doesn't seem to run, check that your `.gitlab-ci.yml` still `include`s `.gitlab/agent-verify.yml` (GitHub Actions picks up `.github/workflows/*.yml` automatically, no include step needed).
|
|
493
|
+
|
|
447
494
|
## Profiles
|
|
448
495
|
|
|
449
496
|
| Profile | Stack | Extra (separate install) |
|
|
@@ -584,6 +631,9 @@ openspec/ # Committed — spec-driven workflow
|
|
|
584
631
|
|
|
585
632
|
## Changelog
|
|
586
633
|
|
|
634
|
+
### 0.1.8
|
|
635
|
+
- README — Quickstart (new vs existing project) and upgrade guide for adopting `status`, `gate-check`, and GitHub Spec Verifier
|
|
636
|
+
|
|
587
637
|
### 0.1.7
|
|
588
638
|
- `agent-orchestrator status` — dashboard for active OpenSpec changes: task progress, review verdict, archive readiness
|
|
589
639
|
- `agent-orchestrator gate-check` — deterministic review-gate check (exit non-zero without an approved `review.md`); wired into both `agent-verify.yml` CI fragments
|
package/package.json
CHANGED