universal-dev-standards 5.7.3 → 5.10.0
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/bundled/ai/language-packs/README.md +55 -0
- package/bundled/ai/language-packs/language-pack-php-to-csharp.ai.yaml +83 -0
- package/bundled/ai/standards/acceptance-criteria-traceability.ai.yaml +49 -3
- package/bundled/ai/standards/behavior-snapshot.ai.yaml +272 -0
- package/bundled/ai/standards/deployment-standards.ai.yaml +108 -3
- package/bundled/ai/standards/feature-discovery-standards.ai.yaml +459 -0
- package/bundled/ai/standards/feature-manifest-standard.ai.yaml +149 -0
- package/bundled/ai/standards/mock-boundary.ai.yaml +93 -2
- package/bundled/ai/standards/multi-environment-e2e-testing.ai.yaml +250 -0
- package/bundled/ai/standards/test-completeness-dimensions.ai.yaml +39 -7
- package/bundled/ai/standards/verification-evidence.ai.yaml +30 -4
- package/bundled/core/acceptance-criteria-traceability.md +41 -6
- package/bundled/core/behavior-snapshot.md +239 -0
- package/bundled/core/feature-manifest-standard.md +213 -0
- package/bundled/locales/zh-CN/CHANGELOG.md +37 -3
- package/bundled/locales/zh-CN/README.md +1 -1
- package/bundled/locales/zh-TW/CHANGELOG.md +37 -3
- package/bundled/locales/zh-TW/README.md +1 -1
- package/bundled/skills/brainstorm-assistant/SKILL.md +183 -30
- package/bundled/skills/brainstorm-assistant/guide.md +607 -117
- package/package.json +4 -4
- package/src/commands/update.js +4 -1
- package/standards-registry.json +53 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "universal-dev-standards",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.10.0",
|
|
4
4
|
"description": "CLI tool for adopting Universal Development Standards",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"documentation",
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
"@vitest/coverage-v8": "^4.1.5",
|
|
71
71
|
"ajv": "^8.20.0",
|
|
72
72
|
"ajv-formats": "^3.0.1",
|
|
73
|
-
"eslint": "10.
|
|
73
|
+
"eslint": "10.3.0",
|
|
74
74
|
"glob": "^13.0.1",
|
|
75
|
-
"globals": "17.
|
|
75
|
+
"globals": "17.6.0",
|
|
76
76
|
"husky": "^9.1.7",
|
|
77
|
-
"lint-staged": "^
|
|
77
|
+
"lint-staged": "^17.0.3",
|
|
78
78
|
"vitest": "^4.1.5"
|
|
79
79
|
},
|
|
80
80
|
"lint-staged": {
|
package/src/commands/update.js
CHANGED
|
@@ -771,7 +771,10 @@ export async function updateCommand(options) {
|
|
|
771
771
|
allTrackedFiles.push(join('.standards', fileName));
|
|
772
772
|
}
|
|
773
773
|
for (const int of (manifest.integrations || [])) {
|
|
774
|
-
|
|
774
|
+
const filePath = getToolFilePath(int);
|
|
775
|
+
if (filePath) {
|
|
776
|
+
allTrackedFiles.push(filePath);
|
|
777
|
+
}
|
|
775
778
|
}
|
|
776
779
|
|
|
777
780
|
const missingFiles = allTrackedFiles.filter(f => !existsSync(join(projectPath, f)));
|
package/standards-registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "5.
|
|
4
|
-
"lastUpdated": "2026-
|
|
3
|
+
"version": "5.10.0",
|
|
4
|
+
"lastUpdated": "2026-05-13",
|
|
5
5
|
"description": "Standards registry for universal-dev-standards with integrated skills and AI-optimized formats",
|
|
6
6
|
"formats": {
|
|
7
7
|
"ai": {
|
|
@@ -58,14 +58,14 @@
|
|
|
58
58
|
"standards": {
|
|
59
59
|
"name": "universal-dev-standards",
|
|
60
60
|
"url": "https://github.com/AsiaOstrich/universal-dev-standards",
|
|
61
|
-
"version": "5.
|
|
61
|
+
"version": "5.10.0"
|
|
62
62
|
},
|
|
63
63
|
"skills": {
|
|
64
64
|
"name": "universal-dev-standards",
|
|
65
65
|
"url": "https://github.com/AsiaOstrich/universal-dev-standards",
|
|
66
66
|
"localPath": "skills",
|
|
67
67
|
"rawUrl": "https://raw.githubusercontent.com/AsiaOstrich/universal-dev-standards/main/skills",
|
|
68
|
-
"version": "5.
|
|
68
|
+
"version": "5.10.0",
|
|
69
69
|
"note": "Skills are now included in the main repository under skills/"
|
|
70
70
|
}
|
|
71
71
|
},
|
|
@@ -1668,7 +1668,55 @@
|
|
|
1668
1668
|
},
|
|
1669
1669
|
"category": "reference",
|
|
1670
1670
|
"skillName": null,
|
|
1671
|
-
"description": "AC-to-test traceability matrix, coverage calculation, and spec generation quality rules"
|
|
1671
|
+
"description": "AC-to-test traceability matrix, coverage calculation (with not_implemented gate), and spec generation quality rules"
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"id": "feature-manifest-standard",
|
|
1675
|
+
"name": "Feature Manifest Standard",
|
|
1676
|
+
"nameZh": "功能盤點清單標準",
|
|
1677
|
+
"source": {
|
|
1678
|
+
"human": "core/feature-manifest-standard.md",
|
|
1679
|
+
"ai": "ai/standards/feature-manifest-standard.ai.yaml"
|
|
1680
|
+
},
|
|
1681
|
+
"category": "reference",
|
|
1682
|
+
"skillName": null,
|
|
1683
|
+
"description": "Machine-readable FM-NNN feature inventory format for migration/refactoring projects; FEATURE_STUB protocol and completeness gates"
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"id": "behavior-snapshot",
|
|
1687
|
+
"name": "Behavior Snapshot Standard",
|
|
1688
|
+
"nameZh": "行為快照標準",
|
|
1689
|
+
"source": {
|
|
1690
|
+
"human": "core/behavior-snapshot.md",
|
|
1691
|
+
"ai": "ai/standards/behavior-snapshot.ai.yaml"
|
|
1692
|
+
},
|
|
1693
|
+
"category": "reference",
|
|
1694
|
+
"skillName": null,
|
|
1695
|
+
"description": "Multi-modal golden-file snapshot format (HTTP/CLI/File/Event adapters) for migration parity verification and refactoring characterization (Gate 0/1 protocol)"
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
"id": "feature-discovery-standards",
|
|
1699
|
+
"name": "Feature Discovery Standards",
|
|
1700
|
+
"nameZh": "功能發現方法論標準",
|
|
1701
|
+
"source": {
|
|
1702
|
+
"human": "core/feature-discovery-standards.md",
|
|
1703
|
+
"ai": "ai/standards/feature-discovery-standards.ai.yaml"
|
|
1704
|
+
},
|
|
1705
|
+
"category": "reference",
|
|
1706
|
+
"skillName": null,
|
|
1707
|
+
"description": "Language-agnostic methodology for exhaustive feature discovery in legacy systems; Deterministic-First principle, Software Form Taxonomy (7 forms), five static foundations, dynamic/human observation protocols, cross-layer validation matrix"
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
"id": "multi-environment-e2e-testing",
|
|
1711
|
+
"name": "Multi-Environment E2E Testing",
|
|
1712
|
+
"nameZh": "多環境 E2E 測試標準",
|
|
1713
|
+
"source": {
|
|
1714
|
+
"human": "core/multi-environment-e2e-testing.md",
|
|
1715
|
+
"ai": "ai/standards/multi-environment-e2e-testing.ai.yaml"
|
|
1716
|
+
},
|
|
1717
|
+
"category": "testing",
|
|
1718
|
+
"skillName": null,
|
|
1719
|
+
"description": "E2E test configuration across multiple deployment targets; BASE_URL baked in test config; self-checking runner scripts; environment capability matrix; CI gate mapping; credential handling rules"
|
|
1672
1720
|
},
|
|
1673
1721
|
{
|
|
1674
1722
|
"id": "change-batching",
|