@ranimontagna/agent-toolkit 0.1.17 → 0.1.19

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/CHANGELOG.md +11 -0
  2. package/CONTRIBUTING.md +34 -0
  3. package/README.md +67 -18
  4. package/SECURITY.md +24 -0
  5. package/dist/src/args.js +29 -0
  6. package/dist/src/args.js.map +1 -1
  7. package/dist/src/doctor.d.ts +28 -0
  8. package/dist/src/doctor.js +78 -0
  9. package/dist/src/doctor.js.map +1 -0
  10. package/dist/src/lock-update.d.ts +22 -0
  11. package/dist/src/lock-update.js +130 -0
  12. package/dist/src/lock-update.js.map +1 -0
  13. package/dist/src/main.js +74 -1
  14. package/dist/src/main.js.map +1 -1
  15. package/dist/src/manifest.d.ts +26 -0
  16. package/dist/src/manifest.js +104 -0
  17. package/dist/src/manifest.js.map +1 -0
  18. package/dist/src/release.d.ts +4 -0
  19. package/dist/src/release.js +80 -0
  20. package/dist/src/release.js.map +1 -0
  21. package/dist/src/skills-audit.d.ts +10 -0
  22. package/dist/src/skills-audit.js +75 -0
  23. package/dist/src/skills-audit.js.map +1 -0
  24. package/dist/src/skills.js +7 -2
  25. package/dist/src/skills.js.map +1 -1
  26. package/dist/src/state.d.ts +7 -0
  27. package/dist/src/state.js +7 -0
  28. package/dist/src/state.js.map +1 -1
  29. package/dist/src/usage.js +10 -0
  30. package/dist/src/usage.js.map +1 -1
  31. package/package.json +11 -5
  32. package/skills/backend/api/api-design/NOTICE.md +1 -1
  33. package/skills/backend/api/api-design/SKILL.md +2 -1
  34. package/skills/backend/go/golang-patterns/NOTICE.md +1 -1
  35. package/skills/backend/go/golang-patterns/SKILL.md +2 -1
  36. package/skills/backend/java/java-coding-standards/NOTICE.md +1 -1
  37. package/skills/backend/java/java-coding-standards/SKILL.md +2 -1
  38. package/skills/backend/kotlin/kotlin-patterns/NOTICE.md +1 -1
  39. package/skills/backend/kotlin/kotlin-patterns/SKILL.md +2 -1
  40. package/skills/backend/kotlin/kotlin-testing/NOTICE.md +1 -1
  41. package/skills/backend/kotlin/kotlin-testing/SKILL.md +2 -1
  42. package/skills/frontend/accessibility/NOTICE.md +1 -1
  43. package/skills/frontend/accessibility/SKILL.md +2 -1
  44. package/skills/frontend/astro/astro-developer/NOTICE.md +1 -1
  45. package/skills/frontend/astro/astro-developer/SKILL.md +1 -1
  46. package/skills/frontend/astro/astro-developer/debugging.md +7 -7
  47. package/skills/frontend/design/ui-ux-pro-max/NOTICE.md +1 -1
  48. package/skills/frontend/design/ui-ux-pro-max/SKILL.md +30 -18
  49. package/skills/frontend/react/react-patterns/NOTICE.md +1 -1
  50. package/skills/frontend/react/react-patterns/SKILL.md +2 -1
  51. package/skills/frontend/react/react-performance/NOTICE.md +1 -1
  52. package/skills/frontend/react/react-performance/SKILL.md +2 -1
  53. package/skills/frontend/react/react-testing/NOTICE.md +1 -1
  54. package/skills/frontend/react/react-testing/SKILL.md +2 -1
  55. package/skills/general/code-reviewer/AGENTS.md +1 -1
  56. package/skills/general/code-reviewer/NOTICE.md +1 -1
  57. package/skills/general/thermo-nuclear-code-quality-review/LICENSE +21 -0
  58. package/skills/general/thermo-nuclear-code-quality-review/NOTICE.md +12 -0
  59. package/skills/general/thermo-nuclear-code-quality-review/SKILL.md +192 -0
  60. package/tools.lock.json +14 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ranimontagna/agent-toolkit",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "Personal AI agent toolkit installer for Claude Code, Codex CLI, OpenCode, Gemini CLI, Antigravity and graph-aware workflows.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@11.8.0",
