dw-kit 1.9.0 → 1.9.2

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.
Files changed (53) hide show
  1. package/.claude/agents/planner.md +100 -100
  2. package/.claude/agents/quality-checker.md +86 -86
  3. package/.claude/agents/researcher.md +93 -93
  4. package/.claude/agents/reviewer.md +126 -126
  5. package/.claude/hooks/supply-chain-scan.sh +0 -0
  6. package/.claude/rules/code-style.md +37 -37
  7. package/.claude/settings.json +2 -28
  8. package/.claude/skills/dw-kit-report/SKILL.md +38 -7
  9. package/.claude/skills/dw-plan/template-plan.md +47 -47
  10. package/.claude/skills/dw-research/template-research.md +51 -51
  11. package/.claude/skills/dw-review/checklist.md +88 -88
  12. package/.claude/skills/dw-thinking/THINKING.md +91 -91
  13. package/.claude/templates/agent-report.md +35 -35
  14. package/.claude/templates/en/task-context.md +77 -73
  15. package/.claude/templates/en/task-plan.md +83 -79
  16. package/.claude/templates/en/task-progress.md +69 -65
  17. package/.claude/templates/pr-template.md +56 -56
  18. package/.claude/templates/task-context.md +77 -73
  19. package/.claude/templates/task-plan.md +83 -79
  20. package/.claude/templates/task-progress.md +69 -65
  21. package/.dw/adapters/claude-cli/extensions/README.md +36 -36
  22. package/.dw/adapters/claude-cli/generated/README.md +23 -23
  23. package/.dw/adapters/claude-cli/overrides/README.md +37 -37
  24. package/.dw/adapters/generic/README.md +21 -21
  25. package/.dw/config/presets/enterprise.yml +52 -52
  26. package/.dw/config/presets/small-team.yml +39 -39
  27. package/.dw/config/presets/solo-quick.yml +37 -37
  28. package/.dw/core/AGENTS.md +53 -53
  29. package/.dw/core/QUALITY.md +220 -220
  30. package/.dw/core/THINKING.md +126 -126
  31. package/.dw/core/WORKFLOW.md +17 -12
  32. package/.dw/core/templates/v2/spec.md +2 -0
  33. package/.dw/core/templates/v2/tracking.md +2 -0
  34. package/.dw/core/templates/v3/task.md +15 -22
  35. package/.dw/core/templates/vi/task-context.md +96 -92
  36. package/.dw/core/templates/vi/task-plan.md +97 -93
  37. package/.dw/core/templates/vi/task-progress.md +60 -56
  38. package/LICENSE +201 -201
  39. package/NOTICE +26 -26
  40. package/README.md +1 -1
  41. package/bin/dw.mjs +28 -28
  42. package/package.json +1 -1
  43. package/src/commands/claude-vn-fix.mjs +267 -267
  44. package/src/commands/prompt.mjs +112 -112
  45. package/src/commands/validate.mjs +102 -102
  46. package/src/lib/clipboard.mjs +24 -24
  47. package/src/lib/goal-store.mjs +2 -14
  48. package/src/lib/platform.mjs +39 -39
  49. package/src/lib/prompt-suggest.mjs +84 -84
  50. package/src/lib/timeline-parser.mjs +54 -15
  51. package/src/lib/ui.mjs +66 -66
  52. package/src/lib/update-checker.mjs +73 -73
  53. package/.dw/security/advisory-snapshot.json +0 -157
