universal-dev-standards 3.5.1-beta.14 → 3.5.1-beta.16
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Verify standards adoption status
|
|
3
|
-
allowed-tools: Read, Bash(uds check:*), Bash(npx:*)
|
|
3
|
+
allowed-tools: Read, Bash(uds check:*), Bash(npx:*), Bash(ls:*)
|
|
4
4
|
argument-hint: "[--offline | --restore]"
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -50,6 +50,39 @@ uds check --restore
|
|
|
50
50
|
- Version information
|
|
51
51
|
- Migration suggestions if applicable
|
|
52
52
|
|
|
53
|
+
### Skills Verification | Skills 驗證
|
|
54
|
+
|
|
55
|
+
After displaying `uds check` results, verify Skills installation by checking actual paths.
|
|
56
|
+
|
|
57
|
+
顯示 `uds check` 結果後,透過檢查實際路徑來驗證 Skills 安裝。
|
|
58
|
+
|
|
59
|
+
**For each AI tool showing "✓ installed", run diagnostic commands:**
|
|
60
|
+
|
|
61
|
+
針對每個顯示「✓ 已安裝」的 AI 工具,執行診斷命令:
|
|
62
|
+
|
|
63
|
+
| AI Tool | Skills Path | Diagnostic Command |
|
|
64
|
+
|---------|-------------|-------------------|
|
|
65
|
+
| Claude Code | `.claude/skills/` | `ls -la .claude/skills/ 2>/dev/null \|\| echo "Not found"` |
|
|
66
|
+
| OpenCode | `.opencode/skill/` | `ls -la .opencode/skill/ 2>/dev/null \|\| echo "Not found"` |
|
|
67
|
+
| GitHub Copilot | `.github/skills/` | `ls -la .github/skills/ 2>/dev/null \|\| echo "Not found"` |
|
|
68
|
+
| Cursor | `.cursor/skills/` | `ls -la .cursor/skills/ 2>/dev/null \|\| echo "Not found"` |
|
|
69
|
+
|
|
70
|
+
**Expected output for valid installation:**
|
|
71
|
+
- Should see skill directories (e.g., `commit-standards/`, `testing-guide/`)
|
|
72
|
+
- Each skill directory should contain `SKILL.md`
|
|
73
|
+
|
|
74
|
+
**有效安裝的預期輸出:**
|
|
75
|
+
- 應看到 skill 目錄(如 `commit-standards/`、`testing-guide/`)
|
|
76
|
+
- 每個 skill 目錄應包含 `SKILL.md`
|
|
77
|
+
|
|
78
|
+
**If directory is empty or not found:**
|
|
79
|
+
- Skills are NOT actually installed
|
|
80
|
+
- Run `/update` and select "Install All" to install
|
|
81
|
+
|
|
82
|
+
**如果目錄為空或不存在:**
|
|
83
|
+
- Skills 實際上未安裝
|
|
84
|
+
- 執行 `/update` 並選擇「全部安裝」
|
|
85
|
+
|
|
53
86
|
### Coverage Summary | 覆蓋率摘要
|
|
54
87
|
- Required standards count for current level
|
|
55
88
|
- Skills vs reference document coverage
|
|
@@ -22,9 +22,27 @@ First, run `uds check` to show current installation status and available updates
|
|
|
22
22
|
|
|
23
23
|
### Step 2: Ask Update Preferences | 步驟 2:詢問更新偏好
|
|
24
24
|
|
|
25
|
-
If updates are available, use AskUserQuestion with options based on version type
|
|
25
|
+
If updates are available, use AskUserQuestion with options based on version type.
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
根據可用更新的版本類型顯示對應選項。
|
|
28
|
+
|
|
29
|
+
#### Pre-release Version Types | Pre-release 版本類型
|
|
30
|
+
|
|
31
|
+
Pre-release versions are sorted by stability (ascending):
|
|
32
|
+
|
|
33
|
+
Pre-release 版本按穩定度排序(由低到高):
|
|
34
|
+
|
|
35
|
+
| Type | Stability | Description | 說明 |
|
|
36
|
+
|------|-----------|-------------|------|
|
|
37
|
+
| alpha | 🔴 Early | Features may be incomplete, for internal testing | 功能可能不完整,供內部測試 |
|
|
38
|
+
| beta | 🟡 Testing | Features complete, may have bugs, for early adopters | 功能大致完成,可能有 bug,供早期採用者 |
|
|
39
|
+
| rc | 🟢 Near-stable | Release candidate, close to stable, for beta testers | 候選發布版,接近正式版,供 beta 測試者 |
|
|
40
|
+
|
|
41
|
+
Version comparison: `alpha < beta < rc < stable`
|
|
42
|
+
|
|
43
|
+
For detailed versioning standards, see [core/versioning.md](../../../core/versioning.md).
|
|
44
|
+
|
|
45
|
+
#### Update Options | 更新選項
|
|
28
46
|
|
|
29
47
|
**If stable version available (e.g., 3.5.1):**
|
|
30
48
|
|
|
@@ -34,14 +52,22 @@ If updates are available, use AskUserQuestion with options based on version type
|
|
|
34
52
|
| **Check Beta** | Check for beta version updates |
|
|
35
53
|
| **Skip** | Don't update at this time |
|
|
36
54
|
|
|
37
|
-
**If only pre-release version available
|
|
55
|
+
**If only pre-release version available, show specific type:**
|
|
38
56
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
|
42
|
-
|
|
57
|
+
Detect the version type from `uds check` output and display the specific type name:
|
|
58
|
+
|
|
59
|
+
| Detected Type | Option Label | Description |
|
|
60
|
+
|---------------|--------------|-------------|
|
|
61
|
+
| `X.Y.Z-alpha.N` | **Update to Alpha** | Update to alpha version X.Y.Z-alpha.N (🔴 Early testing) |
|
|
62
|
+
| `X.Y.Z-beta.N` | **Update to Beta** | Update to beta version X.Y.Z-beta.N (🟡 Feature complete) |
|
|
63
|
+
| `X.Y.Z-rc.N` | **Update to RC** | Update to RC version X.Y.Z-rc.N (🟢 Near-stable) |
|
|
64
|
+
|
|
65
|
+
Always include **Skip** option: Don't update at this time.
|
|
43
66
|
|
|
44
|
-
|
|
67
|
+
**Example AskUserQuestion for beta version:**
|
|
68
|
+
- Question: "有新的 beta 版本可用:3.5.1-beta.3 → 3.5.1-beta.15。您想如何處理?"
|
|
69
|
+
- Option 1: "更新至 Beta (建議)" - "更新標準至 3.5.1-beta.15 版本(🟡 功能大致完成)"
|
|
70
|
+
- Option 2: "暫時跳過" - "目前不進行更新,維持現有版本"
|
|
45
71
|
|
|
46
72
|
### Step 3: Execute | 步驟 3:執行
|
|
47
73
|
|
package/package.json
CHANGED
package/standards-registry.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "3.5.1-beta.
|
|
3
|
+
"version": "3.5.1-beta.16",
|
|
4
4
|
"lastUpdated": "2026-01-15",
|
|
5
5
|
"description": "Standards registry for universal-dev-standards with integrated skills and AI-optimized formats",
|
|
6
6
|
"formats": {
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"standards": {
|
|
49
49
|
"name": "universal-dev-standards",
|
|
50
50
|
"url": "https://github.com/AsiaOstrich/universal-dev-standards",
|
|
51
|
-
"version": "3.5.1-beta.
|
|
51
|
+
"version": "3.5.1-beta.16"
|
|
52
52
|
},
|
|
53
53
|
"skills": {
|
|
54
54
|
"name": "universal-dev-standards",
|
|
55
55
|
"url": "https://github.com/AsiaOstrich/universal-dev-standards",
|
|
56
56
|
"localPath": "skills/claude-code",
|
|
57
57
|
"rawUrl": "https://raw.githubusercontent.com/AsiaOstrich/universal-dev-standards/main/skills/claude-code",
|
|
58
|
-
"version": "3.5.1-beta.
|
|
58
|
+
"version": "3.5.1-beta.16",
|
|
59
59
|
"note": "Skills are now included in the main repository under skills/"
|
|
60
60
|
}
|
|
61
61
|
},
|