dsh-research-report 0.1.0 → 0.1.1

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
@@ -5,6 +5,13 @@ All notable changes to this project are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.1] - 2026-08-19
9
+
10
+ ### Fixed
11
+
12
+ - `dshWorkshop` manifest conformance for OMDSH Workshop intake: permission token `network:ctx-web-only` (schema-safe, no dots) and capability kind `service` (enum).
13
+ - Release workflow now publishes to npm with provenance (`npm publish --access public --provenance`); the 0.1.0 tarball predates this fix, so provenance applies from the next release.
14
+
8
15
  ## [0.1.0] - 2026-08-19
9
16
 
10
17
  ### Added
package/lib/index.js CHANGED
@@ -907,7 +907,7 @@ function combineOutcomes(byte, bridge) {
907
907
  * @module dsh-research-report/version
908
908
  */
909
909
  /** The published package version. */
910
- const VERSION = "0.1.0";
910
+ const VERSION = "0.1.1";
911
911
  //#endregion
912
912
  //#region src/provider-local.ts
913
913
  /**
@@ -3,5 +3,5 @@
3
3
  * @module dsh-research-report/version
4
4
  */
5
5
  /** The published package version. */
6
- export declare const VERSION = "0.1.0";
6
+ export declare const VERSION = "0.1.1";
7
7
  //# sourceMappingURL=version.d.ts.map
@@ -3,5 +3,5 @@
3
3
  * @module dsh-research-report/version
4
4
  */
5
5
  /** The published package version. */
6
- export const VERSION = '0.1.0';
6
+ export const VERSION = '0.1.1';
7
7
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-research-report",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Verifiable research-report engine for DeepSeek Harness: a content-addressed evidence ledger (claim ↔ snapshot binding, tamper-evident) plus versioned sealed reports where every claim carries a verification verdict and the manifest hash seals the directory. Retrieval orchestration reuses the official ctx.web / ctx.jobs seams — no deep-research loop.",
5
5
  "author": "dsh-research-report contributors",
6
6
  "repository": {
@@ -60,7 +60,7 @@
60
60
  },
61
61
  "permissions": [
62
62
  "fs:workspace-write",
63
- "network:via-ctx.web-only",
63
+ "network:ctx-web-only",
64
64
  "session:read",
65
65
  "session:write",
66
66
  "native-code:none"
@@ -72,7 +72,7 @@
72
72
  },
73
73
  "capability": {
74
74
  "id": "research-report",
75
- "kind": "verifiable-reporting",
75
+ "kind": "service",
76
76
  "invocation": "mount the dsh-research-report bundle row",
77
77
  "expected": "provides ctx.researchReport (assemble), the evidence_add / research_report / ledger_query tools, and a content-addressed evidence ledger with tamper-evident sealed reports under the workspace"
78
78
  },
package/src/version.ts CHANGED
@@ -4,4 +4,4 @@
4
4
  */
5
5
 
6
6
  /** The published package version. */
7
- export const VERSION = '0.1.0'
7
+ export const VERSION = '0.1.1'