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 +13 -0
- package/README.es.md +1 -0
- package/README.hi.md +1 -0
- package/README.md +1 -0
- package/README.pt.md +1 -0
- package/README.zh.md +1 -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 +2 -1
- package/src/version.ts +1 -1
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
package/README.hi.md
CHANGED
package/README.md
CHANGED
package/README.pt.md
CHANGED
package/README.zh.md
CHANGED
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.
|
|
1997
|
+
const VERSION = "0.1.3";
|
|
1998
1998
|
//#endregion
|
|
1999
1999
|
//#region src/index.ts
|
|
2000
2000
|
/**
|
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-industry-research",
|
|
3
|
-
"version": "0.1.
|
|
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