@ranimontagna/agent-toolkit 0.1.5 → 0.1.7

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 (60) hide show
  1. package/README.md +68 -14
  2. package/package.json +1 -1
  3. package/skills/backend/go/golang-patterns/LICENSE +21 -0
  4. package/skills/backend/go/golang-patterns/NOTICE.md +10 -0
  5. package/skills/backend/go/golang-patterns/SKILL.md +674 -0
  6. package/skills/backend/go/golang-testing/LICENSE +21 -0
  7. package/skills/backend/go/golang-testing/NOTICE.md +10 -0
  8. package/skills/backend/go/golang-testing/SKILL.md +329 -0
  9. package/skills/backend/java/java-coding-standards/LICENSE +21 -0
  10. package/skills/backend/java/java-coding-standards/NOTICE.md +10 -0
  11. package/skills/backend/java/java-coding-standards/SKILL.md +383 -0
  12. package/skills/backend/java/java-junit/LICENSE +21 -0
  13. package/skills/backend/java/java-junit/NOTICE.md +10 -0
  14. package/skills/backend/java/java-junit/SKILL.md +64 -0
  15. package/skills/frontend/react/react-patterns/LICENSE +21 -0
  16. package/skills/frontend/react/react-patterns/NOTICE.md +11 -0
  17. package/skills/frontend/react/react-patterns/SKILL.md +341 -0
  18. package/skills/frontend/react/react-patterns/rules/react/LICENSE +21 -0
  19. package/skills/frontend/react/react-patterns/rules/react/NOTICE.md +11 -0
  20. package/skills/frontend/react/react-patterns/rules/react/coding-style.md +109 -0
  21. package/skills/frontend/react/react-patterns/rules/react/hooks.md +187 -0
  22. package/skills/frontend/react/react-patterns/rules/react/patterns.md +194 -0
  23. package/skills/frontend/react/react-patterns/rules/react/security.md +180 -0
  24. package/skills/frontend/react/react-patterns/rules/react/testing.md +208 -0
  25. package/skills/frontend/react/react-performance/LICENSE +21 -0
  26. package/skills/frontend/react/react-performance/NOTICE.md +11 -0
  27. package/skills/frontend/react/react-performance/SKILL.md +574 -0
  28. package/skills/frontend/react/react-performance/rules/react/LICENSE +21 -0
  29. package/skills/frontend/react/react-performance/rules/react/NOTICE.md +11 -0
  30. package/skills/frontend/react/react-performance/rules/react/coding-style.md +109 -0
  31. package/skills/frontend/react/react-performance/rules/react/hooks.md +187 -0
  32. package/skills/frontend/react/react-performance/rules/react/patterns.md +194 -0
  33. package/skills/frontend/react/react-performance/rules/react/security.md +180 -0
  34. package/skills/frontend/react/react-performance/rules/react/testing.md +208 -0
  35. package/skills/frontend/react/react-testing/LICENSE +21 -0
  36. package/skills/frontend/react/react-testing/NOTICE.md +11 -0
  37. package/skills/frontend/react/react-testing/SKILL.md +423 -0
  38. package/skills/frontend/react/react-testing/rules/react/LICENSE +21 -0
  39. package/skills/frontend/react/react-testing/rules/react/NOTICE.md +11 -0
  40. package/skills/frontend/react/react-testing/rules/react/coding-style.md +109 -0
  41. package/skills/frontend/react/react-testing/rules/react/hooks.md +187 -0
  42. package/skills/frontend/react/react-testing/rules/react/patterns.md +194 -0
  43. package/skills/frontend/react/react-testing/rules/react/security.md +180 -0
  44. package/skills/frontend/react/react-testing/rules/react/testing.md +208 -0
  45. package/skills/frontend/react-native/react-native-expert/LICENSE +21 -0
  46. package/skills/frontend/react-native/react-native-expert/NOTICE.md +11 -0
  47. package/skills/frontend/react-native/react-native-expert/SKILL.md +187 -0
  48. package/skills/frontend/react-native/react-native-expert/references/expo-router.md +187 -0
  49. package/skills/frontend/react-native/react-native-expert/references/list-optimization.md +204 -0
  50. package/skills/frontend/react-native/react-native-expert/references/platform-handling.md +188 -0
  51. package/skills/frontend/react-native/react-native-expert/references/project-structure.md +171 -0
  52. package/skills/frontend/react-native/react-native-expert/references/storage-hooks.md +173 -0
  53. package/skills/frontend/react-native/react-native-unistyles-v3/LICENSE +21 -0
  54. package/skills/frontend/react-native/react-native-unistyles-v3/NOTICE.md +11 -0
  55. package/skills/frontend/react-native/react-native-unistyles-v3/SKILL.md +159 -0
  56. package/skills/frontend/react-native/react-native-unistyles-v3/references/api-reference.md +495 -0
  57. package/skills/frontend/react-native/react-native-unistyles-v3/references/common-issues.md +389 -0
  58. package/skills/frontend/react-native/react-native-unistyles-v3/references/setup-guide.md +217 -0
  59. package/skills/frontend/react-native/react-native-unistyles-v3/references/styling-patterns.md +705 -0
  60. package/skills/frontend/react-native/react-native-unistyles-v3/references/third-party-integration.md +318 -0
