empirical-sdd 0.27.0 → 0.28.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 +30 -1
- package/README.md +8 -4
- package/dist/cli.js +1013 -106
- package/dist/core.d.ts +11 -1
- package/dist/demo-integration-repair.js +992 -119
- package/dist/demo-ticket-policy.js +947 -103
- package/dist/doctor.d.ts +6 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +946 -102
- package/dist/integrations.d.ts +26 -3
- package/dist/integrations.js +523 -65
- package/dist/mcp.js +953 -103
- package/dist/protocol.d.ts +1 -1
- package/dist/protocol.js +1 -1
- package/dist/routing.d.ts +2 -0
- package/dist/specialists.d.ts +86 -0
- package/dist/types.d.ts +42 -0
- package/docs/demo.md +18 -11
- package/docs/mcp.md +8 -4
- package/docs/protocol.md +1 -1
- package/docs/security.md +5 -1
- package/docs/versioning.md +7 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,34 @@ under the alpha rules in [docs/versioning.md](docs/versioning.md).
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.28.0] - 2026-08-24
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added a deterministic specialist-consult protocol with bounded security and
|
|
16
|
+
UI/UX packets, structured advisory evidence, and domain-scoped blocking
|
|
17
|
+
without standing roles or persisted model reasoning.
|
|
18
|
+
- Added structured repository-activation inspection and Doctor findings for
|
|
19
|
+
missing, stale, malformed, unsafe, non-canonical, nested-shadowing, and
|
|
20
|
+
same-name global skill states, with exact per-runtime verification and reload
|
|
21
|
+
guidance.
|
|
22
|
+
- Added the native Windsurf workspace skill, nested-directory resolution, root
|
|
23
|
+
Codex override reconciliation, and linked-worktree isolation coverage.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Front-loaded mutation trigger metadata and marker-owned instructions so
|
|
28
|
+
bounded host context cannot omit Empirical behind large user content, while
|
|
29
|
+
preserving user-owned bytes and keeping read-only work outside the workflow.
|
|
30
|
+
- Stopped treating current integration files as proof that an already-running
|
|
31
|
+
agent loaded them; reports now keep runtime loading explicitly unverified.
|
|
32
|
+
|
|
33
|
+
### Migration
|
|
34
|
+
|
|
35
|
+
- Existing Schema 5 and Tracker Policy v1/v2 repositories require no state
|
|
36
|
+
migration. Run Empirical Init once in existing repositories to reconcile the
|
|
37
|
+
expanded activation artifacts, then follow Doctor's runtime reload guidance.
|
|
38
|
+
|
|
11
39
|
## [0.27.0] - 2026-08-21
|
|
12
40
|
|
|
13
41
|
### Changed
|
|
@@ -208,7 +236,8 @@ Published through GitHub Actions trusted publishing with npm provenance.
|
|
|
208
236
|
|
|
209
237
|
- Prepared and released package version `0.20.2`.
|
|
210
238
|
|
|
211
|
-
[Unreleased]: https://github.com/goempirical/empirical-sdd/compare/v0.
|
|
239
|
+
[Unreleased]: https://github.com/goempirical/empirical-sdd/compare/v0.28.0...HEAD
|
|
240
|
+
[0.28.0]: https://github.com/goempirical/empirical-sdd/compare/v0.27.0...v0.28.0
|
|
212
241
|
[0.27.0]: https://github.com/goempirical/empirical-sdd/compare/v0.26.1...v0.27.0
|
|
213
242
|
[0.26.1]: https://github.com/goempirical/empirical-sdd/compare/v0.26.0...v0.26.1
|
|
214
243
|
[0.26.0]: https://github.com/goempirical/empirical-sdd/compare/v0.25.0...v0.26.0
|
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.28 is alpha software. It requires Node.js 22 or newer.
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
@@ -23,9 +23,13 @@ uses `@empirical-init`. Existing 0.22 repositories should invoke it once after
|
|
|
23
23
|
upgrading; configuration, history, and evidence are preserved.
|
|
24
24
|
|
|
25
25
|
Doctor verifies that completed repositories still have every required local
|
|
26
|
-
instruction, skill, and MCP bridge
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
instruction, native skill, and MCP bridge, including nested-directory and
|
|
27
|
+
linked-worktree discovery. It distinguishes missing, stale, malformed, unsafe,
|
|
28
|
+
non-canonical, shadowing, and global-collision states. Invoke `empirical-init`
|
|
29
|
+
explicitly to reconcile Empirical-owned artifacts; unmanaged or unsafe
|
|
30
|
+
conflicts are preserved. Correct files do not prove that an existing host
|
|
31
|
+
session loaded them, so Doctor reports runtime loading as unverified and gives
|
|
32
|
+
the applicable reload or fresh-session step.
|
|
29
33
|
|
|
30
34
|
## What it provides
|
|
31
35
|
|