@@ -14,7 +14,10 @@
14
14
  "skills",
15
15
  "tools.lock.json",
16
16
  "setup-agent-toolkit.sh",
17
- "README.md"
17
+ "README.md",
18
+ "CHANGELOG.md",
19
+ "CONTRIBUTING.md",
20
+ "SECURITY.md"
18
21
  ],
19
22
  "publishConfig": {
20
23
  "access": "public"
@@ -26,6 +29,9 @@
26
29
  "lint": "biome check .",
27
30
  "lint:fix": "biome check --write .",
28
31
  "prepare": "pnpm run build",
32
+ "release:major": "pnpm run build && node dist/src/release.js major",
33
+ "release:minor": "pnpm run build && node dist/src/release.js minor",
34
+ "release:patch": "pnpm run build && node dist/src/release.js patch",
29
35
  "security": "pnpm run security:audit",
30
36
  "security:audit": "pnpm audit --audit-level=moderate",
31
37
  "test": "pnpm run test:unit && pnpm run test:integration",
@@ -43,12 +49,12 @@
43
49
  "homepage": "https://github.com/raniellimontagna/agent-toolkit#readme",
44
50
  "license": "MIT",
45
51
  "devDependencies": {
46
- "@biomejs/biome": "^2.5.0",
47
- "@types/node": "^25.9.3",
52
+ "@biomejs/biome": "^2.5.1",
53
+ "@types/node": "^26.0.1",
48
54
  "typescript": "^6.0.3",
49
55
  "vitest": "^4.1.9"
50
56
  },
51
57
  "dependencies": {
52
- "@clack/prompts": "^1.5.1"
58
+ "@clack/prompts": "^1.6.0"
53
59
  }
54
60
  }
@@ -1,6 +1,6 @@
1
1
  # Attribution
2
2
 
3
- This skill is adapted from `affaan-m/ECC`, `skills/api-design`, commit `0f84c0e2796703fbda87d577b2636351418c7442`.
3
+ This skill is adapted from `affaan-m/ECC`, `skills/api-design`, commit `2bc924faf2f8e893bfe0af86b1931283693c30ae`.
4
4
 
5
5
  Source: https://github.com/affaan-m/ECC/tree/main/skills/api-design
6
6
 
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: api-design
3
3
  description: Use when designing, reviewing, or implementing REST APIs, including resource naming, status codes, pagination, filtering, error responses, versioning, and rate limiting.
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # API Design Patterns
@@ -3,7 +3,7 @@
3
3
  This skill was copied from Affaan Mustafa's ECC repository.
4
4
 
5
5
  - Source: https://github.com/affaan-m/ECC/tree/main/skills/golang-patterns
6
- - Source commit: 0f84c0e2796703fbda87d577b2636351418c7442
6
+ - Source commit: 2bc924faf2f8e893bfe0af86b1931283693c30ae
7
7
  - License: MIT
8
8
  - Copyright: Copyright (c) 2026 Affaan Mustafa
9
9
 
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: golang-patterns
3
3
  description: Use when writing, reviewing, or refactoring Go applications and applying idiomatic patterns, conventions, concurrency, error handling, package design, and maintainability practices.
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # Go Development Patterns
@@ -3,7 +3,7 @@
3
3
  This skill was copied from Affaan Mustafa's ECC repository.
4
4
 
5
5
  - Source: https://github.com/affaan-m/ECC/tree/main/skills/java-coding-standards
6
- - Source commit: 0f84c0e2796703fbda87d577b2636351418c7442
6
+ - Source commit: 2bc924faf2f8e893bfe0af86b1931283693c30ae
7
7
  - License: MIT
8
8
  - Copyright: Copyright (c) 2026 Affaan Mustafa
9
9
 
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: java-coding-standards
3
3
  description: "Use when writing or reviewing Java 17+ code in Spring Boot or Quarkus services, including naming, immutability, Optional usage, streams, exceptions, generics, CDI, reactive patterns, and project layout."
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # Java Coding Standards
@@ -1,6 +1,6 @@
1
1
  # Attribution
2
2
 