package/README.md CHANGED
@@ -23,8 +23,8 @@ any work.
23
23
  ![Detected status terminal screen](docs/assets/install-status.svg)
24
24
 
25
25
  Custom Skills are grouped by first-level package. Today this repository ships
26
- `core`; future packages can be added under `skills/<package>/...` and they will
27
- appear automatically in the menu.
26
+ `core`, `backend` and `frontend`; future packages can be added under
27
+ `skills/<package>/...` and they will appear automatically in the menu.
28
28
 
29
29
  ![Custom Skill package selection terminal screen](docs/assets/install-skill-packages.svg)
30
30
 
@@ -131,6 +131,32 @@ skills/
131
131
  fastify-best-practices/
132
132
  SKILL.md
133
133
  rules/
134
+ go/
135
+ golang-patterns/
136
+ SKILL.md
137
+ golang-testing/
138
+ SKILL.md
139
+ java/
140
+ java-coding-standards/
141
+ SKILL.md
142
+ java-junit/
143
+ SKILL.md
144
+ frontend/
145
+ react-native/
146
+ react-native-expert/
147
+ SKILL.md
148
+ react-native-unistyles-v3/
149
+ SKILL.md
150
+ react/
151
+ react-patterns/
152
+ SKILL.md
153
+ rules/
154
+ react-performance/
155
+ SKILL.md
156
+ rules/
157
+ react-testing/
158
+ SKILL.md
159
+ rules/
134
160
  ```
135
161
 
136
162
  The first path segment is a selectable package:
@@ -140,10 +166,10 @@ skills/<package>/<optional-scope>/<skill-name>/SKILL.md
140
166
  ```
141
167
 
142
168
  Runtime installs are flat even when repository paths are nested. For example,
143
- `skills/backend/node/fastify-api-patterns/SKILL.md` installs as:
169
+ `skills/backend/java/java-junit/SKILL.md` installs as:
144
170
 
145
171
  ```text
146
- ~/.codex/skills/fastify-api-patterns/
172
+ ~/.codex/skills/java-junit/
147
173
  ```
148
174
 
149
175
  Use `--skills-package` to select first-level packages:
@@ -155,7 +181,13 @@ npx -y @ranimontagna/agent-toolkit --skills-only --codex --skills-package core
155
181
  Use `--skills-scope` to select a narrower path:
156
182
 
157
183
  ```bash
158
- npx -y @ranimontagna/agent-toolkit --skills-only --codex --skills-scope backend/node
184
+ npx -y @ranimontagna/agent-toolkit --skills-only --codex --skills-scope backend/java
185
+ ```
186
+
187
+ Install only React Native skills:
188
+
189
+ ```bash
190
+ npx -y @ranimontagna/agent-toolkit --skills-only --codex --skills-scope frontend/react-native
159
191
  ```
160
192
 
161
193
  Both filters can be combined. The selected package filter runs first, then the
@@ -166,7 +198,7 @@ npx -y @ranimontagna/agent-toolkit \
166
198
  --skills-only \
167
199
  --codex \
168
200
  --skills-package backend \
