contract-driven-delivery 2.0.19 → 2.0.20
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.md +1 -1
- package/assets/agents/backend-engineer.md +1 -1
- package/assets/agents/change-classifier.md +1 -1
- package/assets/agents/ci-cd-gatekeeper.md +1 -1
- package/assets/agents/contract-reviewer.md +1 -1
- package/assets/agents/dependency-security-reviewer.md +1 -1
- package/assets/agents/e2e-resilience-engineer.md +1 -1
- package/assets/agents/frontend-engineer.md +1 -1
- package/assets/agents/monkey-test-engineer.md +1 -1
- package/assets/agents/qa-reviewer.md +1 -1
- package/assets/agents/repo-context-scanner.md +1 -1
- package/assets/agents/spec-architect.md +1 -1
- package/assets/agents/spec-drift-auditor.md +1 -1
- package/assets/agents/stress-soak-engineer.md +1 -1
- package/assets/agents/test-strategist.md +1 -1
- package/assets/agents/ui-ux-reviewer.md +1 -1
- package/assets/agents/visual-reviewer.md +1 -1
- package/assets/skills/cdd-new/SKILL.md +1 -1
- package/dist/cli/index.js +9 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.20] - 2026-05-15
|
|
4
|
+
|
|
5
|
+
Patch release for UTF-8 BOM handling in Claude agent metadata files.
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Removed UTF-8 BOM bytes from packaged Claude agent and skill sources so YAML
|
|
10
|
+
frontmatter starts at `---` and Claude Code can mount subagents reliably.
|
|
11
|
+
- `cdd-kit lint-agents` now rejects agent files that start with `U+FEFF`, since
|
|
12
|
+
frontmatter parsers may otherwise treat the first key as invalid.
|
|
13
|
+
- Added package-source and generated-assets regression coverage to prevent BOM
|
|
14
|
+
bytes from being shipped again.
|
|
15
|
+
|
|
3
16
|
## [2.0.19] - 2026-05-15
|
|
4
17
|
|
|
5
18
|
Design ownership patch for the implementation-planning flow.
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
# Contract-Driven Delivery Kit
|
|
2
2
|
|
|
3
3
|
**cdd-kit** is a contract-driven delivery kit for AI coding agents. It started with Claude Code skills and now keeps the core workflow provider-neutral: contracts-first, test-first, spec-first. Every change goes through classification, contract review, TDD, implementation, and gate verification, with deterministic context indexes to keep agent work targeted.
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
2
|
name: contract-reviewer
|
|
3
3
|
description: Review and maintain API, CSS/UI, env, data-shape, business-rule, and CI/CD contracts for every change. Dependency and migration contracts are recorded here at contract level only; the active audit lives in dependency-security-reviewer.
|
|
4
4
|
tools: Read, Grep, Glob
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
2
|
name: dependency-security-reviewer
|
|
3
3
|
description: Reviews dependency CVE risk, license compliance (GPL/AGPL copyleft vs proprietary), lockfile changes, and database migrations whenever lockfiles, dependency manifests, or database migrations are touched.
|
|
4
4
|
tools: Read, Grep, Glob, Bash
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
2
|
name: monkey-test-engineer
|
|
3
3
|
description: Design preventive specs and structured exploratory tests for invalid user operations, adversarial inputs, malformed data, rapid UI actions, and production misuse. Not random fuzzing -- every monkey scenario is mapped to a known failure mode or hardening goal.
|
|
4
4
|
tools: Read, Grep, Glob, Edit, MultiEdit, Bash
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
2
|
name: ui-ux-reviewer
|
|
3
3
|
description: Review interaction design, information hierarchy, copy, accessibility, empty/error/loading state semantics, and user journey quality. Does not cover pixel-level visuals or CSS -- those go to visual-reviewer.
|
|
4
4
|
tools: Read, Grep, Glob
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
2
|
name: visual-reviewer
|
|
3
3
|
description: Review pixel-level visual output, layout, responsive viewport behavior, screenshot diffs, CSS contract compliance, and component visual state coverage. Does not cover interaction or copy -- those go to ui-ux-reviewer.
|
|
4
4
|
tools: Read, Grep, Glob, Bash
|
package/dist/cli/index.js
CHANGED
|
@@ -10058,6 +10058,15 @@ async function lintAgents(opts) {
|
|
|
10058
10058
|
});
|
|
10059
10059
|
continue;
|
|
10060
10060
|
}
|
|
10061
|
+
if (content.charCodeAt(0) === 65279) {
|
|
10062
|
+
violations.push({
|
|
10063
|
+
file: filename,
|
|
10064
|
+
rule: "Meta",
|
|
10065
|
+
message: "file starts with UTF-8 BOM (U+FEFF); frontmatter parsers may treat the first key as invalid",
|
|
10066
|
+
level: "error"
|
|
10067
|
+
});
|
|
10068
|
+
content = content.slice(1);
|
|
10069
|
+
}
|
|
10061
10070
|
const artifactsSection = extractRequiredArtifactsSection(content);
|
|
10062
10071
|
if (!artifactsSection) {
|
|
10063
10072
|
violations.push({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contract-driven-delivery",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.20",
|
|
4
4
|
"description": "Contract-driven delivery kit for AI coding agents with deterministic context indexes, manifest-backed read-scope governance, and orchestrated contracts-first delivery.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contract-driven",
|