@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 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.4`
31
+ - `@xenonbyte/da-vinci-workflow@0.2.5`
32
32
 
33
- Release highlights for `0.2.4`:
33
+ Release highlights for `0.2.5`:
34
34
 
35
- - design-approval stale detection now checks `design.md`, `pencil-design.md`, and `pencil-bindings.md` instead of only one artifact timestamp
36
- - `lint-tasks` verification command parsing now accepts `da-vinci verify-*` commands from the current task template
37
- - `worktree-preflight` now warns and recommends isolation when a project is not a git repository (or `git status` cannot be read)
38
- - `supervisor-review` retry parsing now honors explicit `--review-retries 0` without falling back to default retries
39
- - `task-execution` and `task-review` resolve-failure messaging now keeps defensive fallback text instead of leaking `undefined`
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.4`
33
+ - `@xenonbyte/da-vinci-workflow@0.2.5`
34
34
 
35
- `0.2.4` 版本重点:
35
+ `0.2.5` 版本重点:
36
36
 
37
- - 设计批准的 stale 检测从单一 `design.md` 扩展为同时检查 `design.md`、`pencil-design.md`、`pencil-bindings.md`
38
- - `lint-tasks` verification command 解析已支持当前模板里的 `da-vinci verify-*` 命令
39
- - `worktree-preflight` 在“非 git 仓库”或 `git status` 失败时会返回告警并建议隔离执行
40
- - `supervisor-review` 现在正确处理显式 `--review-retries 0`,不再错误回退到默认重试
41
- - `task-execution` / `task-review` resolve-change 失败路径上补强了防御性错误回退,避免输出 `undefined`
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