169
- --skills-scope backend/node
201
+ --skills-scope backend/java
170
202
  ```
171
203
 
172
204
  Each skill must be a directory containing `SKILL.md` with frontmatter:
@@ -188,6 +220,18 @@ Follow these steps...
188
220
  |---|---|---|
189
221
  | `core` | `agent-toolkit-maintainer` | Maintained in this repository |
190
222
  | `backend` | `fastify-best-practices` | Copied from Matteo Collina's [`mcollina/skills`](https://github.com/mcollina/skills/tree/main/skills/fastify) under the MIT license |
223
+ | `backend` | `golang-patterns` | Copied from Affaan Mustafa's [`ECC`](https://github.com/affaan-m/ECC/tree/main/skills/golang-patterns) under the MIT license |
224
+ | `backend` | `golang-testing` | Copied from Affaan Mustafa's [`ECC`](https://github.com/affaan-m/ECC/tree/main/.kiro/skills/golang-testing) under the MIT license |
225
+ | `backend` | `java-coding-standards` | Copied from Affaan Mustafa's [`ECC`](https://github.com/affaan-m/ECC/tree/main/skills/java-coding-standards) under the MIT license |
226
+ | `backend` | `java-junit` | Copied from GitHub's [`awesome-copilot`](https://github.com/github/awesome-copilot/tree/main/skills/java-junit) under the MIT license |
227
+ | `frontend` | `react-native-expert` | Copied from Jeffallan's [`claude-skills`](https://github.com/Jeffallan/claude-skills/tree/main/skills/react-native-expert) under the MIT license |
228
+ | `frontend` | `react-native-unistyles-v3` | Copied from Jacek Pudysz's [`react-native-unistyles`](https://github.com/jpudysz/react-native-unistyles/tree/main/skills/react-native-unistyles-v3), declared MIT upstream |
229
+ | `frontend` | `react-patterns` | Copied from Affaan Mustafa's [`ECC`](https://github.com/affaan-m/ECC/tree/main/skills/react-patterns) under the MIT license |
230
+ | `frontend` | `react-performance` | Copied from Affaan Mustafa's [`ECC`](https://github.com/affaan-m/ECC/tree/main/skills/react-performance) under the MIT license |
231
+ | `frontend` | `react-testing` | Copied from Affaan Mustafa's [`ECC`](https://github.com/affaan-m/ECC/tree/main/skills/react-testing) under the MIT license |
232
+
233
+ Each React skill carries its own ECC `rules/react` references so Markdown links
234
+ still resolve after the installer copies skills into flat runtime directories.
191
235
 
192
236
  The installer validates:
193
237
 
@@ -197,9 +241,9 @@ The installer validates:
197
241
  - `name` uses lowercase letters, numbers and hyphens;
198
242
  - `description` is non-empty and under 1024 characters.
199
243
 
200
- Third-party frontend design skills are not vendored as bundled Custom Skills.
201
- The `frontend-skills` tool installs them externally through the Agent Skills CLI
202
- from pinned public sources.
244
+ Third-party frontend design skills such as Impeccable and Taste Skill are not
245
+ vendored as bundled Custom Skills. The `frontend-skills` tool installs them
246
+ externally through the Agent Skills CLI from pinned public sources.
203
247
 
204
248
  ## CLI Reference
205
249
 
@@ -315,9 +359,16 @@ Current external sources:
315
359
  | Frontend Skills | `skills@1.5.10`, `pbakaus/impeccable` and `Leonxlnx/taste-skill` at pinned commits | Clones pinned refs before install |
316
360
  | Runtime CLIs | Exact npm versions for Claude, Codex, OpenCode and Gemini | Used only when `--install-missing-clis` is enabled |
317
361
 
318
- Bundled third-party skills preserve upstream attribution and license files. The
319
- Fastify skill is copied from `mcollina/skills` at commit
320
- `5b2a81354b6d10325da0db9decc9ce5ecc714138` under the MIT license.
362
+ Bundled third-party skills preserve upstream attribution and license files:
363
+
364
+ | Skill | Source commit | License |
365
+ |---|---|---|
366
+ | `fastify-best-practices` | `mcollina/skills@5b2a81354b6d10325da0db9decc9ce5ecc714138` | MIT |
367
+ | `react-native-expert` | `Jeffallan/claude-skills@e8be415bc94d8d6ebddc2fb50e5d03c6e27d4319` | MIT |
368
+ | `react-native-unistyles-v3` | `jpudysz/react-native-unistyles@8b5e9fd281a81bdfd87d4fe9e6a0b042c84c5c83` | MIT |
369
+ | `react-patterns` | `affaan-m/ECC@0f84c0e2796703fbda87d577b2636351418c7442` | MIT |
370
+ | `react-performance` | `affaan-m/ECC@0f84c0e2796703fbda87d577b2636351418c7442` | MIT |
371
+ | `react-testing` | `affaan-m/ECC@0f84c0e2796703fbda87d577b2636351418c7442` | MIT |
321
372
 
322
373
  Releases use npm trusted publishing through GitHub Actions OIDC. The npm
323
374
  package is published without a long-lived npm token, and npm automatically
@@ -353,6 +404,9 @@ skills/
353
404
  fastify-best-practices/
354
405
  SKILL.md
355
406
  rules/
407
+ frontend/
408
+ react-native/
409
+ react/
356
410
  tests/
357
411
  unit/
358
412
  test-agent-toolkit.sh
@@ -429,8 +483,8 @@ Release a new npm version by updating `package.json`, pushing the change to
429
483
  `main`, then pushing a matching tag:
430
484
 
431
485
  ```bash
432
- git tag v0.1.5
433
- git push origin v0.1.5
486
+ git tag v0.1.7
487
+ git push origin v0.1.7
434
488
  ```
435
489
 
436
490
  The `Release` workflow runs the full check and publishes the scoped package to
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ranimontagna/agent-toolkit",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Personal AI agent toolkit installer for Claude Code, Codex CLI, OpenCode, Gemini CLI and graph-aware workflows.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@11.0.6",
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Affaan Mustafa
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.
@@ -0,0 +1,10 @@
1
+ # Third-party notice
2
+
3
+ This skill was copied from Affaan Mustafa's ECC repository.
4
+
5
+ - Source: https://github.com/affaan-m/ECC/tree/main/skills/golang-patterns
6
+ - Source commit: 0f84c0e2796703fbda87d577b2636351418c7442
7
+ - License: MIT
8
+ - Copyright: Copyright (c) 2026 Affaan Mustafa
9
+
10
+ The upstream MIT license is included in `LICENSE`.