universal-dev-standards 3.5.1-beta.11 → 3.5.1-beta.12

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: Update development standards to latest version
3
- allowed-tools: Read, Bash(uds update:*), Bash(uds check:*), Bash(npx:*), Bash(cat .standards/*), Bash(ls .claude/*), Bash(ls .opencode/*), Bash(ls .github/*)
3
+ allowed-tools: Read, Bash(uds update:*), Bash(uds check:*), Bash(uds configure:*), Bash(npx:*), Bash(cat .standards/*), Bash(ls .claude/*), Bash(ls .opencode/*), Bash(ls .github/*)
4
4
  argument-hint: "[--yes] [--offline] [--beta]"
5
5
  ---
6
6
 
@@ -42,34 +42,44 @@ uds update --yes
42
42
  uds update --beta --yes
43
43
  ```
44
44
 
45
- ### Step 4: Check New Features | 步驟 4:檢查新功能
45
+ ### Step 4: Install Skills/Commands | 步驟 4:安裝 Skills/Commands
46
46
 
47
- After update completes, check if Skills/Commands need to be installed:
47
+ The CLI automatically handles Skills/Commands installation in Step 4:
48
48
 
49
- 更新完成後,檢查是否需要安裝 Skills/Commands
49
+ CLI 會自動處理 Skills/Commands 安裝:
50
50
 
51
- 1. Read `.standards/manifest.json` to get `aiTools` list and `skills.installed` status
52
- 2. Check if Skills are installed: `skills.installed === true`
53
- 3. Check if Commands are installed for tools that support them (opencode, copilot, gemini-cli, roo-code)
51
+ **With `--yes` flag (automatic):**
52
+ - All missing Skills/Commands are installed automatically for configured AI tools
53
+ - No additional action needed
54
54
 
55
- If `skills.installed` is `false` OR command directories are missing for supported tools, use AskUserQuestion:
55
+ 使用 `--yes` 時,會自動為所有設定的 AI 工具安裝缺少的 Skills/Commands。
56
56
 
57
- | Option | Description | 說明 |
58
- |--------|-------------|------|
59
- | **Install All (Recommended)** | Install Skills + Commands | 安裝 Skills 和斜線命令 |
60
- | **Skills Only** | Install Skills to .claude/skills/ | 只安裝 Skills |
61
- | **Commands Only** | Install Commands for supported tools | 只安裝斜線命令 |
62
- | **Skip** | Don't install features | 跳過 |
57
+ **Without `--yes` (interactive):**
58
+ - CLI shows a checkbox menu to select which AI tools to install for
59
+ - All options are checked by default (opt-out behavior)
63
60
 
64
- **If Install All or Skills Only selected:**
65
- ```bash
66
- uds update --skills
67
- ```
61
+ 不使用 `--yes` 時,CLI 會顯示 checkbox 選單讓用戶選擇要安裝的 AI 工具。
68
62
 
69
- **If Install All or Commands Only selected:**
70
- ```bash
71
- uds update --commands
63
+ **Example checkbox interface:**
72
64
  ```
65
+ ? Select AI tools to install Skills for:
66
+ ❯◉ Claude Code
67
+ ◉ OpenCode
68
+ ◉ GitHub Copilot
69
+ ──────────────
70
+ ◯ Skip Skills installation
71
+ ```
72
+
73
+ **If CLI cannot prompt (non-TTY environment):**
74
+
75
+ Use AskUserQuestion and then run `uds configure`:
76
+
77
+ | User Selection | Action |
78
+ |----------------|--------|
79
+ | **Install All** | `uds configure --type skills` then `uds configure --type commands` |
80
+ | **Skills Only** | `uds configure --type skills` |
81
+ | **Commands Only** | `uds configure --type commands` |
82
+ | **Skip** | No action needed |
73
83
 
74
84
  Explain the results and any next steps to the user.
75
85
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "universal-dev-standards",
3
- "version": "3.5.1-beta.11",
3
+ "version": "3.5.1-beta.12",
4
4
  "description": "CLI tool for adopting Universal Development Standards",
5
5
  "keywords": [
6
6
  "documentation",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "3.5.1-beta.11",
3
+ "version": "3.5.1-beta.12",
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.11"
51
+ "version": "3.5.1-beta.12"
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.11",
58
+ "version": "3.5.1-beta.12",
59
59
  "note": "Skills are now included in the main repository under skills/"
60
60
  }
61
61
  },