@xenonbyte/da-vinci-workflow 0.2.4 → 0.2.5
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 +19 -0
- package/README.md +7 -7
- package/README.zh-CN.md +7 -7
- package/SKILL.md +45 -704
- package/docs/dv-command-reference.md +15 -3
- package/docs/prompt-entrypoints.md +1 -0
- package/docs/skill-contract-maintenance.md +14 -0
- package/docs/zh-CN/dv-command-reference.md +15 -3
- package/docs/zh-CN/prompt-entrypoints.md +1 -0
- package/lib/cli/helpers.js +43 -0
- package/lib/cli/lint-family.js +56 -0
- package/lib/cli/verify-family.js +79 -0
- package/lib/cli.js +45 -172
- package/lib/planning-parsers.js +8 -1
- package/lib/scaffold.js +454 -23
- package/lib/utils.js +19 -0
- package/lib/verify.js +1160 -88
- package/package.json +1 -1
- package/references/skill-workflow-detail.md +66 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.2.5 - 2026-04-02
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- modular CLI command-family handlers for verify/lint surfaces via `lib/cli/verify-family.js`, `lib/cli/lint-family.js`, and shared helpers in `lib/cli/helpers.js`
|
|
7
|
+
- framework-aware scaffold template coverage for React/Next.js/Vue/Svelte with explicit fallback metadata and expanded verify/scaffold regression tests
|
|
8
|
+
- skill-contract split guardrails with `references/skill-workflow-detail.md`, `docs/skill-contract-maintenance.md`, and `scripts/test-skill-contract-core.js`
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- `verify-implementation` and `verify-structure` now emit richer evidence and incremental scan metadata (mode, confidence, boundaries, filtered input stats)
|
|
12
|
+
- core `SKILL.md` was reduced to invariant workflow contract plus on-demand reference map; stage-specific procedures now live in owner references
|
|
13
|
+
- shared path helpers (`normalizeRelativePath`, `pathWithinRoot`) moved into `lib/utils.js` to avoid duplicated logic drift
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- `resolveImplementationLanding` now resolves `.vue`, `.svelte`, and SvelteKit `src/routes/<route>/+page.svelte` landings
|
|
17
|
+
- `verify-implementation` no longer treats regex literal bodies as syntax-aware high-confidence coverage evidence
|
|
18
|
+
- `verify-structure` no longer treats comment-only pseudo markup as real structural evidence
|
|
19
|
+
- `--changed-files` now blocks symlink-based root-escape paths via realpath boundary checks
|
|
20
|
+
- framework detection no longer reports definitive `unknown` when probe scans hit file-count limits; now marked ambiguous with warning context
|
|
21
|
+
|
|
3
22
|
## v0.2.4 - 2026-04-02
|
|
4
23
|
|
|
5
24
|
### Changed
|
package/README.md
CHANGED
|
@@ -28,15 +28,15 @@ This workflow is intended for:
|
|
|
28
28
|
|
|
29
29
|
Latest published npm package:
|
|
30
30
|
|
|
31
|
-
- `@xenonbyte/da-vinci-workflow@0.2.
|
|
31
|
+
- `@xenonbyte/da-vinci-workflow@0.2.5`
|
|
32
32
|
|
|
33
|
-
Release highlights for `0.2.
|
|
33
|
+
Release highlights for `0.2.5`:
|
|
34
34
|
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
- `
|
|
39
|
-
-
|
|
35
|
+
- verify and lint command handling is now modularized (`lib/cli/verify-family.js`, `lib/cli/lint-family.js`, `lib/cli/helpers.js`) while preserving `--continue-on-error` semantics
|
|
36
|
+
- verification surfaces now expose richer evidence metadata and incremental scan reporting for `--changed-files`
|
|
37
|
+
- scaffold now supports framework-aware reviewable templates for Next.js, React, Vue, and Svelte, while preserving existing implementation landing shape precedence
|
|
38
|
+
- `resolveImplementationLanding` now resolves `.vue`, `.svelte`, and SvelteKit `+page.svelte` route landings
|
|
39
|
+
- verification hardening fixes now block regex-literal false positives, comment-only pseudo-markup structure passes, and symlink-escape changed-files paths
|
|
40
40
|
|
|
41
41
|
## Discipline And Orchestration Upgrade
|
|
42
42
|
|
package/README.zh-CN.md
CHANGED
|
@@ -30,15 +30,15 @@ Da Vinci 是一个把产品需求一路推进到结构化规格、Pencil 设计
|
|
|
30
30
|
|
|
31
31
|
最新已发布 npm 包:
|
|
32
32
|
|
|
33
|
-
- `@xenonbyte/da-vinci-workflow@0.2.
|
|
33
|
+
- `@xenonbyte/da-vinci-workflow@0.2.5`
|
|
34
34
|
|
|
35
|
-
`0.2.
|
|
35
|
+
`0.2.5` 版本重点:
|
|
36
36
|
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
- `
|
|
41
|
-
-
|
|
37
|
+
- verify/lint 命令分层模块化(`lib/cli/verify-family.js`、`lib/cli/lint-family.js`、`lib/cli/helpers.js`),并保持 `--continue-on-error` 语义不变
|
|
38
|
+
- verification 系列命令增加更细粒度 evidence 元数据与 `--changed-files` 增量扫描报告
|
|
39
|
+
- scaffold 增加 Next.js / React / Vue / Svelte 框架感知模板,并保持“已有 landing 形态优先”
|
|
40
|
+
- `resolveImplementationLanding` 现已支持 `.vue`、`.svelte`,以及 SvelteKit 的 `+page.svelte` 路由 landing
|
|
41
|
+
- verification 加固修复:阻断 regex 字面量误判、注释伪 markup 误判通过、以及 symlink 绕过 `--changed-files` 根目录限制
|
|
42
42
|
|
|
43
43
|
## Discipline And Orchestration 升级
|
|
44
44
|
|