dsh-industry-research 0.1.2 → 0.1.3

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,19 @@ 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.3] - 2026-08-23
9
+
10
+ ### Added
11
+
12
+ - `verify:skills` gate (`scripts/check-skills.mjs` + `test/skills.spec.ts`): every packaged skill must carry `name`/`description` frontmatter and resolve its cited `references/*.md`; wired into the CI gates.
13
+ - Tool triple-interface assertions (`test/tools.spec.ts`): schema + canonical value + content blocks asserted together for all four tools through the real registry.
14
+ - Web degradation tests (`test/web.spec.ts` + `test/track.spec.ts`): per-request timeout signal firing, caller-cancel signal propagation, machine-routable web error codes, `requireWeb` fail-closed, and search-provider throw fail-closed.
15
+
16
+ ### Changed
17
+
18
+ - Harden the illegal-config negatives: `track.maxResultsPerTopic` and `scan.maxFileBytes` / `scan.maxFigureCandidates` out-of-range now have unit and Loader-level regression cases.
19
+ - Add a fiber-dispose assertion proving the four tools and both skills disappear from the authoritative registries after `dispose()` (HMR-safety), plus a direct `'default' in builtEntry === false` assertion on the shipped bundle.
20
+
8
21
  ## [0.1.2] - 2026-08-22
9
22
 
10
23
  ### Changed
package/README.es.md CHANGED
@@ -157,6 +157,7 @@ pnpm test
157
157
  pnpm run build
158
158
  pnpm run verify:self-contained && pnpm run verify:artifacts
159
159
  pnpm run verify:readme-sync
160
+ pnpm run verify:skills
160
161
  pnpm run pack:check
161
162
  ```
162
163
 
package/README.hi.md CHANGED
@@ -157,6 +157,7 @@ pnpm test
157
157
  pnpm run build
158
158
  pnpm run verify:self-contained && pnpm run verify:artifacts
159
159
  pnpm run verify:readme-sync
160
+ pnpm run verify:skills
160
161
  pnpm run pack:check
161
162
  ```
162
163
 
package/README.md CHANGED
@@ -158,6 +158,7 @@ pnpm test
158
158
  pnpm run build
159
159
  pnpm run verify:self-contained && pnpm run verify:artifacts
160
160
  pnpm run verify:readme-sync
161
+ pnpm run verify:skills
161
162
  pnpm run pack:check
162
163
  ```
163
164
 
package/README.pt.md CHANGED
@@ -157,6 +157,7 @@ pnpm test
157
157
  pnpm run build
158
158
  pnpm run verify:self-contained && pnpm run verify:artifacts
159
159
  pnpm run verify:readme-sync
160
+ pnpm run verify:skills
160
161
  pnpm run pack:check
161
162
  ```
162
163
 
package/README.zh.md CHANGED
@@ -157,6 +157,7 @@ pnpm test
157
157
  pnpm run build
158
158
  pnpm run verify:self-contained && pnpm run verify:artifacts
159
159
  pnpm run verify:readme-sync
160
+ pnpm run verify:skills
160
161
  pnpm run pack:check
161
162
  ```
162
163
 
package/lib/index.js CHANGED
@@ -1994,7 +1994,7 @@ function buildIndustryReportTool(ctx, config) {
1994
1994
  * @module dsh-industry-research/version
1995
1995
  */
1996
1996
  /** The package version. */
1997
- const VERSION = "0.1.2";
1997
+ const VERSION = "0.1.3";
1998
1998
  //#endregion
1999
1999
  //#region src/index.ts
2000
2000
  /**
@@ -4,5 +4,5 @@
4
4
  * @module dsh-industry-research/version
5
5
  */
6
6
  /** The package version. */
7
- export declare const VERSION = "0.1.2";
7
+ export declare const VERSION = "0.1.3";
8
8
  //# sourceMappingURL=version.d.ts.map
@@ -4,5 +4,5 @@
4
4
  * @module dsh-industry-research/version
5
5
  */
6
6
  /** The package version. */
7
- export const VERSION = '0.1.2';
7
+ export const VERSION = '0.1.3';
8
8
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-industry-research",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Industry and company research domain pack for DeepSeek Harness: methodology skills, an industry-chain structure model (industry_map), public-source policy/news tracking over ctx.web (industry_track), company scan cards (company_scan), and auditable research reports with an optional ctx.researchReport sealing bridge and a builtin Markdown fallback (industry_report). Research only — not investment advice.",
5
5
  "author": "dsh-industry-research contributors",
6
6
  "repository": {
@@ -137,6 +137,7 @@
137
137
  "verify:self-contained": "node scripts/verify-self-contained.mjs",
138
138
  "verify:artifacts": "node scripts/verify-artifacts.mjs",
139
139
  "verify:readme-sync": "node scripts/check-readme-sync.mjs",
140
+ "verify:skills": "node scripts/check-skills.mjs",
140
141
  "pack:check": "node scripts/prepare.mjs && pnpm pack"
141
142
  },
142
143
  "license": "Apache-2.0"
package/src/version.ts CHANGED
@@ -5,4 +5,4 @@
5
5
  */
6
6
 
7
7
  /** The package version. */
8
- export const VERSION = '0.1.2'
8
+ export const VERSION = '0.1.3'