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 +7 -0
- package/lib/index.js +1 -1
- package/lib/types/version.d.ts +1 -1
- package/lib/types/version.js +1 -1
- package/package.json +3 -3
- package/src/version.ts +1 -1
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
package/lib/types/version.d.ts
CHANGED
package/lib/types/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-research-report",
|
|
3
|
-
"version": "0.1.
|
|
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:
|
|
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": "
|
|
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