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 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.30.0...HEAD
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.29 is alpha software and requires Node.js 22 or newer.
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