empirical-sdd 0.26.0 → 0.27.0
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 +28 -1
- package/README.md +1 -1
- package/dist/cli.js +481 -63
- package/dist/demo-integration-repair.js +402 -53
- package/dist/demo-ticket-policy.js +402 -53
- package/dist/index.js +402 -53
- package/dist/integrations.js +2 -2
- package/dist/lifecycle.d.ts +7 -2
- package/dist/mcp.js +405 -56
- package/dist/protocol.d.ts +1 -1
- package/dist/protocol.js +1 -1
- package/dist/tracker-comments.d.ts +47 -0
- package/docs/demo.md +1 -1
- package/docs/protocol.md +1 -1
- package/docs/versioning.md +5 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,31 @@ under the alpha rules in [docs/versioning.md](docs/versioning.md).
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.27.0] - 2026-08-21
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Made Tracker Policy v2 lifecycle comments human-first across GitHub, Linear,
|
|
16
|
+
and Jira, with plain-language status, focused action requests, friendly
|
|
17
|
+
evidence links, native Jira formatting, and provider-safe exact recovery
|
|
18
|
+
markers that remain compatible with existing comments.
|
|
19
|
+
|
|
20
|
+
### Migration
|
|
21
|
+
|
|
22
|
+
- Existing Schema 5 and Tracker Policy v1/v2 repositories require no state
|
|
23
|
+
migration. Visibility cadence, ticket bindings, issue descriptions, and
|
|
24
|
+
historical comments remain compatible.
|
|
25
|
+
|
|
26
|
+
## [0.26.1] - 2026-08-21
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- Made `empirical update` invoke and verify the CLI installed under npm's actual
|
|
31
|
+
global prefix, then fail with actionable diagnostics when an older Empirical
|
|
32
|
+
installation still shadows it through `PATH`.
|
|
33
|
+
- Bounded Linear team discovery pages so the nested project and workflow-state
|
|
34
|
+
connections stay below Linear's GraphQL query-complexity limit.
|
|
35
|
+
|
|
11
36
|
## [0.26.0] - 2026-08-20
|
|
12
37
|
|
|
13
38
|
### Added
|
|
@@ -183,7 +208,9 @@ Published through GitHub Actions trusted publishing with npm provenance.
|
|
|
183
208
|
|
|
184
209
|
- Prepared and released package version `0.20.2`.
|
|
185
210
|
|
|
186
|
-
[Unreleased]: https://github.com/goempirical/empirical-sdd/compare/v0.
|
|
211
|
+
[Unreleased]: https://github.com/goempirical/empirical-sdd/compare/v0.27.0...HEAD
|
|
212
|
+
[0.27.0]: https://github.com/goempirical/empirical-sdd/compare/v0.26.1...v0.27.0
|
|
213
|
+
[0.26.1]: https://github.com/goempirical/empirical-sdd/compare/v0.26.0...v0.26.1
|
|
187
214
|
[0.26.0]: https://github.com/goempirical/empirical-sdd/compare/v0.25.0...v0.26.0
|
|
188
215
|
[0.25.0]: https://github.com/goempirical/empirical-sdd/compare/v0.24.1...v0.25.0
|
|
189
216
|
[0.24.1]: https://github.com/goempirical/empirical-sdd/compare/v0.24.0...v0.24.1
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Agent-neutral, resumable spec-driven development for coding agents. Empirical
|
|
|
4
4
|
turns an ordinary change request into a deterministic workflow with durable
|
|
5
5
|
state, reviewable evidence, and safe Git integration.
|
|
6
6
|
|
|
7
|
-
> Empirical 0.
|
|
7
|
+
> Empirical 0.27 is alpha software. It requires Node.js 22 or newer.
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|