3
- This skill is adapted from `affaan-m/ECC`, `skills/kotlin-patterns`, commit `0f84c0e2796703fbda87d577b2636351418c7442`.
3
+ This skill is adapted from `affaan-m/ECC`, `skills/kotlin-patterns`, commit `2bc924faf2f8e893bfe0af86b1931283693c30ae`.
4
4
 
5
5
  Source: https://github.com/affaan-m/ECC/tree/main/skills/kotlin-patterns
6
6
 
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: kotlin-patterns
3
3
  description: Use when writing, reviewing, or refactoring Kotlin applications with coroutines, null safety, immutability, sealed types, extension functions, DSL builders, and Gradle Kotlin DSL.
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # Kotlin Development Patterns
@@ -1,6 +1,6 @@
1
1
  # Attribution
2
2
 
3
- This skill is adapted from `affaan-m/ECC`, `skills/kotlin-testing`, commit `0f84c0e2796703fbda87d577b2636351418c7442`.
3
+ This skill is adapted from `affaan-m/ECC`, `skills/kotlin-testing`, commit `2bc924faf2f8e893bfe0af86b1931283693c30ae`.
4
4
 
5
5
  Source: https://github.com/affaan-m/ECC/tree/main/skills/kotlin-testing
6
6
 
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: kotlin-testing
3
3
  description: Use when writing or improving Kotlin tests with Kotest, MockK, coroutine testing, property-based testing, Ktor testApplication, Kover coverage, or TDD workflows.
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # Kotlin Testing Patterns
@@ -3,7 +3,7 @@
3
3
  This skill was copied from Affaan Mustafa's ECC repository.
4
4
 
5
5
  - Source: https://github.com/affaan-m/ECC/tree/main/skills/accessibility
6
- - Source commit: 0f84c0e2796703fbda87d577b2636351418c7442
6
+ - Source commit: 2bc924faf2f8e893bfe0af86b1931283693c30ae
7
7
  - License: MIT
8
8
  - Copyright: Copyright (c) 2026 Affaan Mustafa
9
9
 
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: accessibility
3
3
  description: Use when designing, implementing, or auditing accessible web, iOS, or Android interfaces against WCAG 2.2 Level AA, semantic HTML, ARIA, keyboard navigation, focus management, and native accessibility traits.
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # Accessibility (WCAG 2.2)
@@ -1,6 +1,6 @@
1
1
  # Attribution
2
2
 
3
- This skill is copied from the official Astro repository, `.agents/skills/astro-developer`, commit `c90ce9751c7862a7280e752549ef74298669693d`.
3
+ This skill is copied from the official Astro repository, `.agents/skills/astro-developer`, commit `e37dfe2a7623acd364d7e3556ecc9b31e3e45520`.
4
4
 
5
5
  Source: https://github.com/withastro/astro/tree/main/.agents/skills/astro-developer
6
6
 
@@ -127,6 +127,6 @@ See [testing.md](testing.md) for complete patterns and examples.
127
127
 
