Skip to content

Commit e5cc6ab

Browse files
AlbertHsuclaude
authored andcommitted
chore(release): 5.0.0-rc.1
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7c08b84 commit e5cc6ab

File tree

13 files changed

+32
-13
lines changed

13 files changed

+32
-13
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
99

1010
## [Unreleased]
1111

12+
## [5.0.0-rc.1] - 2026-02-12
13+
14+
> **Release Candidate**: This is the first RC for v5.0.0. All major features are complete; this release focuses on final validation before stable.
15+
16+
### Added
17+
- **3-Dimension Reverse Engineering**: Evolve `/reverse` to full system archeology with Logic, Data, and Runtime dimensions (`/reverse spec`, `/reverse data`, `/reverse runtime`)
18+
19+
### Fixed
20+
- **Skills Count**: Fix `sync-manifest.mjs` to count only directories with `SKILL.md` (was 32, now correctly 27)
21+
- **Missing Command Registration**: Register `/brainstorm` in `AVAILABLE_COMMANDS` and skills README tables
22+
23+
### Changed
24+
- **Workflow Visualization**: Expand Mermaid diagram in `WORKFLOW-ANALYSIS.md` with 3-dimension reverse engineering sub-nodes and data flow arrows
25+
1226
## [5.0.0-beta.12] - 2026-02-12
1327

1428
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Language-agnostic, framework-agnostic documentation standards for software proje
1818
| Category | Count | Description |
1919
|----------|-------|-------------|
2020
| **Core Standards** | 32 | Universal development guidelines |
21-
| **AI Skills** | 32 | Interactive skills |
21+
| **AI Skills** | 27 | Interactive skills |
2222
| **Slash Commands** | 30 | Quick actions |
2323
| **CLI Commands** | 6 | list, init, configure, check, update, skills |
2424
<!-- UDS_STATS_TABLE_END -->

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "universal-dev-standards",
3-
"version": "5.0.0-beta.12",
3+
"version": "5.0.0-rc.1",
44
"description": "CLI tool for adopting Universal Development Standards",
55
"keywords": [
66
"documentation",

cli/src/config/ai-agent-paths.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ export const AVAILABLE_COMMANDS = [
473473
{ name: 'derive', description: 'Forward derivation (spec to BDD/TDD)' },
474474
{ name: 'reverse', description: 'Reverse engineer code to SDD specs' },
475475
{ name: 'discover', description: 'Assess project health and risks before adding features' },
476+
{ name: 'brainstorm', description: 'Structured AI-assisted ideation and exploration' },
476477

477478
// ═══════════════════════════════════════════════════════════════════════════
478479
// Derivation Commands (Commands-only, specific transformations)

cli/standards-registry.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"version": "5.0.0-beta.12",
3+
"version": "5.0.0-rc.1",
44
"lastUpdated": "2026-02-09",
55
"description": "Standards registry for universal-dev-standards with integrated skills and AI-optimized formats",
66
"formats": {
@@ -48,14 +48,14 @@
4848
"standards": {
4949
"name": "universal-dev-standards",
5050
"url": "https://github.com/AsiaOstrich/universal-dev-standards",
51-
"version": "5.0.0-beta.12"
51+
"version": "5.0.0-rc.1"
5252
},
5353
"skills": {
5454
"name": "universal-dev-standards",
5555
"url": "https://github.com/AsiaOstrich/universal-dev-standards",
5656
"localPath": "skills",
5757
"rawUrl": "https://raw.githubusercontent.com/AsiaOstrich/universal-dev-standards/main/skills",
58-
"version": "5.0.0-beta.12",
58+
"version": "5.0.0-rc.1",
5959
"note": "Skills are now included in the main repository under skills/"
6060
}
6161
},

cli/tests/unit/config/ai-agent-paths.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,12 +233,12 @@ describe('AI Agent Paths Configuration', () => {
233233
expect(AVAILABLE_COMMANDS.length).toBeGreaterThan(0);
234234
});
235235

236-
it('should have 30 commands (18 Action Skills + 12 Commands-only)', () => {
236+
it('should have 31 commands (19 Action Skills + 12 Commands-only)', () => {
237237
// Updated Feb 2026: Split architecture — 9 reference-only skills
238238
// no longer have `name` field and are not slash commands
239239
// generate-docs removed (docgen is the Action Skill command)
240-
// Added: docs, guide
241-
expect(AVAILABLE_COMMANDS.length).toBe(30);
240+
// Added: docs, guide, brainstorm
241+
expect(AVAILABLE_COMMANDS.length).toBe(31);
242242
});
243243

244244
it('should have name and description for each command', () => {

locales/zh-CN/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
| 类别 | 数量 | 说明 |
1919
|----------|-------|-------------|
2020
| **核心标准** | 32 | 通用开发准则 |
21-
| **AI Skills** | 32 | 互动式技能 |
21+
| **AI Skills** | 27 | 互动式技能 |
2222
| **斜线命令** | 30 | 快速操作 |
2323
| **CLI 命令** | 6 | list, init, configure, check, update, skills |
2424
<!-- UDS_STATS_TABLE_END -->

locales/zh-CN/skills/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ status: current
4545
| `methodology-system` | `/methodology` | [UDS] 开发方法论 |
4646
| `refactoring-assistant` | `/refactor` | [UDS] 重构指引 |
4747
| `project-discovery` | `/discover` | [UDS] 评估项目健康度与风险 |
48+
| `brainstorm-assistant` | `/brainstorm` | [UDS] 结构化 AI 辅助构想 |
4849
| `changelog-guide` | `/changelog` | [UDS] 生成变更日志条目 |
4950
| `docs-generator` | `/docgen` | [UDS] 生成使用文档 |
5051

locales/zh-TW/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
| 類別 | 數量 | 說明 |
1919
|----------|-------|-------------|
2020
| **核心標準** | 32 | 通用開發準則 |
21-
| **AI Skills** | 32 | 互動式技能 |
21+
| **AI Skills** | 27 | 互動式技能 |
2222
| **斜線命令** | 30 | 快速操作 |
2323
| **CLI 指令** | 6 | list, init, configure, check, update, skills |
2424
<!-- UDS_STATS_TABLE_END -->

locales/zh-TW/skills/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ status: current
4545
| `methodology-system` | `/methodology` | [UDS] 開發方法論 |
4646
| `refactoring-assistant` | `/refactor` | [UDS] 重構指引 |
4747
| `project-discovery` | `/discover` | [UDS] 評估專案健康度與風險 |
48+
| `brainstorm-assistant` | `/brainstorm` | [UDS] 結構化 AI 輔助構想 |
4849
| `changelog-guide` | `/changelog` | [UDS] 生成變更日誌條目 |
4950
| `docs-generator` | `/docgen` | [UDS] 生成使用文件 |
5051

0 commit comments

Comments
 (0)