@votruongdanh/ai-agent-skills 3.2.1 → 3.3.2

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.
Files changed (42) hide show
  1. package/.kiro/skills/_scripts/.ai-memory-template.md +55 -55
  2. package/.kiro/skills/_scripts/checklist.md +35 -34
  3. package/.kiro/skills/_scripts/memory-compact.md +142 -0
  4. package/.kiro/skills/_scripts/memory-dedupe.md +26 -26
  5. package/.kiro/skills/_scripts/pre-deploy.md +42 -42
  6. package/.kiro/skills/_scripts/verify-all.md +28 -28
  7. package/.kiro/skills/agents/SKILL.md +85 -85
  8. package/.kiro/skills/agents/agents/backend-specialist.md +29 -29
  9. package/.kiro/skills/agents/agents/database-architect.md +28 -28
  10. package/.kiro/skills/agents/agents/debugger.md +29 -29
  11. package/.kiro/skills/agents/agents/devops-engineer.md +30 -30
  12. package/.kiro/skills/agents/agents/documentation-writer.md +29 -29
  13. package/.kiro/skills/agents/agents/frontend-specialist.md +30 -30
  14. package/.kiro/skills/agents/agents/orchestrator.md +36 -36
  15. package/.kiro/skills/agents/agents/performance-optimizer.md +29 -29
  16. package/.kiro/skills/agents/agents/project-planner.md +30 -30
  17. package/.kiro/skills/agents/agents/security-auditor.md +30 -30
  18. package/.kiro/skills/agents/agents/test-engineer.md +29 -29
  19. package/.kiro/skills/brainstorm/SKILL.md +66 -66
  20. package/.kiro/skills/clean/SKILL.md +90 -90
  21. package/.kiro/skills/create/SKILL.md +63 -63
  22. package/.kiro/skills/debug/SKILL.md +71 -71
  23. package/.kiro/skills/deploy/SKILL.md +66 -66
  24. package/.kiro/skills/enhance/SKILL.md +58 -58
  25. package/.kiro/skills/explain/SKILL.md +69 -69
  26. package/.kiro/skills/instructions.md +95 -93
  27. package/.kiro/skills/integrate/SKILL.md +50 -50
  28. package/.kiro/skills/motion-ui/SKILL.md +492 -0
  29. package/.kiro/skills/orchestrate/SKILL.md +73 -73
  30. package/.kiro/skills/plan/SKILL.md +69 -69
  31. package/.kiro/skills/preview/SKILL.md +55 -55
  32. package/.kiro/skills/status/SKILL.md +57 -57
  33. package/.kiro/skills/test/SKILL.md +58 -58
  34. package/.kiro/skills/ui-ux-pro-max/SKILL.md +65 -65
  35. package/LICENSE +21 -21
  36. package/README.md +212 -208
  37. package/bin/cli.js +876 -876
  38. package/bin/install-skills.ps1 +30 -30
  39. package/index.js +23 -23
  40. package/lib/skill-bundle.js +741 -725
  41. package/package.json +62 -62
  42. package/scripts/render-targets.js +22 -22
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Vo Truong Danh (votruongdanh)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Vo Truong Danh (votruongdanh)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,208 +1,212 @@
1
- # AI Agent Skills
2
-
3
- Cross-IDE AI agent skills with interactive CLI, dual-source `SKILL.md` discovery, GitHub skill fetching, and installers that render the right layout for each IDE.
4
-
5
- [![npm version](https://img.shields.io/npm/v/@votruongdanh/ai-agent-skills.svg)](https://www.npmjs.com/package/@votruongdanh/ai-agent-skills)
6
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
-
8
- ## Quick Install
9
-
10
- ```bash
11
- npx @votruongdanh/ai-agent-skills init
12
- ```
13
-
14
- The CLI launches an **interactive setup** — it always asks you to choose an IDE from the full supported list, then picks project vs global scope:
15
-
16
- ```
17
- AI Agent Skills v3.2.0
18
-
19
- 🔧 Choose your IDE:
20
- 1) Cursor
21
- 2) Kiro
22
- 3) Antigravity
23
- 4) Codex
24
- 5) VS Code
25
- 6) GitHub Copilot
26
- 7) All supported IDEs
27
-
28
- 📂 Install scope:
29
- 1) This project only ← recommended
30
- 2) Global (all projects)
31
-
32
- [1] Installing skills...
33
- 15 skills installed for Cursor
34
-
35
- Done! Next steps:
36
- 1. Reopen Cursor
37
- 2. Open agent chat and type / to list skills
38
- 3. Try: /create, /debug, /explain, or /plan
39
- ```
40
-
41
- ### Non-interactive mode
42
-
43
- For CI/CD or scripting, pass `--ide` to skip prompts:
44
-
45
- ```bash
46
- npx @votruongdanh/ai-agent-skills init --ide=cursor
47
- npx @votruongdanh/ai-agent-skills init --ide=all
48
- npx @votruongdanh/ai-agent-skills init --ide=kiro
49
- npx @votruongdanh/ai-agent-skills init --ide=antigravity
50
- npx @votruongdanh/ai-agent-skills init --ide=codex
51
- npx @votruongdanh/ai-agent-skills init --ide=vscode
52
- npx @votruongdanh/ai-agent-skills init --ide=copilot
53
- npx @votruongdanh/ai-agent-skills init --no-interactive
54
- ```
55
-
56
- The CLI still supports marker-based context detection for status/list flows when applicable, including parent-folder lookup.
57
-
58
- For non-interactive mode (`--no-interactive`), `--ide` is required. You can pass `--ide=all` to install for every supported IDE in one run.
59
-
60
- ## Add Skills from GitHub
61
-
62
- Fetch skills directly from any GitHub repository:
63
-
64
- ```bash
65
- # Browse and pick skills interactively
66
- npx @votruongdanh/ai-agent-skills add owner/repo
67
-
68
- # Install a specific skill
69
- npx @votruongdanh/ai-agent-skills add anthropics/skills --skill=pdf-processing
70
-
71
- # Specify branch and target IDE
72
- npx @votruongdanh/ai-agent-skills add anthropics/skills --ide=cursor --branch=main
73
- ```
74
-
75
- The `add` command:
76
- - Fetches the GitHub repo tree via API
77
- - Lists all `SKILL.md` files found
78
- - Lets you pick one skill or install all
79
- - Downloads companion `scripts/`, `references/`, `assets/` directories
80
- - Installs to your chosen IDE format and scope
81
-
82
- ## Commands
83
-
84
- | Command | Description |
85
- |---------|-------------|
86
- | `npx @votruongdanh/ai-agent-skills init` | Interactive setup (choose IDE + scope) |
87
- | `npx @votruongdanh/ai-agent-skills init --ide=cursor` | Non-interactive install for specific IDE |
88
- | `npx @votruongdanh/ai-agent-skills global` | Install globally for all projects |
89
- | `npx @votruongdanh/ai-agent-skills add owner/repo` | Add skills from a GitHub repository |
90
- | `npx @votruongdanh/ai-agent-skills list` | List all bundled skills |
91
- | `npx @votruongdanh/ai-agent-skills list --json` | JSON output for scripts |
92
- | `npx @votruongdanh/ai-agent-skills status` | Show install status & versions |
93
- | `npx @votruongdanh/ai-agent-skills help` | Show help |
94
-
95
- ## Supported IDEs
96
-
97
- | IDE | Installed layout | Notes |
98
- | --- | --- | --- |
99
- | Kiro | `.kiro/skills/<skill>/SKILL.md` | Native skill format |
100
- | Cursor | `.cursor/skills/<skill>/SKILL.md` | Native skill format |
101
- | Cursor legacy | `.cursor/rules/<skill>.mdc` | Generated compatibility layer |
102
- | Antigravity | `.agent/workflows/<skill>.md` | Generated workflow bridge |
103
- | Antigravity legacy | `agent/workflows/<skill>.md` | Compatibility alias for older setups |
104
- | Codex | `.agents/skills/<skill>/SKILL.md` | Detected from `.agents/skills`, `AGENTS.md`, and/or `memories/` |
105
- | VS Code | `.github/skills/<skill>/SKILL.md` | Native SKILL.md format for Copilot Chat |
106
- | GitHub Copilot | `.github/skills/<skill>/SKILL.md` | Alias of VS Code target |
107
-
108
- Native skill targets keep the full skill directory. Generated compatibility targets (Cursor `.mdc` rules, Antigravity workflows) only render `SKILL.md` content companion `scripts/`, `references/`, and `assets/` remain native-only.
109
-
110
- ## Available Skills (15)
111
-
112
- | Skill | Description |
113
- |-------|-------------|
114
- | `/agents` | Agent routing — auto-selects specialist agent per request |
115
- | `/brainstorm` | Ideation, option generation, feature exploration |
116
- | `/clean` | Clean junk files, caches, AI artifacts |
117
- | `/create` | Build new features, files, components, endpoints |
118
- | `/debug` | Root-cause analysis for bugs and errors |
119
- | `/deploy` | Deployment, CI/CD, release preparation |
120
- | `/enhance` | Refactor, optimize, tighten security, improve UX |
121
- | `/explain` | Explain code, walk through logic and architecture |
122
- | `/orchestrate` | Coordinate multi-step plans across domains |
123
- | `/plan` | Implementation plans with milestones and breakdown |
124
- | `/preview` | Preview output, UX flows, mockups before building |
125
- | `/status` | Project health, dependency, and progress reports |
126
- | `/test` | Generate and run tests, coverage analysis |
127
- | `/ui-ux-pro-max` | UI/UX design, accessibility, responsive layouts |
128
- | `/integrate` | Safely merge sample/snippet code into the existing system with minimal changes |
129
-
130
- All skills support both English and Vietnamese trigger keywords.
131
-
132
- ## Project Memory & `.ai-memory.md`
133
-
134
- The skills share a **project-wide memory file** (`.ai-memory.md`) that captures tech stack, architecture, decisions, known issues, and recent work.
135
- Memory writes are optimized to stay **short and de-duplicated**:
136
- - Central **Memory Compaction Rules** limit bullets per section and enforce concise, file-focused notes.
137
- - A lightweight **dedupe protocol** prevents duplicate bullets by normalizing/merging similar entries instead of appending.
138
- - Every skill’s `Memory Protocol` uses these rules, so memory stays useful over long-lived projects without growing out of control.
139
-
140
- For Codex-style workspaces, memory can also be mirrored into:
141
- - `memories/` (persistent user notes)
142
- - `memories/session/` (conversation-scoped notes)
143
- - `memories/repo/` (repo-scoped facts)
144
-
145
- `.ai-memory.md` remains the cross-IDE canonical memory file.
146
-
147
- ## Agent Routing System
148
-
149
- The `/agents` skill includes 11 specialist agent personas that are automatically selected based on your request:
150
-
151
- - **Architect** system design, scalability
152
- - **Backend** — APIs, databases, server logic
153
- - **Frontend** UI, components, styling
154
- - **DevOps** — CI/CD, Docker, infrastructure
155
- - **QA** — testing, quality assurance
156
- - **Security** — vulnerability analysis, hardening
157
- - **Data** — databases, queries, migrations
158
- - **Performance** — optimization, profiling
159
- - **Documentation** — docs, README, guides
160
- - **Reviewer** — code review, best practices
161
- - **Fullstack** — cross-domain coordination
162
-
163
- The router handles keyword matching, Vietnamese triggers, compound keywords, and vague-request fallback.
164
-
165
- ## How the Package is Structured
166
-
167
- ```
168
- .kiro/skills/ # Canonical skill source (15 skills)
169
- .agents/skills/ # Cross-client interop root
170
- lib/skill-bundle.js # Discovery, YAML parsing, catalog, render, install
171
- bin/cli.js # Interactive CLI with colors, prompts, GitHub fetcher
172
- bin/install-skills.ps1 # Optional PowerShell wrapper
173
- scripts/render-targets.js # Sample output renderer
174
- verify.js # 44-check test suite
175
- ```
176
-
177
- - Canonical source prefers `.skills`, then falls back to `.kiro/skills`
178
- - `lib/skill-bundle.js` contains all discovery, parsing, rendering, and install logic
179
- - `bin/cli.js` provides interactive install, GitHub `add`, list, status, and help commands
180
- - Each skill exposes: `slug`, `name`, `description`, `sourceRoot`, `hasScripts`, `hasReferences`, `hasAssets`, and per-target compatibility metadata
181
-
182
- ## Development
183
-
184
- ```bash
185
- # Run test suite (44 checks)
186
- node verify.js
187
-
188
- # Render sample targets
189
- npm run build:targets
190
- ```
191
-
192
- See [docs/skills-benchmark.md](docs/skills-benchmark.md) for the benchmark summary behind this design.
193
-
194
- ## Updating
195
-
196
- See [Update.md](Update.md) for the full release workflow:
197
-
198
- ```bash
199
- node verify.js # Test first
200
- git add . && git commit -m "description"
201
- npm run release:patch # Bug fixes: x.x.0 → x.x.1
202
- npm run release:minor # New features: x.0.x → x.1.0
203
- npm run release:major # Breaking: 0.x.x → 1.x.x
204
- ```
205
-
206
- ## License
207
-
208
- MIT
1
+ # AI Agent Skills
2
+
3
+ Cross-IDE AI agent skills with interactive CLI, dual-source `SKILL.md` discovery, GitHub skill fetching, and installers that render the right layout for each IDE.
4
+
5
+ [![npm version](https://img.shields.io/npm/v/@votruongdanh/ai-agent-skills.svg)](https://www.npmjs.com/package/@votruongdanh/ai-agent-skills)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+
8
+ ## Quick Install
9
+
10
+ ```bash
11
+ npx @votruongdanh/ai-agent-skills init
12
+ ```
13
+
14
+ The CLI launches an **interactive setup** — it always asks you to choose an IDE from the full supported list, then picks project vs global scope:
15
+
16
+ ```
17
+ AI Agent Skills v3.2.0
18
+
19
+ 🔧 Choose your IDE:
20
+ 1) Cursor
21
+ 2) Kiro
22
+ 3) Claude Code
23
+ 4) Antigravity
24
+ 5) Codex
25
+ 6) VS Code
26
+ 7) GitHub Copilot
27
+ 8) All supported IDEs
28
+
29
+ 📂 Install scope:
30
+ 1) This project only ← recommended
31
+ 2) Global (all projects)
32
+
33
+ [1] Installing skills...
34
+ ✔ 16 skills installed for Cursor
35
+
36
+ Done! Next steps:
37
+ 1. Reopen Cursor
38
+ 2. Open agent chat and type / to list skills
39
+ 3. Try: /create, /debug, /explain, or /plan
40
+ ```
41
+
42
+ ### Non-interactive mode
43
+
44
+ For CI/CD or scripting, pass `--ide` to skip prompts:
45
+
46
+ ```bash
47
+ npx @votruongdanh/ai-agent-skills init --ide=cursor
48
+ npx @votruongdanh/ai-agent-skills init --ide=all
49
+ npx @votruongdanh/ai-agent-skills init --ide=kiro
50
+ npx @votruongdanh/ai-agent-skills init --ide=claude-code
51
+ npx @votruongdanh/ai-agent-skills init --ide=antigravity
52
+ npx @votruongdanh/ai-agent-skills init --ide=codex
53
+ npx @votruongdanh/ai-agent-skills init --ide=vscode
54
+ npx @votruongdanh/ai-agent-skills init --ide=copilot
55
+ npx @votruongdanh/ai-agent-skills init --no-interactive
56
+ ```
57
+
58
+ The CLI still supports marker-based context detection for status/list flows when applicable, including parent-folder lookup.
59
+
60
+ For non-interactive mode (`--no-interactive`), `--ide` is required. You can pass `--ide=all` to install for every supported IDE in one run.
61
+
62
+ ## Add Skills from GitHub
63
+
64
+ Fetch skills directly from any GitHub repository:
65
+
66
+ ```bash
67
+ # Browse and pick skills interactively
68
+ npx @votruongdanh/ai-agent-skills add owner/repo
69
+
70
+ # Install a specific skill
71
+ npx @votruongdanh/ai-agent-skills add anthropics/skills --skill=pdf-processing
72
+
73
+ # Specify branch and target IDE
74
+ npx @votruongdanh/ai-agent-skills add anthropics/skills --ide=cursor --branch=main
75
+ ```
76
+
77
+ The `add` command:
78
+ - Fetches the GitHub repo tree via API
79
+ - Lists all `SKILL.md` files found
80
+ - Lets you pick one skill or install all
81
+ - Downloads companion `scripts/`, `references/`, `assets/` directories
82
+ - Installs to your chosen IDE format and scope
83
+
84
+ ## Commands
85
+
86
+ | Command | Description |
87
+ |---------|-------------|
88
+ | `npx @votruongdanh/ai-agent-skills init` | Interactive setup (choose IDE + scope) |
89
+ | `npx @votruongdanh/ai-agent-skills init --ide=cursor` | Non-interactive install for specific IDE |
90
+ | `npx @votruongdanh/ai-agent-skills global` | Install globally for all projects |
91
+ | `npx @votruongdanh/ai-agent-skills add owner/repo` | Add skills from a GitHub repository |
92
+ | `npx @votruongdanh/ai-agent-skills list` | List all bundled skills |
93
+ | `npx @votruongdanh/ai-agent-skills list --json` | JSON output for scripts |
94
+ | `npx @votruongdanh/ai-agent-skills status` | Show install status & versions |
95
+ | `npx @votruongdanh/ai-agent-skills help` | Show help |
96
+
97
+ ## Supported IDEs
98
+
99
+ | IDE | Installed layout | Notes |
100
+ | --- | --- | --- |
101
+ | Kiro | `.kiro/skills/<skill>/SKILL.md` | Native skill format |
102
+ | Cursor | `.cursor/skills/<skill>/SKILL.md` | Native skill format |
103
+ | Cursor legacy | `.cursor/rules/<skill>.mdc` | Generated compatibility layer |
104
+ | Claude Code | `.claude/skills/<skill>/SKILL.md` | Native skill format (Agent Skills standard) |
105
+ | Antigravity | `.agent/workflows/<skill>.md` | Generated workflow bridge |
106
+ | Antigravity legacy | `agent/workflows/<skill>.md` | Compatibility alias for older setups |
107
+ | Codex | `.agents/skills/<skill>/SKILL.md` | Detected from `.agents/skills`, `AGENTS.md`, and/or `memories/` |
108
+ | VS Code | `.github/skills/<skill>/SKILL.md` | Native SKILL.md format for Copilot Chat |
109
+ | GitHub Copilot | `.github/skills/<skill>/SKILL.md` | Alias of VS Code target |
110
+
111
+ Native skill targets keep the full skill directory. Generated compatibility targets (Cursor `.mdc` rules, Antigravity workflows) only render `SKILL.md` content — companion `scripts/`, `references/`, and `assets/` remain native-only.
112
+
113
+ ## Available Skills (16)
114
+
115
+ | Skill | Description |
116
+ |-------|-------------|
117
+ | `/agents` | Agent routing auto-selects specialist agent per request |
118
+ | `/brainstorm` | Ideation, option generation, feature exploration |
119
+ | `/clean` | Clean junk files, caches, AI artifacts |
120
+ | `/create` | Build new features, files, components, endpoints |
121
+ | `/debug` | Root-cause analysis for bugs and errors |
122
+ | `/deploy` | Deployment, CI/CD, release preparation |
123
+ | `/enhance` | Refactor, optimize, tighten security, improve UX |
124
+ | `/explain` | Explain code, walk through logic and architecture |
125
+ | `/integrate` | Safely merge sample/snippet code into the existing system with minimal changes |
126
+ | `/motion-ui` | Motion UI with Framer Motion micro-interactions and smooth animations |
127
+ | `/orchestrate` | Coordinate multi-step plans across domains |
128
+ | `/plan` | Implementation plans with milestones and breakdown |
129
+ | `/preview` | Preview output, UX flows, mockups before building |
130
+ | `/status` | Project health, dependency, and progress reports |
131
+ | `/test` | Generate and run tests, coverage analysis |
132
+ | `/ui-ux-pro-max` | UI/UX design, accessibility, responsive layouts |
133
+
134
+ All skills support both English and Vietnamese trigger keywords.
135
+
136
+ ## Project Memory & `.ai-memory.md`
137
+
138
+ The skills share a **project-wide memory file** (`.ai-memory.md`) that captures tech stack, architecture, decisions, known issues, and recent work.
139
+ Memory writes are optimized to stay **short and de-duplicated**:
140
+ - Central **Memory Compaction Rules** limit bullets per section and enforce concise, file-focused notes.
141
+ - A lightweight **dedupe protocol** prevents duplicate bullets by normalizing/merging similar entries instead of appending.
142
+ - Every skill’s `Memory Protocol` uses these rules, so memory stays useful over long-lived projects without growing out of control.
143
+
144
+ For Codex-style workspaces, memory can also be mirrored into:
145
+ - `memories/` (persistent user notes)
146
+ - `memories/session/` (conversation-scoped notes)
147
+ - `memories/repo/` (repo-scoped facts)
148
+
149
+ `.ai-memory.md` remains the cross-IDE canonical memory file.
150
+
151
+ ## Agent Routing System
152
+
153
+ The `/agents` skill includes 11 specialist agent personas that are automatically selected based on your request:
154
+
155
+ - **Architect** — system design, scalability
156
+ - **Backend** — APIs, databases, server logic
157
+ - **Frontend** — UI, components, styling
158
+ - **DevOps** — CI/CD, Docker, infrastructure
159
+ - **QA** — testing, quality assurance
160
+ - **Security** — vulnerability analysis, hardening
161
+ - **Data** — databases, queries, migrations
162
+ - **Performance** — optimization, profiling
163
+ - **Documentation** docs, README, guides
164
+ - **Reviewer** — code review, best practices
165
+ - **Fullstack** cross-domain coordination
166
+
167
+ The router handles keyword matching, Vietnamese triggers, compound keywords, and vague-request fallback.
168
+
169
+ ## How the Package is Structured
170
+
171
+ ```
172
+ .kiro/skills/ # Canonical skill source (16 skills)
173
+ .agents/skills/ # Cross-client interop root
174
+ lib/skill-bundle.js # Discovery, YAML parsing, catalog, render, install
175
+ bin/cli.js # Interactive CLI with colors, prompts, GitHub fetcher
176
+ bin/install-skills.ps1 # Optional PowerShell wrapper
177
+ scripts/render-targets.js # Sample output renderer
178
+ verify.js # 44-check test suite
179
+ ```
180
+
181
+ - Canonical source prefers `.skills`, then falls back to `.kiro/skills`
182
+ - `lib/skill-bundle.js` contains all discovery, parsing, rendering, and install logic
183
+ - `bin/cli.js` provides interactive install, GitHub `add`, list, status, and help commands
184
+ - Each skill exposes: `slug`, `name`, `description`, `sourceRoot`, `hasScripts`, `hasReferences`, `hasAssets`, and per-target compatibility metadata
185
+
186
+ ## Development
187
+
188
+ ```bash
189
+ # Run test suite (44 checks)
190
+ node verify.js
191
+
192
+ # Render sample targets
193
+ npm run build:targets
194
+ ```
195
+
196
+ See [docs/skills-benchmark.md](docs/skills-benchmark.md) for the benchmark summary behind this design.
197
+
198
+ ## Updating
199
+
200
+ See [Update.md](Update.md) for the full release workflow:
201
+
202
+ ```bash
203
+ node verify.js # Test first
204
+ git add . && git commit -m "description"
205
+ npm run release:patch # Bug fixes: x.x.0 → x.x.1
206
+ npm run release:minor # New features: x.0.x → x.1.0
207
+ npm run release:major # Breaking: 0.x.x → 1.x.x
208
+ ```
209
+
210
+ ## License
211
+
212
+ MIT