128
128
  - Root: [/AGENTS.md](https://github.com/withastro/astro/blob/main/AGENTS.md)
129
129
  - Root: [/CONTRIBUTING.md](https://github.com/withastro/astro/blob/main/CONTRIBUTING.md)
130
- - Astro docs: https://docs.astro.build/llms.txt
130
+ - Astro docs: https://docs.astro.build/
131
131
  - Package: packages/astro/src/core/README.md
132
132
  - Build plugins: packages/astro/src/core/build/plugins/README.md
@@ -336,7 +336,7 @@ HMR testing requires a browser. **Do not use `curl`** for HMR issues.
336
336
 
337
337
  ```bash
338
338
  # Start dev server in background
339
- pnpm exec bgproc start -n devserver --wait-for-port 10 -- pnpm -C examples/minimal dev
339
+ pnpm -C examples/minimal dev --background
340
340
 
341
341
  # Open browser
342
342
  agent-browser open http://localhost:4321
@@ -348,10 +348,10 @@ agent-browser snapshot -i
348
348
  # Verify HMR updates the page
349
349
 
350
350
  # View logs
351
- pnpm exec bgproc logs -n devserver
351
+ pnpm -C examples/minimal dev logs
352
352
 
353
353
  # Cleanup
354
- pnpm exec bgproc stop -n devserver
354
+ pnpm -C examples/minimal dev stop
355
355
  ```
356
356
 
357
357
  ### Check HMR Boundaries
@@ -471,11 +471,11 @@ See [testing.md](testing.md) for comprehensive test debugging.
471
471
  **Fix:**
472
472
 
473
473
  ```bash
474
- # List running processes
475
- pnpm exec bgproc list
474
+ # Check dev server status
475
+ pnpm -C examples/minimal dev status
476
476
 
477
- # Stop specific server
478
- pnpm exec bgproc stop -n devserver
477
+ # Stop dev server
478
+ pnpm -C examples/minimal dev stop
479
479
 
480
480
  # Kill all node processes (nuclear option)
481
481
  killall node
@@ -3,7 +3,7 @@
3
3
  This skill was copied from Next Level Builder's UI/UX Pro Max Skill repository.
4
4
 
5
5
  - Source: https://github.com/nextlevelbuilder/ui-ux-pro-max-skill/tree/main/.claude/skills/ui-ux-pro-max
6
- - Source commit: b7e3af80f6e331f6fb456667b82b12cade7c9d35
6
+ - Source commit: 8a81ed60272d21d4b8808f7308d49a0b1b000555
7
7
  - License: MIT
8
8
  - Copyright: Copyright (c) 2024 Next Level Builder
9
9
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ui-ux-pro-max
3
- description: Use when designing, implementing, reviewing, or improving UI/UX for web or mobile products, including layout, style, color, typography, accessibility, interaction states, responsive behavior, dashboards, landing pages, SaaS, e-commerce, portfolios, and app interfaces.
3
+ description: "UI/UX design intelligence for web and mobile. Includes 50+ styles, 161 color palettes, 57 font pairings, 161 product types, 99 UX guidelines, and 25 chart types across 10 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, and HTML/CSS). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, and check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, and mobile app. Elements: button, modal, navbar, sidebar, card, table, form, and chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, and flat design. Topics: color systems, accessibility, animation, layout, typography, font pairing, spacing, interaction states, shadow, and gradient. Integrations: shadcn/ui MCP for component search and examples."
4
4
  ---
5
5
 
6
6
  # UI/UX Pro Max - Design Intelligence
@@ -330,6 +330,8 @@ sudo apt update && sudo apt install python3
330
330
  winget install Python.Python.3.12
331
331
  ```
332
332
 
333
+ > **Note:** On Windows, use `python` instead of `python3` to run scripts (e.g., `python scripts/search.py` instead of `python3 scripts/search.py`).
334
+
333
335
  ---
334
336
 
335
337
  ## How to Use This Skill
@@ -360,7 +362,7 @@ Extract key information from user request:
360
362
  - **Product type**: Entertainment (social, video, music, gaming), Tool (scanner, editor, converter), Productivity (task manager, notes, calendar), or hybrid
361
363
  - **Target audience**: C-end consumer users; consider age group, usage context (commute, leisure, work)
362
364
  - **Style keywords**: playful, vibrant, minimal, dark mode, content-first, immersive, etc.
363
- - **Stack**: Detect the project stack first, then use the matching stack search when available
365
+ - **Stack**: Match the project's framework. The engine ships guidance for many stacks (see [Available Stacks](#available-stacks) below) — pass the matching `--stack` (e.g. `nextjs`, `react`, `shadcn`, `vue`, `svelte`, `astro`, `swiftui`, `flutter`, `react-native`).
364
366
 
365
367
  ### Step 2: Generate Design System (REQUIRED)
366
368
 
@@ -440,12 +442,14 @@ python3 scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
440
442
  | App interface a11y | `web` | `--domain web "accessibilityLabel touch safe-areas"` |
441
443
  | AI prompt / CSS keywords | `prompt` | `--domain prompt "minimalism"` |
442
444
 
443
- ### Step 4: Stack Guidelines
445
+ ### Step 4: Stack Guidelines (match your framework)
444
446
 
445
- Get implementation-specific best practices for the detected stack:
447
+ Get implementation-specific best practices for the stack you're building in.
448
+ Pass the `--stack` that matches the project's framework:
446
449
 
447
450
  ```bash
448
- python3 scripts/search.py "<keyword>" --stack react
451
+ python3 scripts/search.py "<keyword>" --stack <your-stack>
452
+ # e.g. --stack nextjs | react | shadcn | vue | svelte | astro | swiftui | flutter | react-native
449
453
  ```
450
454
 
451
455
  ---
@@ -470,18 +474,26 @@ python3 scripts/search.py "<keyword>" --stack react
470
474
 
471
475
  ### Available Stacks
472
476
 
477
+ Run `ls <skill>/data/stacks/` to see the live set. Shipped stacks:
478
+
473
479
  | Stack | Focus |
474
480
  |-------|-------|
475
- | `react` | Components, state, rendering, accessibility |
476
- | `nextjs` | App Router, server/client boundaries, routing |
477
- | `vue` | Components and composition patterns |
478
- | `svelte` | Components and reactivity patterns |
479
- | `astro` | Content and island architecture |
480
- | `swiftui` | iOS-native UI structure |
481
- | `react-native` | Components, navigation, lists |
482
- | `flutter` | Widgets, theming, navigation |
483
- | `html-tailwind` | Utility-first HTML/CSS |
484
- | `shadcn` | Radix/shadcn UI composition |
481
+ | `react` | Components, hooks, render performance |
482
+ | `nextjs` | App Router, RSC, Server Actions, rendering |
483
+ | `vue` | Components, Composition API, reactivity |
484
+ | `nuxtjs` | Nuxt app patterns, SSR data fetching |
485
+ | `nuxt-ui` | Nuxt UI component patterns |
486
+ | `svelte` | Components, stores, transitions |
487
+ | `astro` | Islands, content, partial hydration |
488
+ | `shadcn` | shadcn/ui primitives, composition |
489
+ | `html-tailwind` | Tailwind utility patterns |
490
+ | `angular` | Components, signals, services |
491
+ | `laravel` | Blade / server-rendered UI patterns |
492
+ | `swiftui` | Views, state, navigation (iOS/macOS) |
493
+ | `flutter` | Widgets, state, navigation |
494
+ | `jetpack-compose` | Composables, state, navigation (Android) |
495
+ | `react-native` | Components, Navigation, Lists |
496
+ | `threejs` | 3D scenes, materials, performance |
485
497
 
486
498
  ---
487
499
 
@@ -493,7 +505,7 @@ python3 scripts/search.py "<keyword>" --stack react
493
505
  - Product type: Tool (AI search engine)
494
506
  - Target audience: C-end users looking for fast, intelligent search
495
507
  - Style keywords: modern, minimal, content-first, dark mode
496
- - Stack: detected from the target project
508
+ - Stack: Next.js (a homepage is a web surface; use a web `--stack`)
497
509
 
498
510
  ### Step 2: Generate Design System (REQUIRED)
499
511
 
@@ -516,7 +528,7 @@ python3 scripts/search.py "search loading animation" --domain ux
516
528
  ### Step 4: Stack Guidelines
517
529
 
518
530
  ```bash
519
- python3 scripts/search.py "list performance navigation" --stack react
531
+ python3 scripts/search.py "list performance navigation" --stack nextjs
520
532
  ```
521
533
 
522
534
  **Then:** Synthesize design system + detailed searches and implement the design.
@@ -544,7 +556,7 @@ python3 scripts/search.py "fintech crypto" --design-system -f markdown
544
556
  - Use **multi-dimensional keywords** — combine product + industry + tone + density: `"entertainment social vibrant content-dense"` not just `"app"`
545
557
  - Try different keywords for the same need: `"playful neon"` → `"vibrant dark"` → `"content-first minimal"`
546
558
  - Use `--design-system` first for full recommendations, then `--domain` to deep-dive any dimension you're unsure about
547
- - Add the matching `--stack` option for implementation-specific guidance
559
+ - Add the `--stack` that matches the project's framework for implementation-specific guidance
548
560
 
549
561
  ### Common Sticking Points
550
562
 
@@ -3,7 +3,7 @@
3
3
  This skill is copied from Affaan Mustafa's public `affaan-m/ECC` repository.
4
4
 
5
5
  - Source: https://github.com/affaan-m/ECC/tree/main/skills/react-patterns
6
- - Imported from commit: `0f84c0e2796703fbda87d577b2636351418c7442`
6
+ - Imported from commit: `2bc924faf2f8e893bfe0af86b1931283693c30ae`
7
7
  - Upstream skill name: `react-patterns`
8
8
  - License: MIT
9
9
  - Copyright: Copyright (c) 2026 Affaan Mustafa
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: react-patterns
3
3
  description: React 18/19 patterns including hooks discipline, server/client component boundaries, Suspense + error boundaries, form actions, data fetching, state management decision trees, and accessibility-first composition. Use when writing or reviewing React components.
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # React Patterns
@@ -3,7 +3,7 @@
3
3
  This skill is copied from Affaan Mustafa's public `affaan-m/ECC` repository.
4
4
 
5
5
  - Source: https://github.com/affaan-m/ECC/tree/main/skills/react-performance
6
- - Imported from commit: `0f84c0e2796703fbda87d577b2636351418c7442`
6
+ - Imported from commit: `2bc924faf2f8e893bfe0af86b1931283693c30ae`
7
7
  - Upstream skill name: `react-performance`
8
8
  - License: MIT
9
9
  - Copyright: Copyright (c) 2026 Affaan Mustafa
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: react-performance
3
3
  description: React and Next.js performance optimization patterns adapted from Vercel Engineering's React Best Practices (https://github.com/vercel-labs/agent-skills). Organizes 70+ rules across 8 priority categories — waterfalls, bundle size, server-side, client fetching, re-render, rendering, JS micro-perf, advanced. Use when writing, reviewing, or refactoring React/Next.js code for performance.
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # React Performance
@@ -3,7 +3,7 @@
3
3
  This skill is copied from Affaan Mustafa's public `affaan-m/ECC` repository.
4
4
 
5
5
  - Source: https://github.com/affaan-m/ECC/tree/main/skills/react-testing
6
- - Imported from commit: `0f84c0e2796703fbda87d577b2636351418c7442`
6
+ - Imported from commit: `2bc924faf2f8e893bfe0af86b1931283693c30ae`
7
7
  - Upstream skill name: `react-testing`
8
8
  - License: MIT
9
9
  - Copyright: Copyright (c) 2026 Affaan Mustafa
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: react-testing
3
3
  description: React component testing with React Testing Library, Vitest/Jest, MSW for network mocking, accessibility assertions with axe, and the decision boundary between component tests and Playwright/Cypress end-to-end runs. Use when writing or fixing tests for React components, hooks, or pages.
4
- origin: ECC
4
+ metadata:
5
+ origin: ECC
5
6
  ---
6
7
 
7
8
  # React Testing
@@ -11,7 +11,7 @@
11
11
  2. [XSS Prevention](#xss-prevention)
12
12
 
13
13
  ### Performance — **HIGH**
14
- 3. [Avoid N+1 Query Problem](#avoid-n-1-query-problem)
14
+ 3. [Avoid N+1 Query Problem](#avoid-n1-query-problem)
15
15
 
16
16
  ### Correctness — **HIGH**
17
17
  4. [Proper Error Handling](#proper-error-handling)
@@ -3,7 +3,7 @@
3
3
  This skill was copied from Shubhamsaboo's awesome-llm-apps repository.
4
4
 
5
5
  - Source: https://github.com/Shubhamsaboo/awesome-llm-apps/tree/main/awesome_agent_skills/code-reviewer
6
- - Source commit: 72718ec759ecc82ead7666fd47922928b61c2b4d
6
+ - Source commit: ca3a3d37438643fd47b1dac095c2ce9cca92ef72
7
7
  - Repository license: Apache-2.0
8
8
  - Upstream skill metadata also declares: MIT
9
9
 
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Cursor
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,12 @@
1
+ # Attribution
2
+
3
+ This skill is copied from Cursor's public `cursor/plugins` repository.
4
+
5
+ - Source: https://github.com/cursor/plugins/tree/main/cursor-team-kit/skills/thermo-nuclear-code-quality-review
6
+ - Imported from commit: `e46364b8be46000b7df0f260550cd712afbb8d36`
7
+ - Upstream plugin: `cursor-team-kit`
8
+ - Upstream skill name: `thermo-nuclear-code-quality-review`
9
+ - License: MIT
10
+ - Copyright: Copyright (c) 2026 Cursor
11
+
12
+ The upstream MIT license text is preserved in `LICENSE`.