@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.
- package/.kiro/skills/_scripts/.ai-memory-template.md +55 -55
- package/.kiro/skills/_scripts/checklist.md +35 -34
- package/.kiro/skills/_scripts/memory-compact.md +142 -0
- package/.kiro/skills/_scripts/memory-dedupe.md +26 -26
- package/.kiro/skills/_scripts/pre-deploy.md +42 -42
- package/.kiro/skills/_scripts/verify-all.md +28 -28
- package/.kiro/skills/agents/SKILL.md +85 -85
- package/.kiro/skills/agents/agents/backend-specialist.md +29 -29
- package/.kiro/skills/agents/agents/database-architect.md +28 -28
- package/.kiro/skills/agents/agents/debugger.md +29 -29
- package/.kiro/skills/agents/agents/devops-engineer.md +30 -30
- package/.kiro/skills/agents/agents/documentation-writer.md +29 -29
- package/.kiro/skills/agents/agents/frontend-specialist.md +30 -30
- package/.kiro/skills/agents/agents/orchestrator.md +36 -36
- package/.kiro/skills/agents/agents/performance-optimizer.md +29 -29
- package/.kiro/skills/agents/agents/project-planner.md +30 -30
- package/.kiro/skills/agents/agents/security-auditor.md +30 -30
- package/.kiro/skills/agents/agents/test-engineer.md +29 -29
- package/.kiro/skills/brainstorm/SKILL.md +66 -66
- package/.kiro/skills/clean/SKILL.md +90 -90
- package/.kiro/skills/create/SKILL.md +63 -63
- package/.kiro/skills/debug/SKILL.md +71 -71
- package/.kiro/skills/deploy/SKILL.md +66 -66
- package/.kiro/skills/enhance/SKILL.md +58 -58
- package/.kiro/skills/explain/SKILL.md +69 -69
- package/.kiro/skills/instructions.md +95 -93
- package/.kiro/skills/integrate/SKILL.md +50 -50
- package/.kiro/skills/motion-ui/SKILL.md +492 -0
- package/.kiro/skills/orchestrate/SKILL.md +73 -73
- package/.kiro/skills/plan/SKILL.md +69 -69
- package/.kiro/skills/preview/SKILL.md +55 -55
- package/.kiro/skills/status/SKILL.md +57 -57
- package/.kiro/skills/test/SKILL.md +58 -58
- package/.kiro/skills/ui-ux-pro-max/SKILL.md +65 -65
- package/LICENSE +21 -21
- package/README.md +212 -208
- package/bin/cli.js +876 -876
- package/bin/install-skills.ps1 +30 -30
- package/index.js +23 -23
- package/lib/skill-bundle.js +741 -725
- package/package.json +62 -62
- 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
|
-
[](https://www.npmjs.com/package/@votruongdanh/ai-agent-skills)
|
|
6
|
-
[](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)
|
|
23
|
-
4)
|
|
24
|
-
5)
|
|
25
|
-
6)
|
|
26
|
-
7)
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
npx @votruongdanh/ai-agent-skills init --ide=
|
|
48
|
-
npx @votruongdanh/ai-agent-skills init --ide=
|
|
49
|
-
npx @votruongdanh/ai-agent-skills init --ide=
|
|
50
|
-
npx @votruongdanh/ai-agent-skills init --ide=
|
|
51
|
-
npx @votruongdanh/ai-agent-skills init --ide=
|
|
52
|
-
npx @votruongdanh/ai-agent-skills init --ide=
|
|
53
|
-
npx @votruongdanh/ai-agent-skills init --
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
|
87
|
-
|
|
88
|
-
| `npx @votruongdanh/ai-agent-skills
|
|
89
|
-
| `npx @votruongdanh/ai-agent-skills
|
|
90
|
-
| `npx @votruongdanh/ai-agent-skills
|
|
91
|
-
| `npx @votruongdanh/ai-agent-skills
|
|
92
|
-
| `npx @votruongdanh/ai-agent-skills
|
|
93
|
-
| `npx @votruongdanh/ai-agent-skills
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
|
100
|
-
|
|
|
101
|
-
|
|
|
102
|
-
|
|
|
103
|
-
|
|
|
104
|
-
|
|
|
105
|
-
|
|
|
106
|
-
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
|
116
|
-
|
|
117
|
-
| `/
|
|
118
|
-
| `/
|
|
119
|
-
| `/
|
|
120
|
-
| `/
|
|
121
|
-
| `/
|
|
122
|
-
| `/
|
|
123
|
-
| `/
|
|
124
|
-
| `/
|
|
125
|
-
| `/
|
|
126
|
-
| `/
|
|
127
|
-
| `/
|
|
128
|
-
| `/
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
-
|
|
142
|
-
- `
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
- **
|
|
156
|
-
- **
|
|
157
|
-
- **
|
|
158
|
-
- **
|
|
159
|
-
- **
|
|
160
|
-
- **
|
|
161
|
-
- **
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
See [
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
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
|
+
[](https://www.npmjs.com/package/@votruongdanh/ai-agent-skills)
|
|
6
|
+
[](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
|