@@ -1,157 +0,0 @@
1
- {
2
- "schema_version": "1.0",
3
- "fetched_at": "2026-05-12T09:57:47.323Z",
4
- "source": "osv.dev",
5
- "ecosystem": "npm",
6
- "package_count": 13,
7
- "advisory_count": 2,
8
- "advisories": [
9
- {
10
- "id": "GHSA-q3j6-qgpj-74h6",
11
- "summary": "fast-uri vulnerable to path traversal via percent-encoded dot segments",
12
- "details": "### Impact\n\n`fast-uri` v3.1.0 and earlier decodes percent-encoded path separators (`%2F`) and dot segments (`%2E`) before applying dot-segment removal in `normalize()` and `equal()`. This makes encoded path data behave like real `/` and `..`, so distinct URIs collapse onto the same normalized path.\n\nFor example, `http://example.com/public/%2e%2e/admin` normalizes to `http://example.com/admin`, and `equal()` considers them the same URI.\n\nApplications that normalize or compare attacker-controlled URLs to enforce path-based policy can be bypassed. A path that looks confined under an allowed prefix can normalize to a different location.\n\n### Patches\n\nUpgrade to `fast-uri` >= 3.1.1.\n\n### Workarounds\n\nNone. Upgrade to the patched version.",
13
- "aliases": [
14
- "CVE-2026-6321"
15
- ],
16
- "modified": "2026-05-09T16:44:22.524341929Z",
17
- "published": "2026-05-08T17:15:09Z",
18
- "related": [
19
- "CGA-9j5f-2hwm-8hfc"
20
- ],
21
- "database_specific": {
22
- "cwe_ids": [
23
- "CWE-22"
24
- ],
25
- "github_reviewed": true,
26
- "github_reviewed_at": "2026-05-08T17:15:09Z",
27
- "severity": "HIGH",
28
- "nvd_published_at": "2026-05-04T20:16:20Z"
29
- },
30
- "references": [
31
- {
32
- "type": "WEB",
33
- "url": "https://github.com/fastify/fast-uri/security/advisories/GHSA-q3j6-qgpj-74h6"
34
- },
35
- {
36
- "type": "ADVISORY",
37
- "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6321"
38
- },
39
- {
40
- "type": "WEB",
41
- "url": "https://cna.openjsf.org/security-advisories.html"
42
- },
43
- {
44
- "type": "PACKAGE",
45
- "url": "https://github.com/fastify/fast-uri"
46
- }
47
- ],
48
- "affected": [
49
- {
50
- "package": {
51
- "name": "fast-uri",
52
- "ecosystem": "npm",
53
- "purl": "pkg:npm/fast-uri"
54
- },
55
- "ranges": [
56
- {
57
- "type": "SEMVER",
58
- "events": [
59
- {
60
- "introduced": "0"
61
- },
62
- {
63
- "fixed": "3.1.1"
64
- }
65
- ]
66
- }
67
- ],
68
- "database_specific": {
69
- "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-q3j6-qgpj-74h6/GHSA-q3j6-qgpj-74h6.json",
70
- "last_known_affected_version_range": "<= 3.1.0"
71
- }
72
- }
73
- ],
74
- "schema_version": "1.7.5",
75
- "severity": [
76
- {
77
- "type": "CVSS_V3",
78
- "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N"
79
- }
80
- ]
81
- },
82
- {
83
- "id": "GHSA-v39h-62p7-jpjc",
84
- "summary": "fast-uri vulnerable to host confusion via percent-encoded authority delimiters",
85
- "details": "### Impact\n\n`fast-uri` v3.1.1 and earlier decodes percent-encoded authority delimiters (`%40` as `@`, `%3A` as `:`) inside the host component and serializes them back as raw characters. This changes the URI structure, turning a hostname into userinfo plus a different host.\n\nFor example, `http://trusted.com%40evil.com/` normalizes to `http://trusted.com@evil.com/`, which reparses as host `evil.com` with userinfo `trusted.com`.\n\nApplications that normalize untrusted URLs before host allowlist checks, redirect validation, or outbound request routing can be steered to a different authority than the original URL appeared to contain.\n\n### Patches\n\nUpgrade to `fast-uri` >= 3.1.2.\n\n### Workarounds\n\nNone. Upgrade to the patched version.",
86
- "aliases": [
87
- "CVE-2026-6322"
88
- ],
89
- "modified": "2026-05-10T04:44:28.903255090Z",
90
- "published": "2026-05-08T19:13:01Z",
91
- "related": [
92
- "CGA-5vr9-c8qr-fqvg"
93
- ],
94
- "database_specific": {
95
- "cwe_ids": [
96
- "CWE-436"
97
- ],
98
- "github_reviewed": true,
99
- "github_reviewed_at": "2026-05-08T19:13:01Z",
100
- "severity": "HIGH",
101
- "nvd_published_at": "2026-05-05T11:16:33Z"
102
- },
103
- "references": [
104
- {
105
- "type": "WEB",
106
- "url": "https://github.com/fastify/fast-uri/security/advisories/GHSA-v39h-62p7-jpjc"
107
- },
108
- {
109
- "type": "ADVISORY",
110
- "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6322"
111
- },
112
- {
113
- "type": "WEB",
114
- "url": "https://cna.openjsf.org/security-advisories.html"
115
- },
116
- {
117
- "type": "PACKAGE",
118
- "url": "https://github.com/fastify/fast-uri"
119
- }
120
- ],
121
- "affected": [
122
- {
123
- "package": {
124
- "name": "fast-uri",
125
- "ecosystem": "npm",
126
- "purl": "pkg:npm/fast-uri"
127
- },
128
- "ranges": [
129
- {
130
- "type": "SEMVER",
131
- "events": [
132
- {
133
- "introduced": "0"
134
- },
135
- {
136
- "fixed": "3.1.2"
137
- }
138
- ]
139
- }
140
- ],
141
- "database_specific": {
142
- "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-v39h-62p7-jpjc/GHSA-v39h-62p7-jpjc.json",
143
- "last_known_affected_version_range": "<= 3.1.1"
144
- }
145
- }
146
- ],
147
- "schema_version": "1.7.5",
148
- "severity": [
149
- {
150
- "type": "CVSS_V3",
151
- "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N"
152
- }
153
- ]
154
- }
155
- ],
156
- "snapshot_sha": "sha256:0b6ca61019fb234c"
157
- }