empirical-sdd 0.30.0 → 0.31.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 +32 -1
- package/README.md +6 -2
- package/dist/cli.js +8418 -7720
- package/dist/demo-integration-repair.js +8439 -7802
- package/dist/demo-ticket-policy.js +8458 -7821
- package/dist/index.d.ts +3 -2
- package/dist/index.js +8365 -7725
- package/dist/integrations.js +45 -29
- package/dist/knowledge.d.ts +1 -1
- package/dist/linear-mcp-tracking.d.ts +64 -0
- package/dist/mcp.js +8397 -7722
- package/dist/protocol.d.ts +1 -1
- package/dist/protocol.js +5 -23
- package/dist/tracking.d.ts +174 -1
- package/dist/types.d.ts +90 -1
- package/docs/demo.md +28 -1
- package/docs/mcp.md +40 -1
- package/docs/protocol.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,36 @@ under the alpha rules in [docs/versioning.md](docs/versioning.md).
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.31.0] - 2026-09-04
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added authenticated Linear MCP tracker transport that reuses the host's
|
|
16
|
+
existing OAuth connection without copying credentials, with durable
|
|
17
|
+
discovery, preview, prepare, reconciliation, and exactly-once acceptance.
|
|
18
|
+
- Added a conditional design-language knowledge page for repositories with a
|
|
19
|
+
product interface, supporting explicit import, repository-derived proposals,
|
|
20
|
+
and human-confirmed elicitation while excluding documentation-only surfaces.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Projected the shipped specialist-consult protocol into living capability and
|
|
25
|
+
workflow-routing specifications so required, bounded advisories remain
|
|
26
|
+
reviewable and protected from specification drift.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- Kept Linear OAuth timeout handling live on Windows and isolated its complete
|
|
31
|
+
test suite from the Bun coverage instrumentation hang while retaining
|
|
32
|
+
aggregate coverage enforcement.
|
|
33
|
+
- Hardened Linear MCP bridge persistence against symlink escapes and serialized
|
|
34
|
+
intent acceptance so concurrent submissions cannot both advance one durable
|
|
35
|
+
operation.
|
|
36
|
+
|
|
37
|
+
### Migration
|
|
38
|
+
|
|
39
|
+
No migration required.
|
|
40
|
+
|
|
11
41
|
## [0.30.0] - 2026-09-01
|
|
12
42
|
|
|
13
43
|
### Added
|
|
@@ -351,7 +381,8 @@ Published through GitHub Actions trusted publishing with npm provenance.
|
|
|
351
381
|
|
|
352
382
|
- Prepared and released package version `0.20.2`.
|
|
353
383
|
|
|
354
|
-
[Unreleased]: https://github.com/goempirical/empirical-sdd/compare/v0.
|
|
384
|
+
[Unreleased]: https://github.com/goempirical/empirical-sdd/compare/v0.31.0...HEAD
|
|
385
|
+
[0.31.0]: https://github.com/goempirical/empirical-sdd/compare/v0.30.0...v0.31.0
|
|
355
386
|
[0.30.0]: https://github.com/goempirical/empirical-sdd/compare/v0.29.0...v0.30.0
|
|
356
387
|
[0.29.0]: https://github.com/goempirical/empirical-sdd/compare/v0.28.0...v0.29.0
|
|
357
388
|
[0.28.0]: https://github.com/goempirical/empirical-sdd/compare/v0.27.0...v0.28.0
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Empirical is a repository-native harness for coding agents. The model writes;
|
|
|
6
6
|
Empirical keeps the contract, progress, proof, and exact next action in Git so
|
|
7
7
|
work can resume across sessions, agents, and machines.
|
|
8
8
|
|
|
9
|
-
> Empirical 0.
|
|
9
|
+
> Empirical 0.31 is alpha software and requires Node.js 22 or newer.
|
|
10
10
|
|
|
11
11
|
**[Open the practical harness guide](https://goempirical.github.io/empirical-sdd/)**
|
|
12
12
|
for the visual walkthrough, diagrams, generated-file explorer, and complete
|
|
@@ -109,7 +109,11 @@ install or update. Linear setup then uses an in-memory OAuth client for Linear's
|
|
|
109
109
|
official remote MCP endpoint, with browser authorization through negotiated URL
|
|
110
110
|
elicitation. Empirical never reads Copilot's token store or persists the OAuth
|
|
111
111
|
token. The guarded `LINEAR_SECRET_KEY` host file remains a fallback, not the
|
|
112
|
-
default requirement for an OAuth-capable session.
|
|
112
|
+
default requirement for an OAuth-capable session. On Codex, Policy v2 can use
|
|
113
|
+
`connection: "linear-mcp"`: Empirical emits durable secret-free intents, Codex
|
|
114
|
+
executes them through the authenticated Linear MCP tools, and validated results
|
|
115
|
+
converge the same binding, milestone, and strict-gate records without sharing
|
|
116
|
+
the OAuth token.
|
|
113
117
|
|
|
114
118
|
## Documentation
|
|
115
119
|
|