@techwavedev/agi-agent-kit 1.1.7 → 1.2.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.
- package/CHANGELOG.md +142 -1
- package/README.md +195 -15
- package/bin/init.js +154 -5
- package/package.json +6 -3
- package/templates/base/AGENTS.md +54 -23
- package/templates/base/README.md +327 -0
- package/templates/base/directives/memory_integration.md +95 -0
- package/templates/base/execution/memory_manager.py +309 -0
- package/templates/base/execution/session_boot.py +218 -0
- package/templates/base/execution/session_init.py +320 -0
- package/templates/base/requirements.txt +45 -6
- package/templates/base/skill-creator/SKILL_skillcreator.md +3 -3
- package/templates/skills/knowledge/design-md/README.md +0 -0
- package/templates/skills/knowledge/design-md/SKILL.md +0 -0
- package/templates/skills/knowledge/design-md/examples/DESIGN.md +0 -0
- package/templates/skills/knowledge/intelligent-routing/SKILL.md +237 -164
- package/templates/skills/knowledge/notebooklm-rag/SKILL.md +216 -0
- package/templates/skills/knowledge/notebooklm-rag/requirements.txt +9 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/ask_question.py +237 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/auth_manager.py +307 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/browser_utils.py +101 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/cleanup_manager.py +87 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/config.py +45 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/notebook_manager.py +334 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/run.py +92 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/setup_environment.py +68 -0
- package/templates/skills/knowledge/parallel-agents/SKILL.md +345 -73
- package/templates/skills/knowledge/plugin-discovery/SKILL.md +581 -0
- package/templates/skills/knowledge/plugin-discovery/scripts/platform_setup.py +1083 -0
- package/templates/skills/knowledge/react-components/README.md +0 -0
- package/templates/skills/knowledge/react-components/SKILL.md +0 -0
- package/templates/skills/knowledge/react-components/examples/gold-standard-card.tsx +0 -0
- package/templates/skills/knowledge/react-components/package-lock.json +0 -0
- package/templates/skills/knowledge/react-components/package.json +0 -0
- package/templates/skills/knowledge/react-components/resources/architecture-checklist.md +0 -0
- package/templates/skills/knowledge/react-components/resources/component-template.tsx +0 -0
- package/templates/skills/knowledge/react-components/resources/stitch-api-reference.md +0 -0
- package/templates/skills/knowledge/react-components/resources/style-guide.json +0 -0
- package/templates/skills/knowledge/react-components/scripts/validate.js +0 -0
- package/templates/skills/knowledge/self-update/SKILL.md +0 -0
- package/templates/skills/knowledge/self-update/scripts/update_kit.py +0 -0
- package/templates/skills/knowledge/stitch-loop/README.md +0 -0
- package/templates/skills/knowledge/stitch-loop/SKILL.md +3 -3
- package/templates/skills/knowledge/stitch-loop/examples/SITE.md +0 -0
- package/templates/skills/knowledge/stitch-loop/examples/next-prompt.md +0 -0
- package/templates/skills/knowledge/stitch-loop/resources/baton-schema.md +0 -0
- package/templates/skills/knowledge/stitch-loop/resources/site-template.md +0 -0
- package/templates/skills/stitch-loop/SKILL.md +3 -3
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/embedding_utils.cpython-314.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/init_collection.cpython-314.pyc +0 -0
- package/templates/skills/knowledge/SKILLS_CATALOG.md +0 -796
- package/templates/skills/knowledge/jira/scripts/__pycache__/jira_client.cpython-314.pyc +0 -0
- package/templates/skills/knowledge/notebooklm-mcp/SKILL.md +0 -71
- package/templates/skills/knowledge/notebooklm-mcp/assets/example_asset.txt +0 -24
- package/templates/skills/knowledge/notebooklm-mcp/references/api_reference.md +0 -34
- package/templates/skills/knowledge/notebooklm-mcp/scripts/example.py +0 -19
|
@@ -1,796 +0,0 @@
|
|
|
1
|
-
# Skills Catalog
|
|
2
|
-
|
|
3
|
-
> **Auto-generated Documentation** — Last updated: 2026-02-07 22:50
|
|
4
|
-
>
|
|
5
|
-
> This catalog is automatically maintained. Update it by running:
|
|
6
|
-
> ```bash
|
|
7
|
-
> python skill-creator/scripts/update_catalog.py --skills-dir skills/
|
|
8
|
-
> ```
|
|
9
|
-
|
|
10
|
-
This document provides comprehensive documentation on available skills, how to use them, and when each skill should be triggered.
|
|
11
|
-
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
## Table of Contents
|
|
15
|
-
|
|
16
|
-
- [What Are Skills?](#what-are-skills)
|
|
17
|
-
- [Available Skills](#available-skills)
|
|
18
|
-
- [Api Patterns](#api-patterns)
|
|
19
|
-
- [App Builder](#app-builder)
|
|
20
|
-
- [Architecture](#architecture)
|
|
21
|
-
- [Bash Linux](#bash-linux)
|
|
22
|
-
- [Behavioral Modes](#behavioral-modes)
|
|
23
|
-
- [Brainstorming](#brainstorming)
|
|
24
|
-
- [Clean Code](#clean-code)
|
|
25
|
-
- [Code Review Checklist](#code-review-checklist)
|
|
26
|
-
- [Database Design](#database-design)
|
|
27
|
-
- [Deployment Procedures](#deployment-procedures)
|
|
28
|
-
- [Design Md](#design-md)
|
|
29
|
-
- [Documentation](#documentation)
|
|
30
|
-
- [Documentation Templates](#documentation-templates)
|
|
31
|
-
- [Frontend Design](#frontend-design)
|
|
32
|
-
- [Game Development](#game-development)
|
|
33
|
-
- [Geo Fundamentals](#geo-fundamentals)
|
|
34
|
-
- [I18N Localization](#i18n-localization)
|
|
35
|
-
- [Intelligent Routing](#intelligent-routing)
|
|
36
|
-
- [Lint And Validate](#lint-and-validate)
|
|
37
|
-
- [Mcp Builder](#mcp-builder)
|
|
38
|
-
- [Mobile Design](#mobile-design)
|
|
39
|
-
- [Nextjs Best Practices](#nextjs-best-practices)
|
|
40
|
-
- [Nodejs Best Practices](#nodejs-best-practices)
|
|
41
|
-
- [Notebooklm Mcp](#notebooklm-mcp)
|
|
42
|
-
- [Parallel Agents](#parallel-agents)
|
|
43
|
-
- [Pdf Reader](#pdf-reader)
|
|
44
|
-
- [Performance Profiling](#performance-profiling)
|
|
45
|
-
- [Plan Writing](#plan-writing)
|
|
46
|
-
- [Powershell Windows](#powershell-windows)
|
|
47
|
-
- [Python Patterns](#python-patterns)
|
|
48
|
-
- [Qdrant Memory](#qdrant-memory)
|
|
49
|
-
- [React:Components](#react:components)
|
|
50
|
-
- [React Patterns](#react-patterns)
|
|
51
|
-
- [Red Team Tactics](#red-team-tactics)
|
|
52
|
-
- [Self Update](#self-update)
|
|
53
|
-
- [Seo Fundamentals](#seo-fundamentals)
|
|
54
|
-
- [Server Management](#server-management)
|
|
55
|
-
- [Stitch Loop](#stitch-loop)
|
|
56
|
-
- [Systematic Debugging](#systematic-debugging)
|
|
57
|
-
- [Tailwind Patterns](#tailwind-patterns)
|
|
58
|
-
- [Tdd Workflow](#tdd-workflow)
|
|
59
|
-
- [Testing Patterns](#testing-patterns)
|
|
60
|
-
- [Vulnerability Scanner](#vulnerability-scanner)
|
|
61
|
-
- [Webapp Testing](#webapp-testing)
|
|
62
|
-
- [Webcrawler](#webcrawler)
|
|
63
|
-
- [Using Skills](#using-skills)
|
|
64
|
-
- [Creating New Skills](#creating-new-skills)
|
|
65
|
-
- [Maintenance](#maintenance)
|
|
66
|
-
|
|
67
|
-
---
|
|
68
|
-
|
|
69
|
-
## What Are Skills?
|
|
70
|
-
|
|
71
|
-
**Skills** are modular, self-contained packages that extend the AI agent's capabilities with specialized knowledge, workflows, and tools.
|
|
72
|
-
|
|
73
|
-
### Skill Structure
|
|
74
|
-
|
|
75
|
-
```
|
|
76
|
-
skill-name/
|
|
77
|
-
├── SKILL.md # (required) Main instruction file
|
|
78
|
-
├── scripts/ # (optional) Executable scripts
|
|
79
|
-
├── references/ # (optional) Documentation
|
|
80
|
-
└── assets/ # (optional) Templates, images, etc.
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
---
|
|
84
|
-
|
|
85
|
-
## Available Skills
|
|
86
|
-
|
|
87
|
-
### Api Patterns
|
|
88
|
-
|
|
89
|
-
| Property | Value |
|
|
90
|
-
| -------- | ----- |
|
|
91
|
-
| **Name** | `api-patterns` |
|
|
92
|
-
| **Location** | `skills/api-patterns/` |
|
|
93
|
-
| **Type** | Standalone |
|
|
94
|
-
|
|
95
|
-
**Description:** API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.
|
|
96
|
-
|
|
97
|
-
**Scripts:**
|
|
98
|
-
|
|
99
|
-
| Script | Purpose |
|
|
100
|
-
| ------ | ------- |
|
|
101
|
-
| `scripts/api_validator.py` | *[See script for details]* |
|
|
102
|
-
|
|
103
|
-
---
|
|
104
|
-
|
|
105
|
-
### App Builder
|
|
106
|
-
|
|
107
|
-
| Property | Value |
|
|
108
|
-
| -------- | ----- |
|
|
109
|
-
| **Name** | `app-builder` |
|
|
110
|
-
| **Location** | `skills/app-builder/` |
|
|
111
|
-
| **Type** | Standalone |
|
|
112
|
-
|
|
113
|
-
**Description:** Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.
|
|
114
|
-
|
|
115
|
-
---
|
|
116
|
-
|
|
117
|
-
### Architecture
|
|
118
|
-
|
|
119
|
-
| Property | Value |
|
|
120
|
-
| -------- | ----- |
|
|
121
|
-
| **Name** | `architecture` |
|
|
122
|
-
| **Location** | `skills/architecture/` |
|
|
123
|
-
| **Type** | Standalone |
|
|
124
|
-
|
|
125
|
-
**Description:** Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.
|
|
126
|
-
|
|
127
|
-
---
|
|
128
|
-
|
|
129
|
-
### Bash Linux
|
|
130
|
-
|
|
131
|
-
| Property | Value |
|
|
132
|
-
| -------- | ----- |
|
|
133
|
-
| **Name** | `bash-linux` |
|
|
134
|
-
| **Location** | `skills/bash-linux/` |
|
|
135
|
-
| **Type** | Standalone |
|
|
136
|
-
|
|
137
|
-
**Description:** Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting. Use when working on macOS or Linux systems.
|
|
138
|
-
|
|
139
|
-
---
|
|
140
|
-
|
|
141
|
-
### Behavioral Modes
|
|
142
|
-
|
|
143
|
-
| Property | Value |
|
|
144
|
-
| -------- | ----- |
|
|
145
|
-
| **Name** | `behavioral-modes` |
|
|
146
|
-
| **Location** | `skills/behavioral-modes/` |
|
|
147
|
-
| **Type** | Standalone |
|
|
148
|
-
|
|
149
|
-
**Description:** AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate). Use to adapt behavior based on task type.
|
|
150
|
-
|
|
151
|
-
---
|
|
152
|
-
|
|
153
|
-
### Brainstorming
|
|
154
|
-
|
|
155
|
-
| Property | Value |
|
|
156
|
-
| -------- | ----- |
|
|
157
|
-
| **Name** | `brainstorming` |
|
|
158
|
-
| **Location** | `skills/brainstorming/` |
|
|
159
|
-
| **Type** | Standalone |
|
|
160
|
-
|
|
161
|
-
**Description:** Socratic questioning protocol + user communication. MANDATORY for complex requests, new features, or unclear requirements. Includes progress reporting and error handling.
|
|
162
|
-
|
|
163
|
-
---
|
|
164
|
-
|
|
165
|
-
### Clean Code
|
|
166
|
-
|
|
167
|
-
| Property | Value |
|
|
168
|
-
| -------- | ----- |
|
|
169
|
-
| **Name** | `clean-code` |
|
|
170
|
-
| **Location** | `skills/clean-code/` |
|
|
171
|
-
| **Type** | Standalone |
|
|
172
|
-
|
|
173
|
-
**Description:** Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments
|
|
174
|
-
|
|
175
|
-
---
|
|
176
|
-
|
|
177
|
-
### Code Review Checklist
|
|
178
|
-
|
|
179
|
-
| Property | Value |
|
|
180
|
-
| -------- | ----- |
|
|
181
|
-
| **Name** | `code-review-checklist` |
|
|
182
|
-
| **Location** | `skills/code-review-checklist/` |
|
|
183
|
-
| **Type** | Standalone |
|
|
184
|
-
|
|
185
|
-
**Description:** Code review guidelines covering code quality, security, and best practices.
|
|
186
|
-
|
|
187
|
-
---
|
|
188
|
-
|
|
189
|
-
### Database Design
|
|
190
|
-
|
|
191
|
-
| Property | Value |
|
|
192
|
-
| -------- | ----- |
|
|
193
|
-
| **Name** | `database-design` |
|
|
194
|
-
| **Location** | `skills/database-design/` |
|
|
195
|
-
| **Type** | Standalone |
|
|
196
|
-
|
|
197
|
-
**Description:** Database design principles and decision-making. Schema design, indexing strategy, ORM selection, serverless databases.
|
|
198
|
-
|
|
199
|
-
**Scripts:**
|
|
200
|
-
|
|
201
|
-
| Script | Purpose |
|
|
202
|
-
| ------ | ------- |
|
|
203
|
-
| `scripts/schema_validator.py` | *[See script for details]* |
|
|
204
|
-
|
|
205
|
-
---
|
|
206
|
-
|
|
207
|
-
### Deployment Procedures
|
|
208
|
-
|
|
209
|
-
| Property | Value |
|
|
210
|
-
| -------- | ----- |
|
|
211
|
-
| **Name** | `deployment-procedures` |
|
|
212
|
-
| **Location** | `skills/deployment-procedures/` |
|
|
213
|
-
| **Type** | Standalone |
|
|
214
|
-
|
|
215
|
-
**Description:** Production deployment principles and decision-making. Safe deployment workflows, rollback strategies, and verification. Teaches thinking, not scripts.
|
|
216
|
-
|
|
217
|
-
---
|
|
218
|
-
|
|
219
|
-
### Design Md
|
|
220
|
-
|
|
221
|
-
| Property | Value |
|
|
222
|
-
| -------- | ----- |
|
|
223
|
-
| **Name** | `design-md` |
|
|
224
|
-
| **Location** | `skills/design-md/` |
|
|
225
|
-
| **Type** | Standalone |
|
|
226
|
-
|
|
227
|
-
**Description:** Analyze Stitch projects and synthesize a semantic design system into DESIGN.md files
|
|
228
|
-
|
|
229
|
-
---
|
|
230
|
-
|
|
231
|
-
### Documentation
|
|
232
|
-
|
|
233
|
-
| Property | Value |
|
|
234
|
-
| -------- | ----- |
|
|
235
|
-
| **Name** | `documentation` |
|
|
236
|
-
| **Location** | `skills/documentation/` |
|
|
237
|
-
| **Type** | Standalone |
|
|
238
|
-
|
|
239
|
-
**Description:** "Automated documentation maintenance and generation skill. Triggers when: (1) Code is added, changed, updated, or deleted in any skill, (2) New scripts or references are created, (3) SKILL.md files are modified, (4) User requests documentation updates, (5) Skills catalog needs regeneration, (6) README or AGENTS.md need updates reflecting code changes. Use for generating technical documentation, updating docs after code changes, producing changelogs, ensuring documentation stays synchronized with the codebase, and maintaining the skills catalog."
|
|
240
|
-
|
|
241
|
-
**Scripts:**
|
|
242
|
-
|
|
243
|
-
| Script | Purpose |
|
|
244
|
-
| ------ | ------- |
|
|
245
|
-
| `scripts/analyze_code.py` | *[See script for details]* |
|
|
246
|
-
| `scripts/detect_changes.py` | *[See script for details]* |
|
|
247
|
-
| `scripts/generate_changelog.py` | *[See script for details]* |
|
|
248
|
-
| `scripts/sync_docs.py` | *[See script for details]* |
|
|
249
|
-
| `scripts/update_skill_docs.py` | *[See script for details]* |
|
|
250
|
-
|
|
251
|
-
**References:**
|
|
252
|
-
- `references/best_practices.md`
|
|
253
|
-
|
|
254
|
-
---
|
|
255
|
-
|
|
256
|
-
### Documentation Templates
|
|
257
|
-
|
|
258
|
-
| Property | Value |
|
|
259
|
-
| -------- | ----- |
|
|
260
|
-
| **Name** | `documentation-templates` |
|
|
261
|
-
| **Location** | `skills/documentation-templates/` |
|
|
262
|
-
| **Type** | Standalone |
|
|
263
|
-
|
|
264
|
-
**Description:** Documentation templates and structure guidelines. README, API docs, code comments, and AI-friendly documentation.
|
|
265
|
-
|
|
266
|
-
---
|
|
267
|
-
|
|
268
|
-
### Frontend Design
|
|
269
|
-
|
|
270
|
-
| Property | Value |
|
|
271
|
-
| -------- | ----- |
|
|
272
|
-
| **Name** | `frontend-design` |
|
|
273
|
-
| **Location** | `skills/frontend-design/` |
|
|
274
|
-
| **Type** | Standalone |
|
|
275
|
-
|
|
276
|
-
**Description:** Design thinking and decision-making for web UI. Use when designing components, layouts, color schemes, typography, or creating aesthetic interfaces. Teaches principles, not fixed values.
|
|
277
|
-
|
|
278
|
-
**Scripts:**
|
|
279
|
-
|
|
280
|
-
| Script | Purpose |
|
|
281
|
-
| ------ | ------- |
|
|
282
|
-
| `scripts/accessibility_checker.py` | *[See script for details]* |
|
|
283
|
-
| `scripts/ux_audit.py` | *[See script for details]* |
|
|
284
|
-
|
|
285
|
-
---
|
|
286
|
-
|
|
287
|
-
### Game Development
|
|
288
|
-
|
|
289
|
-
| Property | Value |
|
|
290
|
-
| -------- | ----- |
|
|
291
|
-
| **Name** | `game-development` |
|
|
292
|
-
| **Location** | `skills/game-development/` |
|
|
293
|
-
| **Type** | Standalone |
|
|
294
|
-
|
|
295
|
-
**Description:** Game development orchestrator. Routes to platform-specific skills based on project needs.
|
|
296
|
-
|
|
297
|
-
---
|
|
298
|
-
|
|
299
|
-
### Geo Fundamentals
|
|
300
|
-
|
|
301
|
-
| Property | Value |
|
|
302
|
-
| -------- | ----- |
|
|
303
|
-
| **Name** | `geo-fundamentals` |
|
|
304
|
-
| **Location** | `skills/geo-fundamentals/` |
|
|
305
|
-
| **Type** | Standalone |
|
|
306
|
-
|
|
307
|
-
**Description:** Generative Engine Optimization for AI search engines (ChatGPT, Claude, Perplexity).
|
|
308
|
-
|
|
309
|
-
**Scripts:**
|
|
310
|
-
|
|
311
|
-
| Script | Purpose |
|
|
312
|
-
| ------ | ------- |
|
|
313
|
-
| `scripts/geo_checker.py` | *[See script for details]* |
|
|
314
|
-
|
|
315
|
-
---
|
|
316
|
-
|
|
317
|
-
### I18N Localization
|
|
318
|
-
|
|
319
|
-
| Property | Value |
|
|
320
|
-
| -------- | ----- |
|
|
321
|
-
| **Name** | `i18n-localization` |
|
|
322
|
-
| **Location** | `skills/i18n-localization/` |
|
|
323
|
-
| **Type** | Standalone |
|
|
324
|
-
|
|
325
|
-
**Description:** Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.
|
|
326
|
-
|
|
327
|
-
**Scripts:**
|
|
328
|
-
|
|
329
|
-
| Script | Purpose |
|
|
330
|
-
| ------ | ------- |
|
|
331
|
-
| `scripts/i18n_checker.py` | *[See script for details]* |
|
|
332
|
-
|
|
333
|
-
---
|
|
334
|
-
|
|
335
|
-
### Intelligent Routing
|
|
336
|
-
|
|
337
|
-
| Property | Value |
|
|
338
|
-
| -------- | ----- |
|
|
339
|
-
| **Name** | `intelligent-routing` |
|
|
340
|
-
| **Location** | `skills/intelligent-routing/` |
|
|
341
|
-
| **Type** | Standalone |
|
|
342
|
-
|
|
343
|
-
**Description:** Automatic agent selection and intelligent task routing. Analyzes user requests and automatically selects the best specialist agent(s) without requiring explicit user mentions.
|
|
344
|
-
|
|
345
|
-
---
|
|
346
|
-
|
|
347
|
-
### Lint And Validate
|
|
348
|
-
|
|
349
|
-
| Property | Value |
|
|
350
|
-
| -------- | ----- |
|
|
351
|
-
| **Name** | `lint-and-validate` |
|
|
352
|
-
| **Location** | `skills/lint-and-validate/` |
|
|
353
|
-
| **Type** | Standalone |
|
|
354
|
-
|
|
355
|
-
**Description:** Automatic quality control, linting, and static analysis procedures. Use after every code modification to ensure syntax correctness and project standards. Triggers onKeywords: lint, format, check, validate, types, static analysis.
|
|
356
|
-
|
|
357
|
-
**Scripts:**
|
|
358
|
-
|
|
359
|
-
| Script | Purpose |
|
|
360
|
-
| ------ | ------- |
|
|
361
|
-
| `scripts/lint_runner.py` | *[See script for details]* |
|
|
362
|
-
| `scripts/type_coverage.py` | *[See script for details]* |
|
|
363
|
-
|
|
364
|
-
---
|
|
365
|
-
|
|
366
|
-
### Mcp Builder
|
|
367
|
-
|
|
368
|
-
| Property | Value |
|
|
369
|
-
| -------- | ----- |
|
|
370
|
-
| **Name** | `mcp-builder` |
|
|
371
|
-
| **Location** | `skills/mcp-builder/` |
|
|
372
|
-
| **Type** | Standalone |
|
|
373
|
-
|
|
374
|
-
**Description:** MCP (Model Context Protocol) server building principles. Tool design, resource patterns, best practices.
|
|
375
|
-
|
|
376
|
-
---
|
|
377
|
-
|
|
378
|
-
### Mobile Design
|
|
379
|
-
|
|
380
|
-
| Property | Value |
|
|
381
|
-
| -------- | ----- |
|
|
382
|
-
| **Name** | `mobile-design` |
|
|
383
|
-
| **Location** | `skills/mobile-design/` |
|
|
384
|
-
| **Type** | Standalone |
|
|
385
|
-
|
|
386
|
-
**Description:** Mobile-first design thinking and decision-making for iOS and Android apps. Touch interaction, performance patterns, platform conventions. Teaches principles, not fixed values. Use when building React Native, Flutter, or native mobile apps.
|
|
387
|
-
|
|
388
|
-
**Scripts:**
|
|
389
|
-
|
|
390
|
-
| Script | Purpose |
|
|
391
|
-
| ------ | ------- |
|
|
392
|
-
| `scripts/mobile_audit.py` | *[See script for details]* |
|
|
393
|
-
|
|
394
|
-
---
|
|
395
|
-
|
|
396
|
-
### Nextjs Best Practices
|
|
397
|
-
|
|
398
|
-
| Property | Value |
|
|
399
|
-
| -------- | ----- |
|
|
400
|
-
| **Name** | `nextjs-best-practices` |
|
|
401
|
-
| **Location** | `skills/nextjs-best-practices/` |
|
|
402
|
-
| **Type** | Standalone |
|
|
403
|
-
|
|
404
|
-
**Description:** Next.js App Router principles. Server Components, data fetching, routing patterns.
|
|
405
|
-
|
|
406
|
-
---
|
|
407
|
-
|
|
408
|
-
### Nodejs Best Practices
|
|
409
|
-
|
|
410
|
-
| Property | Value |
|
|
411
|
-
| -------- | ----- |
|
|
412
|
-
| **Name** | `nodejs-best-practices` |
|
|
413
|
-
| **Location** | `skills/nodejs-best-practices/` |
|
|
414
|
-
| **Type** | Standalone |
|
|
415
|
-
|
|
416
|
-
**Description:** Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.
|
|
417
|
-
|
|
418
|
-
---
|
|
419
|
-
|
|
420
|
-
### Notebooklm Mcp
|
|
421
|
-
|
|
422
|
-
| Property | Value |
|
|
423
|
-
| -------- | ----- |
|
|
424
|
-
| **Name** | `notebooklm-mcp` |
|
|
425
|
-
| **Location** | `skills/notebooklm-mcp/` |
|
|
426
|
-
| **Type** | Standalone |
|
|
427
|
-
|
|
428
|
-
**Description:** "Connects to Google NotebookLM via Model Context Protocol (MCP) to access notebooks, sources, and query content. Triggers when the user asks to summarize, query, or interact with NotebookLM content."
|
|
429
|
-
|
|
430
|
-
**References:**
|
|
431
|
-
- `references/api_reference.md`
|
|
432
|
-
|
|
433
|
-
---
|
|
434
|
-
|
|
435
|
-
### Parallel Agents
|
|
436
|
-
|
|
437
|
-
| Property | Value |
|
|
438
|
-
| -------- | ----- |
|
|
439
|
-
| **Name** | `parallel-agents` |
|
|
440
|
-
| **Location** | `skills/parallel-agents/` |
|
|
441
|
-
| **Type** | Standalone |
|
|
442
|
-
|
|
443
|
-
**Description:** Multi-agent orchestration patterns. Use when multiple independent tasks can run with different domain expertise or when comprehensive analysis requires multiple perspectives.
|
|
444
|
-
|
|
445
|
-
---
|
|
446
|
-
|
|
447
|
-
### Pdf Reader
|
|
448
|
-
|
|
449
|
-
| Property | Value |
|
|
450
|
-
| -------- | ----- |
|
|
451
|
-
| **Name** | `pdf-reader` |
|
|
452
|
-
| **Location** | `skills/pdf-reader/` |
|
|
453
|
-
| **Type** | Standalone |
|
|
454
|
-
|
|
455
|
-
**Description:** Extract text from PDF files for manipulation, search, and reference. Use when needing to read PDF content, extract text from documents, search within PDFs, or convert PDF to text for further processing. Supports multiple extraction methods (pdfplumber, PyMuPDF, pdfminer) with automatic fallback.
|
|
456
|
-
|
|
457
|
-
**Scripts:**
|
|
458
|
-
|
|
459
|
-
| Script | Purpose |
|
|
460
|
-
| ------ | ------- |
|
|
461
|
-
| `scripts/extract_text.py` | *[See script for details]* |
|
|
462
|
-
|
|
463
|
-
**References:**
|
|
464
|
-
- `references/pdf_libraries.md`
|
|
465
|
-
|
|
466
|
-
---
|
|
467
|
-
|
|
468
|
-
### Performance Profiling
|
|
469
|
-
|
|
470
|
-
| Property | Value |
|
|
471
|
-
| -------- | ----- |
|
|
472
|
-
| **Name** | `performance-profiling` |
|
|
473
|
-
| **Location** | `skills/performance-profiling/` |
|
|
474
|
-
| **Type** | Standalone |
|
|
475
|
-
|
|
476
|
-
**Description:** Performance profiling principles. Measurement, analysis, and optimization techniques.
|
|
477
|
-
|
|
478
|
-
**Scripts:**
|
|
479
|
-
|
|
480
|
-
| Script | Purpose |
|
|
481
|
-
| ------ | ------- |
|
|
482
|
-
| `scripts/lighthouse_audit.py` | *[See script for details]* |
|
|
483
|
-
|
|
484
|
-
---
|
|
485
|
-
|
|
486
|
-
### Plan Writing
|
|
487
|
-
|
|
488
|
-
| Property | Value |
|
|
489
|
-
| -------- | ----- |
|
|
490
|
-
| **Name** | `plan-writing` |
|
|
491
|
-
| **Location** | `skills/plan-writing/` |
|
|
492
|
-
| **Type** | Standalone |
|
|
493
|
-
|
|
494
|
-
**Description:** Structured task planning with clear breakdowns, dependencies, and verification criteria. Use when implementing features, refactoring, or any multi-step work.
|
|
495
|
-
|
|
496
|
-
---
|
|
497
|
-
|
|
498
|
-
### Powershell Windows
|
|
499
|
-
|
|
500
|
-
| Property | Value |
|
|
501
|
-
| -------- | ----- |
|
|
502
|
-
| **Name** | `powershell-windows` |
|
|
503
|
-
| **Location** | `skills/powershell-windows/` |
|
|
504
|
-
| **Type** | Standalone |
|
|
505
|
-
|
|
506
|
-
**Description:** PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.
|
|
507
|
-
|
|
508
|
-
---
|
|
509
|
-
|
|
510
|
-
### Python Patterns
|
|
511
|
-
|
|
512
|
-
| Property | Value |
|
|
513
|
-
| -------- | ----- |
|
|
514
|
-
| **Name** | `python-patterns` |
|
|
515
|
-
| **Location** | `skills/python-patterns/` |
|
|
516
|
-
| **Type** | Standalone |
|
|
517
|
-
|
|
518
|
-
**Description:** Python development principles and decision-making. Framework selection, async patterns, type hints, project structure. Teaches thinking, not copying.
|
|
519
|
-
|
|
520
|
-
---
|
|
521
|
-
|
|
522
|
-
### Qdrant Memory
|
|
523
|
-
|
|
524
|
-
| Property | Value |
|
|
525
|
-
| -------- | ----- |
|
|
526
|
-
| **Name** | `qdrant-memory` |
|
|
527
|
-
| **Location** | `skills/qdrant-memory/` |
|
|
528
|
-
| **Type** | Standalone |
|
|
529
|
-
|
|
530
|
-
**Description:** "Intelligent token optimization through Qdrant-powered semantic caching and long-term memory. Use for (1) Semantic Cache - avoid LLM calls entirely for semantically similar queries with 100% token savings, (2) Long-Term Memory - retrieve only relevant context chunks instead of full conversation history with 80-95% context reduction, (3) Hybrid Search - combine vector similarity with keyword filtering for technical queries, (4) Memory Management - store and retrieve conversation memories, decisions, and code patterns with metadata filtering. Triggers when needing to cache responses, remember past interactions, optimize context windows, or implement RAG patterns."
|
|
531
|
-
|
|
532
|
-
**Scripts:**
|
|
533
|
-
|
|
534
|
-
| Script | Purpose |
|
|
535
|
-
| ------ | ------- |
|
|
536
|
-
| `scripts/benchmark_token_savings.py` | *[See script for details]* |
|
|
537
|
-
| `scripts/embedding_utils.py` | *[See script for details]* |
|
|
538
|
-
| `scripts/hybrid_search.py` | *[See script for details]* |
|
|
539
|
-
| `scripts/init_collection.py` | *[See script for details]* |
|
|
540
|
-
| `scripts/memory_retrieval.py` | *[See script for details]* |
|
|
541
|
-
| `scripts/semantic_cache.py` | *[See script for details]* |
|
|
542
|
-
| `scripts/test_skill.py` | *[See script for details]* |
|
|
543
|
-
|
|
544
|
-
**References:**
|
|
545
|
-
- `references/advanced_patterns.md`
|
|
546
|
-
- `references/collection_schemas.md`
|
|
547
|
-
- `references/complete_guide.md`
|
|
548
|
-
- `references/embedding_models.md`
|
|
549
|
-
|
|
550
|
-
---
|
|
551
|
-
|
|
552
|
-
### React Patterns
|
|
553
|
-
|
|
554
|
-
| Property | Value |
|
|
555
|
-
| -------- | ----- |
|
|
556
|
-
| **Name** | `react-patterns` |
|
|
557
|
-
| **Location** | `skills/react-patterns/` |
|
|
558
|
-
| **Type** | Standalone |
|
|
559
|
-
|
|
560
|
-
**Description:** Modern React patterns and principles. Hooks, composition, performance, TypeScript best practices.
|
|
561
|
-
|
|
562
|
-
---
|
|
563
|
-
|
|
564
|
-
### React:Components
|
|
565
|
-
|
|
566
|
-
| Property | Value |
|
|
567
|
-
| -------- | ----- |
|
|
568
|
-
| **Name** | `react:components` |
|
|
569
|
-
| **Location** | `skills/react-components/` |
|
|
570
|
-
| **Type** | Standalone |
|
|
571
|
-
|
|
572
|
-
**Description:** Converts Stitch designs into modular Vite and React components using system-level networking and AST-based validation.
|
|
573
|
-
|
|
574
|
-
---
|
|
575
|
-
|
|
576
|
-
### Red Team Tactics
|
|
577
|
-
|
|
578
|
-
| Property | Value |
|
|
579
|
-
| -------- | ----- |
|
|
580
|
-
| **Name** | `red-team-tactics` |
|
|
581
|
-
| **Location** | `skills/red-team-tactics/` |
|
|
582
|
-
| **Type** | Standalone |
|
|
583
|
-
|
|
584
|
-
**Description:** Red team tactics principles based on MITRE ATT&CK. Attack phases, detection evasion, reporting.
|
|
585
|
-
|
|
586
|
-
---
|
|
587
|
-
|
|
588
|
-
### Self Update
|
|
589
|
-
|
|
590
|
-
| Property | Value |
|
|
591
|
-
| -------- | ----- |
|
|
592
|
-
| **Name** | `self-update` |
|
|
593
|
-
| **Location** | `skills/self-update/` |
|
|
594
|
-
| **Type** | Standalone |
|
|
595
|
-
|
|
596
|
-
**Description:** Update the AGI Agent Kit to the latest version from NPM
|
|
597
|
-
|
|
598
|
-
**Scripts:**
|
|
599
|
-
|
|
600
|
-
| Script | Purpose |
|
|
601
|
-
| ------ | ------- |
|
|
602
|
-
| `scripts/update_kit.py` | *[See script for details]* |
|
|
603
|
-
|
|
604
|
-
---
|
|
605
|
-
|
|
606
|
-
### Seo Fundamentals
|
|
607
|
-
|
|
608
|
-
| Property | Value |
|
|
609
|
-
| -------- | ----- |
|
|
610
|
-
| **Name** | `seo-fundamentals` |
|
|
611
|
-
| **Location** | `skills/seo-fundamentals/` |
|
|
612
|
-
| **Type** | Standalone |
|
|
613
|
-
|
|
614
|
-
**Description:** SEO fundamentals, E-E-A-T, Core Web Vitals, and Google algorithm principles.
|
|
615
|
-
|
|
616
|
-
**Scripts:**
|
|
617
|
-
|
|
618
|
-
| Script | Purpose |
|
|
619
|
-
| ------ | ------- |
|
|
620
|
-
| `scripts/seo_checker.py` | *[See script for details]* |
|
|
621
|
-
|
|
622
|
-
---
|
|
623
|
-
|
|
624
|
-
### Server Management
|
|
625
|
-
|
|
626
|
-
| Property | Value |
|
|
627
|
-
| -------- | ----- |
|
|
628
|
-
| **Name** | `server-management` |
|
|
629
|
-
| **Location** | `skills/server-management/` |
|
|
630
|
-
| **Type** | Standalone |
|
|
631
|
-
|
|
632
|
-
**Description:** Server management principles and decision-making. Process management, monitoring strategy, and scaling decisions. Teaches thinking, not commands.
|
|
633
|
-
|
|
634
|
-
---
|
|
635
|
-
|
|
636
|
-
### Stitch Loop
|
|
637
|
-
|
|
638
|
-
| Property | Value |
|
|
639
|
-
| -------- | ----- |
|
|
640
|
-
| **Name** | `stitch-loop` |
|
|
641
|
-
| **Location** | `skills/stitch-loop/` |
|
|
642
|
-
| **Type** | Standalone |
|
|
643
|
-
|
|
644
|
-
**Description:** Teaches agents to iteratively build websites using Stitch with an autonomous baton-passing loop pattern
|
|
645
|
-
|
|
646
|
-
---
|
|
647
|
-
|
|
648
|
-
### Systematic Debugging
|
|
649
|
-
|
|
650
|
-
| Property | Value |
|
|
651
|
-
| -------- | ----- |
|
|
652
|
-
| **Name** | `systematic-debugging` |
|
|
653
|
-
| **Location** | `skills/systematic-debugging/` |
|
|
654
|
-
| **Type** | Standalone |
|
|
655
|
-
|
|
656
|
-
**Description:** 4-phase systematic debugging methodology with root cause analysis and evidence-based verification. Use when debugging complex issues.
|
|
657
|
-
|
|
658
|
-
---
|
|
659
|
-
|
|
660
|
-
### Tailwind Patterns
|
|
661
|
-
|
|
662
|
-
| Property | Value |
|
|
663
|
-
| -------- | ----- |
|
|
664
|
-
| **Name** | `tailwind-patterns` |
|
|
665
|
-
| **Location** | `skills/tailwind-patterns/` |
|
|
666
|
-
| **Type** | Standalone |
|
|
667
|
-
|
|
668
|
-
**Description:** Tailwind CSS v4 principles. CSS-first configuration, container queries, modern patterns, design token architecture.
|
|
669
|
-
|
|
670
|
-
---
|
|
671
|
-
|
|
672
|
-
### Tdd Workflow
|
|
673
|
-
|
|
674
|
-
| Property | Value |
|
|
675
|
-
| -------- | ----- |
|
|
676
|
-
| **Name** | `tdd-workflow` |
|
|
677
|
-
| **Location** | `skills/tdd-workflow/` |
|
|
678
|
-
| **Type** | Standalone |
|
|
679
|
-
|
|
680
|
-
**Description:** Test-Driven Development workflow principles. RED-GREEN-REFACTOR cycle.
|
|
681
|
-
|
|
682
|
-
---
|
|
683
|
-
|
|
684
|
-
### Testing Patterns
|
|
685
|
-
|
|
686
|
-
| Property | Value |
|
|
687
|
-
| -------- | ----- |
|
|
688
|
-
| **Name** | `testing-patterns` |
|
|
689
|
-
| **Location** | `skills/testing-patterns/` |
|
|
690
|
-
| **Type** | Standalone |
|
|
691
|
-
|
|
692
|
-
**Description:** Testing patterns and principles. Unit, integration, mocking strategies.
|
|
693
|
-
|
|
694
|
-
**Scripts:**
|
|
695
|
-
|
|
696
|
-
| Script | Purpose |
|
|
697
|
-
| ------ | ------- |
|
|
698
|
-
| `scripts/test_runner.py` | *[See script for details]* |
|
|
699
|
-
|
|
700
|
-
---
|
|
701
|
-
|
|
702
|
-
### Vulnerability Scanner
|
|
703
|
-
|
|
704
|
-
| Property | Value |
|
|
705
|
-
| -------- | ----- |
|
|
706
|
-
| **Name** | `vulnerability-scanner` |
|
|
707
|
-
| **Location** | `skills/vulnerability-scanner/` |
|
|
708
|
-
| **Type** | Standalone |
|
|
709
|
-
|
|
710
|
-
**Description:** Advanced vulnerability analysis principles. OWASP 2025, Supply Chain Security, attack surface mapping, risk prioritization.
|
|
711
|
-
|
|
712
|
-
**Scripts:**
|
|
713
|
-
|
|
714
|
-
| Script | Purpose |
|
|
715
|
-
| ------ | ------- |
|
|
716
|
-
| `scripts/security_scan.py` | *[See script for details]* |
|
|
717
|
-
|
|
718
|
-
---
|
|
719
|
-
|
|
720
|
-
### Webapp Testing
|
|
721
|
-
|
|
722
|
-
| Property | Value |
|
|
723
|
-
| -------- | ----- |
|
|
724
|
-
| **Name** | `webapp-testing` |
|
|
725
|
-
| **Location** | `skills/webapp-testing/` |
|
|
726
|
-
| **Type** | Standalone |
|
|
727
|
-
|
|
728
|
-
**Description:** Web application testing principles. E2E, Playwright, deep audit strategies.
|
|
729
|
-
|
|
730
|
-
**Scripts:**
|
|
731
|
-
|
|
732
|
-
| Script | Purpose |
|
|
733
|
-
| ------ | ------- |
|
|
734
|
-
| `scripts/playwright_runner.py` | *[See script for details]* |
|
|
735
|
-
|
|
736
|
-
---
|
|
737
|
-
|
|
738
|
-
### Webcrawler
|
|
739
|
-
|
|
740
|
-
| Property | Value |
|
|
741
|
-
| -------- | ----- |
|
|
742
|
-
| **Name** | `webcrawler` |
|
|
743
|
-
| **Location** | `skills/webcrawler/` |
|
|
744
|
-
| **Type** | Standalone |
|
|
745
|
-
|
|
746
|
-
**Description:** "Documentation harvesting agent for crawling and extracting content from documentation websites. Use for crawling documentation sites and extracting all pages about a subject, building offline knowledge bases from online docs, harvesting API references, tutorials, or guides from documentation portals, creating structured markdown exports from multi-page documentation, and downloading and organizing technical docs for embedding or RAG pipelines. Supports recursive crawling with depth control, content filtering, and structured output."
|
|
747
|
-
|
|
748
|
-
**Scripts:**
|
|
749
|
-
|
|
750
|
-
| Script | Purpose |
|
|
751
|
-
| ------ | ------- |
|
|
752
|
-
| `scripts/crawl_docs.py` | *[See script for details]* |
|
|
753
|
-
| `scripts/extract_page.py` | *[See script for details]* |
|
|
754
|
-
| `scripts/filter_docs.py` | *[See script for details]* |
|
|
755
|
-
|
|
756
|
-
**References:**
|
|
757
|
-
- `references/advanced_crawling.md`
|
|
758
|
-
|
|
759
|
-
---
|
|
760
|
-
## Using Skills
|
|
761
|
-
|
|
762
|
-
Skills are automatically triggered based on the user's request matching the skill description. You can also explicitly invoke a skill:
|
|
763
|
-
|
|
764
|
-
```
|
|
765
|
-
"Use the <skill-name> skill to <task>"
|
|
766
|
-
```
|
|
767
|
-
|
|
768
|
-
---
|
|
769
|
-
|
|
770
|
-
## Creating New Skills
|
|
771
|
-
|
|
772
|
-
```bash
|
|
773
|
-
# Initialize a new skill
|
|
774
|
-
python skill-creator/scripts/init_skill.py my-new-skill --path skills/
|
|
775
|
-
|
|
776
|
-
# Package the skill
|
|
777
|
-
python skill-creator/scripts/package_skill.py skills/my-new-skill
|
|
778
|
-
```
|
|
779
|
-
|
|
780
|
-
For detailed guidance, see: `skill-creator/SKILL_skillcreator.md`
|
|
781
|
-
|
|
782
|
-
---
|
|
783
|
-
|
|
784
|
-
## Maintenance
|
|
785
|
-
|
|
786
|
-
### Updating This Catalog
|
|
787
|
-
|
|
788
|
-
**IMPORTANT:** This catalog must be updated whenever skills are created, modified, or deleted.
|
|
789
|
-
|
|
790
|
-
```bash
|
|
791
|
-
python skill-creator/scripts/update_catalog.py --skills-dir skills/
|
|
792
|
-
```
|
|
793
|
-
|
|
794
|
-
---
|
|
795
|
-
|
|
796
|
-
*This catalog is part of the [3-Layer Architecture](../AGENTS.md) for reliable AI agent operations.*
|