@ranimontagna/agent-toolkit 0.1.6 → 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 (38) hide show
  1. package/README.md +28 -8
  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/SKILL.md +4 -4
  16. package/skills/frontend/react/react-patterns/rules/react/LICENSE +21 -0
  17. package/skills/frontend/react/react-patterns/rules/react/NOTICE.md +11 -0
  18. package/skills/frontend/react/react-patterns/rules/react/coding-style.md +109 -0
  19. package/skills/frontend/react/react-patterns/rules/react/hooks.md +187 -0
  20. package/skills/frontend/react/react-patterns/rules/react/patterns.md +194 -0
  21. package/skills/frontend/react/react-patterns/rules/react/security.md +180 -0
  22. package/skills/frontend/react/react-patterns/rules/react/testing.md +208 -0
  23. package/skills/frontend/react/react-performance/SKILL.md +2 -2
  24. package/skills/frontend/react/react-performance/rules/react/LICENSE +21 -0
  25. package/skills/frontend/react/react-performance/rules/react/NOTICE.md +11 -0
  26. package/skills/frontend/react/react-performance/rules/react/coding-style.md +109 -0
  27. package/skills/frontend/react/react-performance/rules/react/hooks.md +187 -0
  28. package/skills/frontend/react/react-performance/rules/react/patterns.md +194 -0
  29. package/skills/frontend/react/react-performance/rules/react/security.md +180 -0
  30. package/skills/frontend/react/react-performance/rules/react/testing.md +208 -0
  31. package/skills/frontend/react/react-testing/SKILL.md +4 -4
  32. package/skills/frontend/react/react-testing/rules/react/LICENSE +21 -0
  33. package/skills/frontend/react/react-testing/rules/react/NOTICE.md +11 -0
  34. package/skills/frontend/react/react-testing/rules/react/coding-style.md +109 -0
  35. package/skills/frontend/react/react-testing/rules/react/hooks.md +187 -0
  36. package/skills/frontend/react/react-testing/rules/react/patterns.md +194 -0
  37. package/skills/frontend/react/react-testing/rules/react/security.md +180 -0
  38. package/skills/frontend/react/react-testing/rules/react/testing.md +208 -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,16 @@ 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
134
144
  frontend/
135
145
  react-native/
136
146
  react-native-expert/
@@ -140,10 +150,13 @@ skills/
140
150
  react/
141
151
  react-patterns/
142
152
  SKILL.md
153
+ rules/
143
154
  react-performance/
144
155
  SKILL.md
156
+ rules/
145
157
  react-testing/
146
158
  SKILL.md
159
+ rules/
147
160
  ```
148
161
 
149
162
  The first path segment is a selectable package:
@@ -153,10 +166,10 @@ skills/<package>/<optional-scope>/<skill-name>/SKILL.md
153
166
  ```
154
167
 
155
168
  Runtime installs are flat even when repository paths are nested. For example,
156
- `skills/backend/node/fastify-api-patterns/SKILL.md` installs as:
169
+ `skills/backend/java/java-junit/SKILL.md` installs as:
157
170
 
158
171
  ```text
159
- ~/.codex/skills/fastify-api-patterns/
172
+ ~/.codex/skills/java-junit/
160
173
  ```
161
174
 
162
175
  Use `--skills-package` to select first-level packages:
@@ -168,7 +181,7 @@ npx -y @ranimontagna/agent-toolkit --skills-only --codex --skills-package core
168
181
  Use `--skills-scope` to select a narrower path:
169
182
 
170
183
  ```bash
171
- 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
172
185
  ```
173
186
 
174
187
  Install only React Native skills:
@@ -185,7 +198,7 @@ npx -y @ranimontagna/agent-toolkit \
185
198
  --skills-only \
186
199
  --codex \
187
200
  --skills-package backend \
188
- --skills-scope backend/node
201
+ --skills-scope backend/java
189
202
  ```
190
203
 
191
204
  Each skill must be a directory containing `SKILL.md` with frontmatter:
@@ -207,12 +220,19 @@ Follow these steps...
207
220
  |---|---|---|
208
221
  | `core` | `agent-toolkit-maintainer` | Maintained in this repository |
209
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 |
210
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 |
211
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 |
212
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 |
213
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 |
214
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 |
215
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.
235
+
216
236
  The installer validates:
217
237
 
218
238
  - `SKILL.md` exists;
@@ -463,8 +483,8 @@ Release a new npm version by updating `package.json`, pushing the change to
463
483
  `main`, then pushing a matching tag:
464
484
 
465
485
  ```bash
466
- git tag v0.1.6
467
- git push origin v0.1.6
486
+ git tag v0.1.7
487
+ git push origin v0.1.7
468
488
  ```
469
489
 
470
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.6",
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`.