empirical-sdd 0.25.0 → 0.26.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 +28 -5
- package/dist/cli.js +267 -61
- package/dist/demo-integration-repair.js +132 -33
- package/dist/demo-ticket-policy.d.ts +1 -0
- package/dist/demo-ticket-policy.js +28680 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +134 -33
- package/dist/integrations.js +35 -15
- package/dist/mcp.js +138 -36
- package/dist/protocol.d.ts +1 -1
- package/dist/protocol.js +1 -1
- package/dist/setup.d.ts +1 -1
- package/dist/tracking.d.ts +321 -1
- package/dist/types.d.ts +21 -0
- package/docs/demo.md +176 -0
- package/docs/mcp.md +29 -9
- package/docs/protocol.md +30 -1
- package/docs/security.md +3 -1
- package/docs/versioning.md +6 -4
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,32 @@ under the alpha rules in [docs/versioning.md](docs/versioning.md).
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.26.0] - 2026-08-20
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added selectable `concise` or `detailed` interaction questions across project
|
|
16
|
+
configuration, CLI, MCP, action packets, status rendering, and generated
|
|
17
|
+
agent guidance. New recommended setup is concise; existing missing fields
|
|
18
|
+
remain detailed.
|
|
19
|
+
- Added strict optional Tracker Policy v2 ticket-rule matrices, including the
|
|
20
|
+
`features+large-fixes` preset and resolved change-type/requirement status.
|
|
21
|
+
- Added a packaged provider-independent no-ticket feature demo that proves one
|
|
22
|
+
guarded create, one durable binding, and zero live-network calls.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- Optional ticket work with no explicit reference now remains local before
|
|
27
|
+
authentication or provider access and no longer causes a redundant ticket
|
|
28
|
+
question; required work retains attach, marker reconciliation, and
|
|
29
|
+
exactly-once guarded creation.
|
|
30
|
+
|
|
31
|
+
### Migration
|
|
32
|
+
|
|
33
|
+
- Existing Schema 5 and Tracker Policy v1/v2 repositories require no state
|
|
34
|
+
migration. Repositories without an explicit question mode retain detailed
|
|
35
|
+
questions until configured otherwise; new setup recommends concise mode.
|
|
36
|
+
|
|
11
37
|
## [0.25.0] - 2026-08-19
|
|
12
38
|
|
|
13
39
|
### Added
|
|
@@ -157,7 +183,8 @@ Published through GitHub Actions trusted publishing with npm provenance.
|
|
|
157
183
|
|
|
158
184
|
- Prepared and released package version `0.20.2`.
|
|
159
185
|
|
|
160
|
-
[Unreleased]: https://github.com/goempirical/empirical-sdd/compare/v0.
|
|
186
|
+
[Unreleased]: https://github.com/goempirical/empirical-sdd/compare/v0.26.0...HEAD
|
|
187
|
+
[0.26.0]: https://github.com/goempirical/empirical-sdd/compare/v0.25.0...v0.26.0
|
|
161
188
|
[0.25.0]: https://github.com/goempirical/empirical-sdd/compare/v0.24.1...v0.25.0
|
|
162
189
|
[0.24.1]: https://github.com/goempirical/empirical-sdd/compare/v0.24.0...v0.24.1
|
|
163
190
|
[0.24.0]: https://github.com/goempirical/empirical-sdd/compare/v0.23.0...v0.24.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.26 is alpha software. It requires Node.js 22 or newer.
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
@@ -35,6 +35,7 @@ artifacts; unmanaged or unsafe conflicts are preserved and remain visible.
|
|
|
35
35
|
- Isolated parallel work through linked Git worktrees.
|
|
36
36
|
- Guided Linear, GitHub Issues + Projects, or Jira ticket mirrors with automatic
|
|
37
37
|
binding, milestone comments, and safe evidence projection.
|
|
38
|
+
- Selectable concise or detailed agent questions and runtime summaries.
|
|
38
39
|
- Explicit, guarded delivery and npm publication boundaries.
|
|
39
40
|
|
|
40
41
|
Completion is reported only at the highest proven level: implemented,
|
|
@@ -42,10 +43,17 @@ verified, integrated, delivered, or published.
|
|
|
42
43
|
|
|
43
44
|
## Tracker setup
|
|
44
45
|
|
|
45
|
-
`empirical-init` always shows
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
`empirical-init` always shows Interaction and Tracker sections. New recommended
|
|
47
|
+
setup selects **concise** questions: agents ask only when an answer changes
|
|
48
|
+
scope, architecture, authorization, or a safety gate. **Detailed** preserves
|
|
49
|
+
the expanded guidance used by existing Schema-5 repositories. Automation can
|
|
50
|
+
set the same value with `--questions concise|detailed` or the MCP `questions`
|
|
51
|
+
field.
|
|
52
|
+
|
|
53
|
+
When no tracker choice exists, Init recommends **Track work by type** and
|
|
54
|
+
requires choosing that or **No tracking** before setup can be saved. Track work
|
|
55
|
+
selects Linear, GitHub Projects, or Jira; No tracking persists a provider-free
|
|
56
|
+
choice and makes no provider requests.
|
|
49
57
|
|
|
50
58
|
Authentication starts with OAuth when a trusted host supplies a connection.
|
|
51
59
|
MCP clients may open that connection only through explicitly negotiated
|
|
@@ -85,6 +93,21 @@ or linked only after repository containment, media, size, and digest checks.
|
|
|
85
93
|
Existing Tracker Policy v1 files remain valid with manual binding and legacy
|
|
86
94
|
projection until deliberately upgraded.
|
|
87
95
|
|
|
96
|
+
An optional strict `ticketRules` matrix refines `ensure` by change type and
|
|
97
|
+
workflow size. The recommended `features+large-fixes` preset is:
|
|
98
|
+
|
|
99
|
+
| Work | Fast | Quick | Complex |
|
|
100
|
+
| --- | --- | --- | --- |
|
|
101
|
+
| Feature | required | required | required |
|
|
102
|
+
| Fix | optional | required | required |
|
|
103
|
+
| Chore | optional | optional | optional |
|
|
104
|
+
|
|
105
|
+
Optional work with no referenced ticket stays local without OAuth, provider
|
|
106
|
+
access, ticket creation, or a redundant question. One explicit reference is
|
|
107
|
+
attached; multiple references fail closed. See the [demo](docs/demo.md) for a
|
|
108
|
+
provider-independent new-feature run and [MCP documentation](docs/mcp.md) for
|
|
109
|
+
the complete custom JSON form.
|
|
110
|
+
|
|
88
111
|
## CLI
|
|
89
112
|
|
|
90
113
|
| Command | Purpose |
|