@techwavedev/agi-agent-kit 1.1.5 → 1.2.1
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.
Potentially problematic release.
This version of @techwavedev/agi-agent-kit might be problematic. Click here for more details.
- package/CHANGELOG.md +140 -0
- package/README.md +190 -12
- package/bin/init.js +30 -2
- package/package.json +6 -3
- package/templates/base/AGENTS.md +54 -23
- package/templates/base/README.md +325 -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/skill-creator/LICENSE.txt +0 -0
- package/templates/base/skill-creator/references/output-patterns.md +0 -0
- package/templates/base/skill-creator/references/workflows.md +0 -0
- package/templates/base/skill-creator/scripts/init_skill.py +0 -0
- package/templates/base/skill-creator/scripts/package_skill.py +0 -0
- package/templates/base/skill-creator/scripts/quick_validate.py +0 -0
- package/templates/skills/core/documentation/SKILL.md +0 -0
- package/templates/skills/core/documentation/references/best_practices.md +0 -0
- package/templates/skills/core/documentation/scripts/analyze_code.py +0 -0
- package/templates/skills/core/documentation/scripts/detect_changes.py +0 -0
- package/templates/skills/core/documentation/scripts/generate_changelog.py +0 -0
- package/templates/skills/core/documentation/scripts/sync_docs.py +0 -0
- package/templates/skills/core/documentation/scripts/update_skill_docs.py +0 -0
- package/templates/skills/core/pdf-reader/SKILL.md +0 -0
- package/templates/skills/core/pdf-reader/references/pdf_libraries.md +0 -0
- package/templates/skills/core/pdf-reader/scripts/extract_text.py +0 -0
- package/templates/skills/core/qdrant-memory/SKILL.md +0 -0
- package/templates/skills/core/qdrant-memory/references/advanced_patterns.md +0 -0
- package/templates/skills/core/qdrant-memory/references/collection_schemas.md +0 -0
- package/templates/skills/core/qdrant-memory/references/complete_guide.md +0 -0
- package/templates/skills/core/qdrant-memory/references/embedding_models.md +0 -0
- 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/core/qdrant-memory/scripts/benchmark_token_savings.py +0 -0
- package/templates/skills/core/qdrant-memory/scripts/embedding_utils.py +0 -0
- package/templates/skills/core/qdrant-memory/scripts/hybrid_search.py +0 -0
- package/templates/skills/core/qdrant-memory/scripts/init_collection.py +0 -0
- package/templates/skills/core/qdrant-memory/scripts/memory_retrieval.py +0 -0
- package/templates/skills/core/qdrant-memory/scripts/semantic_cache.py +0 -0
- package/templates/skills/core/qdrant-memory/scripts/test_skill.py +0 -0
- package/templates/skills/core/webcrawler/references/advanced_crawling.md +0 -0
- package/templates/skills/core/webcrawler/scripts/crawl_docs.py +0 -0
- package/templates/skills/core/webcrawler/scripts/extract_page.py +0 -0
- package/templates/skills/core/webcrawler/scripts/filter_docs.py +0 -0
- package/templates/skills/ec/README.md +31 -0
- package/templates/skills/ec/aws/SKILL.md +1020 -0
- package/templates/skills/ec/aws/defaults.yaml +13 -0
- package/templates/skills/ec/aws/references/common_patterns.md +80 -0
- package/templates/skills/ec/aws/references/mcp_servers.md +98 -0
- package/templates/skills/ec/aws-terraform/SKILL.md +349 -0
- package/templates/skills/ec/aws-terraform/references/best_practices.md +394 -0
- package/templates/skills/ec/aws-terraform/references/checkov_reference.md +337 -0
- package/templates/skills/ec/aws-terraform/scripts/configure_mcp.py +150 -0
- package/templates/skills/ec/confluent-kafka/SKILL.md +655 -0
- package/templates/skills/ec/confluent-kafka/references/ansible_playbooks.md +792 -0
- package/templates/skills/ec/confluent-kafka/references/ec_deployment.md +579 -0
- package/templates/skills/ec/confluent-kafka/references/kraft_migration.md +490 -0
- package/templates/skills/ec/confluent-kafka/references/troubleshooting.md +778 -0
- package/templates/skills/ec/confluent-kafka/references/upgrade_7x_to_8x.md +488 -0
- package/templates/skills/ec/confluent-kafka/scripts/kafka_health_check.py +435 -0
- package/templates/skills/ec/confluent-kafka/scripts/upgrade_preflight.py +568 -0
- package/templates/skills/ec/confluent-kafka/scripts/validate_config.py +455 -0
- package/templates/skills/ec/consul/SKILL.md +427 -0
- package/templates/skills/ec/consul/references/acl_setup.md +168 -0
- package/templates/skills/ec/consul/references/ha_config.md +196 -0
- package/templates/skills/ec/consul/references/troubleshooting.md +267 -0
- package/templates/skills/ec/consul/references/upgrades.md +213 -0
- package/templates/skills/ec/consul/scripts/consul_health_report.py +530 -0
- package/templates/skills/ec/consul/scripts/consul_status.py +264 -0
- package/templates/skills/ec/consul/scripts/generate_values.py +170 -0
- package/templates/skills/ec/documentation/SKILL.md +351 -0
- package/templates/skills/ec/documentation/references/best_practices.md +201 -0
- package/templates/skills/ec/documentation/scripts/analyze_code.py +307 -0
- package/templates/skills/ec/documentation/scripts/detect_changes.py +460 -0
- package/templates/skills/ec/documentation/scripts/generate_changelog.py +312 -0
- package/templates/skills/ec/documentation/scripts/sync_docs.py +272 -0
- package/templates/skills/ec/documentation/scripts/update_skill_docs.py +366 -0
- package/templates/skills/ec/gitlab/SKILL.md +529 -0
- package/templates/skills/ec/gitlab/references/agent_installation.md +416 -0
- package/templates/skills/ec/gitlab/references/api_reference.md +508 -0
- package/templates/skills/ec/gitlab/references/gitops_flux.md +465 -0
- package/templates/skills/ec/gitlab/references/troubleshooting.md +518 -0
- package/templates/skills/ec/gitlab/scripts/generate_agent_values.py +329 -0
- package/templates/skills/ec/gitlab/scripts/gitlab_agent_status.py +414 -0
- package/templates/skills/ec/jira/SKILL.md +484 -0
- package/templates/skills/ec/jira/references/jql_reference.md +148 -0
- package/templates/skills/ec/jira/scripts/add_comment.py +91 -0
- package/templates/skills/ec/jira/scripts/bulk_log_work.py +124 -0
- package/templates/skills/ec/jira/scripts/create_ticket.py +162 -0
- package/templates/skills/ec/jira/scripts/get_ticket.py +191 -0
- package/templates/skills/ec/jira/scripts/jira_client.py +383 -0
- package/templates/skills/ec/jira/scripts/log_work.py +154 -0
- package/templates/skills/ec/jira/scripts/search_tickets.py +104 -0
- package/templates/skills/ec/jira/scripts/update_comment.py +67 -0
- package/templates/skills/ec/jira/scripts/update_ticket.py +161 -0
- package/templates/skills/ec/karpenter/SKILL.md +301 -0
- package/templates/skills/ec/karpenter/references/ec2nodeclasses.md +421 -0
- package/templates/skills/ec/karpenter/references/migration.md +396 -0
- package/templates/skills/ec/karpenter/references/nodepools.md +400 -0
- package/templates/skills/ec/karpenter/references/troubleshooting.md +359 -0
- package/templates/skills/ec/karpenter/scripts/generate_ec2nodeclass.py +187 -0
- package/templates/skills/ec/karpenter/scripts/generate_nodepool.py +245 -0
- package/templates/skills/ec/karpenter/scripts/karpenter_status.py +359 -0
- package/templates/skills/ec/opensearch/SKILL.md +720 -0
- package/templates/skills/ec/opensearch/references/ml_neural_search.md +576 -0
- package/templates/skills/ec/opensearch/references/operator.md +532 -0
- package/templates/skills/ec/opensearch/references/query_dsl.md +532 -0
- package/templates/skills/ec/opensearch/scripts/configure_mcp.py +148 -0
- package/templates/skills/ec/victoriametrics/SKILL.md +598 -0
- package/templates/skills/ec/victoriametrics/references/kubernetes.md +531 -0
- package/templates/skills/ec/victoriametrics/references/prometheus_migration.md +333 -0
- package/templates/skills/ec/victoriametrics/references/troubleshooting.md +442 -0
- package/templates/skills/knowledge/SKILLS_CATALOG.md +1066 -0
- package/templates/skills/knowledge/api-patterns/SKILL.md +0 -0
- package/templates/skills/knowledge/api-patterns/api-style.md +0 -0
- package/templates/skills/knowledge/api-patterns/auth.md +0 -0
- package/templates/skills/knowledge/api-patterns/documentation.md +0 -0
- package/templates/skills/knowledge/api-patterns/graphql.md +0 -0
- package/templates/skills/knowledge/api-patterns/rate-limiting.md +0 -0
- package/templates/skills/knowledge/api-patterns/response.md +0 -0
- package/templates/skills/knowledge/api-patterns/rest.md +0 -0
- package/templates/skills/knowledge/api-patterns/scripts/api_validator.py +0 -0
- package/templates/skills/knowledge/api-patterns/security-testing.md +0 -0
- package/templates/skills/knowledge/api-patterns/trpc.md +0 -0
- package/templates/skills/knowledge/api-patterns/versioning.md +0 -0
- package/templates/skills/knowledge/app-builder/SKILL.md +0 -0
- package/templates/skills/knowledge/app-builder/agent-coordination.md +0 -0
- package/templates/skills/knowledge/app-builder/feature-building.md +0 -0
- package/templates/skills/knowledge/app-builder/project-detection.md +0 -0
- package/templates/skills/knowledge/app-builder/scaffolding.md +0 -0
- package/templates/skills/knowledge/app-builder/tech-stack.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/SKILL.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/astro-static/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/chrome-extension/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/cli-tool/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/electron-desktop/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/express-api/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/flutter-app/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/monorepo-turborepo/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/nextjs-fullstack/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/nextjs-saas/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/nextjs-static/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/nuxt-app/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/python-fastapi/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/app-builder/templates/react-native-app/TEMPLATE.md +0 -0
- package/templates/skills/knowledge/architecture/SKILL.md +0 -0
- package/templates/skills/knowledge/architecture/context-discovery.md +0 -0
- package/templates/skills/knowledge/architecture/examples.md +0 -0
- package/templates/skills/knowledge/architecture/pattern-selection.md +0 -0
- package/templates/skills/knowledge/architecture/patterns-reference.md +0 -0
- package/templates/skills/knowledge/architecture/trade-off-analysis.md +0 -0
- package/templates/skills/knowledge/bash-linux/SKILL.md +0 -0
- package/templates/skills/knowledge/behavioral-modes/SKILL.md +0 -0
- package/templates/skills/knowledge/brainstorming/SKILL.md +0 -0
- package/templates/skills/knowledge/brainstorming/dynamic-questioning.md +0 -0
- package/templates/skills/knowledge/clean-code/SKILL.md +0 -0
- package/templates/skills/knowledge/code-review-checklist/SKILL.md +0 -0
- package/templates/skills/knowledge/database-design/SKILL.md +0 -0
- package/templates/skills/knowledge/database-design/database-selection.md +0 -0
- package/templates/skills/knowledge/database-design/indexing.md +0 -0
- package/templates/skills/knowledge/database-design/migrations.md +0 -0
- package/templates/skills/knowledge/database-design/optimization.md +0 -0
- package/templates/skills/knowledge/database-design/orm-selection.md +0 -0
- package/templates/skills/knowledge/database-design/schema-design.md +0 -0
- package/templates/skills/knowledge/database-design/scripts/schema_validator.py +0 -0
- package/templates/skills/knowledge/deployment-procedures/SKILL.md +0 -0
- package/templates/skills/knowledge/documentation-templates/SKILL.md +0 -0
- package/templates/skills/knowledge/frontend-design/SKILL.md +0 -0
- package/templates/skills/knowledge/frontend-design/animation-guide.md +0 -0
- package/templates/skills/knowledge/frontend-design/color-system.md +0 -0
- package/templates/skills/knowledge/frontend-design/decision-trees.md +0 -0
- package/templates/skills/knowledge/frontend-design/motion-graphics.md +0 -0
- package/templates/skills/knowledge/frontend-design/scripts/accessibility_checker.py +0 -0
- package/templates/skills/knowledge/frontend-design/scripts/ux_audit.py +0 -0
- package/templates/skills/knowledge/frontend-design/typography-system.md +0 -0
- package/templates/skills/knowledge/frontend-design/ux-psychology.md +0 -0
- package/templates/skills/knowledge/frontend-design/visual-effects.md +0 -0
- package/templates/skills/knowledge/game-development/2d-games/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/3d-games/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/game-art/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/game-audio/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/game-design/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/mobile-games/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/multiplayer/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/pc-games/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/vr-ar/SKILL.md +0 -0
- package/templates/skills/knowledge/game-development/web-games/SKILL.md +0 -0
- package/templates/skills/knowledge/geo-fundamentals/SKILL.md +0 -0
- package/templates/skills/knowledge/geo-fundamentals/scripts/geo_checker.py +0 -0
- package/templates/skills/knowledge/i18n-localization/SKILL.md +0 -0
- package/templates/skills/knowledge/i18n-localization/scripts/i18n_checker.py +0 -0
- package/templates/skills/knowledge/intelligent-routing/SKILL.md +237 -164
- package/templates/skills/knowledge/jira/scripts/__pycache__/jira_client.cpython-314.pyc +0 -0
- package/templates/skills/knowledge/lint-and-validate/SKILL.md +0 -0
- package/templates/skills/knowledge/lint-and-validate/scripts/lint_runner.py +0 -0
- package/templates/skills/knowledge/lint-and-validate/scripts/type_coverage.py +0 -0
- package/templates/skills/knowledge/mcp-builder/SKILL.md +0 -0
- package/templates/skills/knowledge/mobile-design/SKILL.md +0 -0
- package/templates/skills/knowledge/mobile-design/decision-trees.md +0 -0
- package/templates/skills/knowledge/mobile-design/mobile-backend.md +0 -0
- package/templates/skills/knowledge/mobile-design/mobile-color-system.md +0 -0
- package/templates/skills/knowledge/mobile-design/mobile-debugging.md +0 -0
- package/templates/skills/knowledge/mobile-design/mobile-design-thinking.md +0 -0
- package/templates/skills/knowledge/mobile-design/mobile-navigation.md +0 -0
- package/templates/skills/knowledge/mobile-design/mobile-performance.md +0 -0
- package/templates/skills/knowledge/mobile-design/mobile-testing.md +0 -0
- package/templates/skills/knowledge/mobile-design/mobile-typography.md +0 -0
- package/templates/skills/knowledge/mobile-design/platform-android.md +0 -0
- package/templates/skills/knowledge/mobile-design/platform-ios.md +0 -0
- package/templates/skills/knowledge/mobile-design/scripts/mobile_audit.py +0 -0
- package/templates/skills/knowledge/mobile-design/touch-psychology.md +0 -0
- package/templates/skills/knowledge/nextjs-best-practices/SKILL.md +0 -0
- package/templates/skills/knowledge/nodejs-best-practices/SKILL.md +0 -0
- package/templates/skills/knowledge/parallel-agents/SKILL.md +345 -73
- package/templates/skills/knowledge/performance-profiling/SKILL.md +0 -0
- package/templates/skills/knowledge/performance-profiling/scripts/lighthouse_audit.py +0 -0
- package/templates/skills/knowledge/plan-writing/SKILL.md +0 -0
- package/templates/skills/knowledge/plugin-discovery/SKILL.md +582 -0
- package/templates/skills/knowledge/plugin-discovery/scripts/platform_setup.py +1083 -0
- package/templates/skills/knowledge/powershell-windows/SKILL.md +0 -0
- package/templates/skills/knowledge/python-patterns/SKILL.md +0 -0
- package/templates/skills/knowledge/react-patterns/SKILL.md +0 -0
- package/templates/skills/knowledge/red-team-tactics/SKILL.md +0 -0
- package/templates/skills/knowledge/seo-fundamentals/SKILL.md +0 -0
- package/templates/skills/knowledge/seo-fundamentals/scripts/seo_checker.py +0 -0
- package/templates/skills/knowledge/server-management/SKILL.md +0 -0
- package/templates/skills/knowledge/systematic-debugging/SKILL.md +0 -0
- package/templates/skills/knowledge/tailwind-patterns/SKILL.md +0 -0
- package/templates/skills/knowledge/tdd-workflow/SKILL.md +0 -0
- package/templates/skills/knowledge/testing-patterns/SKILL.md +0 -0
- package/templates/skills/knowledge/testing-patterns/scripts/test_runner.py +0 -0
- package/templates/skills/knowledge/vulnerability-scanner/SKILL.md +0 -0
- package/templates/skills/knowledge/vulnerability-scanner/checklists.md +0 -0
- package/templates/skills/knowledge/vulnerability-scanner/scripts/security_scan.py +0 -0
- package/templates/skills/knowledge/webapp-testing/SKILL.md +0 -0
- package/templates/skills/knowledge/webapp-testing/scripts/playwright_runner.py +0 -0
|
@@ -0,0 +1,1066 @@
|
|
|
1
|
+
# Skills Catalog
|
|
2
|
+
|
|
3
|
+
> **Auto-generated Documentation** — Last updated: 2026-02-09 13:07
|
|
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
|
+
- [AWS (Hub)](#aws-hub)
|
|
22
|
+
- [Aws Terraform](#aws-terraform)
|
|
23
|
+
- [Bash Linux](#bash-linux)
|
|
24
|
+
- [Behavioral Modes](#behavioral-modes)
|
|
25
|
+
- [Brainstorming](#brainstorming)
|
|
26
|
+
- [Clean Code](#clean-code)
|
|
27
|
+
- [Code Review Checklist](#code-review-checklist)
|
|
28
|
+
- [Confluent Kafka](#confluent-kafka)
|
|
29
|
+
- [Consul](#consul)
|
|
30
|
+
- [Database Design](#database-design)
|
|
31
|
+
- [Deployment Procedures](#deployment-procedures)
|
|
32
|
+
- [Design Md](#design-md)
|
|
33
|
+
- [Documentation](#documentation)
|
|
34
|
+
- [Documentation Templates](#documentation-templates)
|
|
35
|
+
- [Frontend Design](#frontend-design)
|
|
36
|
+
- [Game Development](#game-development)
|
|
37
|
+
- [Geo Fundamentals](#geo-fundamentals)
|
|
38
|
+
- [Gitlab](#gitlab)
|
|
39
|
+
- [I18N Localization](#i18n-localization)
|
|
40
|
+
- [Intelligent Routing](#intelligent-routing)
|
|
41
|
+
- [Jira](#jira)
|
|
42
|
+
- [Karpenter](#karpenter)
|
|
43
|
+
- [Lint And Validate](#lint-and-validate)
|
|
44
|
+
- [Mcp Builder](#mcp-builder)
|
|
45
|
+
- [Mobile Design](#mobile-design)
|
|
46
|
+
- [Nextjs Best Practices](#nextjs-best-practices)
|
|
47
|
+
- [Nodejs Best Practices](#nodejs-best-practices)
|
|
48
|
+
- [Notebooklm Mcp](#notebooklm-mcp)
|
|
49
|
+
- [Notebooklm Rag](#notebooklm-rag)
|
|
50
|
+
- [Opensearch](#opensearch)
|
|
51
|
+
- [Parallel Agents](#parallel-agents)
|
|
52
|
+
- [Pdf Reader](#pdf-reader)
|
|
53
|
+
- [Performance Profiling](#performance-profiling)
|
|
54
|
+
- [Plan Writing](#plan-writing)
|
|
55
|
+
- [Plugin Discovery](#plugin-discovery)
|
|
56
|
+
- [Powershell Windows](#powershell-windows)
|
|
57
|
+
- [Python Patterns](#python-patterns)
|
|
58
|
+
- [Qdrant Memory](#qdrant-memory)
|
|
59
|
+
- [React:Components](#react:components)
|
|
60
|
+
- [React Patterns](#react-patterns)
|
|
61
|
+
- [Red Team Tactics](#red-team-tactics)
|
|
62
|
+
- [Self Update](#self-update)
|
|
63
|
+
- [Seo Fundamentals](#seo-fundamentals)
|
|
64
|
+
- [Server Management](#server-management)
|
|
65
|
+
- [Stitch Loop](#stitch-loop)
|
|
66
|
+
- [Systematic Debugging](#systematic-debugging)
|
|
67
|
+
- [Tailwind Patterns](#tailwind-patterns)
|
|
68
|
+
- [Tdd Workflow](#tdd-workflow)
|
|
69
|
+
- [Testing Patterns](#testing-patterns)
|
|
70
|
+
- [Victoriametrics](#victoriametrics)
|
|
71
|
+
- [Vulnerability Scanner](#vulnerability-scanner)
|
|
72
|
+
- [Webapp Testing](#webapp-testing)
|
|
73
|
+
- [Webcrawler](#webcrawler)
|
|
74
|
+
- [Using Skills](#using-skills)
|
|
75
|
+
- [Creating New Skills](#creating-new-skills)
|
|
76
|
+
- [Maintenance](#maintenance)
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## What Are Skills?
|
|
81
|
+
|
|
82
|
+
**Skills** are modular, self-contained packages that extend the AI agent's capabilities with specialized knowledge, workflows, and tools.
|
|
83
|
+
|
|
84
|
+
### Skill Structure
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
skill-name/
|
|
88
|
+
├── SKILL.md # (required) Main instruction file
|
|
89
|
+
├── scripts/ # (optional) Executable scripts
|
|
90
|
+
├── references/ # (optional) Documentation
|
|
91
|
+
└── assets/ # (optional) Templates, images, etc.
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## Available Skills
|
|
97
|
+
|
|
98
|
+
### AWS (Hub)
|
|
99
|
+
|
|
100
|
+
| Property | Value |
|
|
101
|
+
| -------- | ----- |
|
|
102
|
+
| **Name** | `aws` |
|
|
103
|
+
| **Location** | `skills/aws/` |
|
|
104
|
+
| **Type** | Router / Hub |
|
|
105
|
+
|
|
106
|
+
**Description:** Comprehensive AWS MCP skill covering ALL AWS services. Use for any AWS-related task - infrastructure, databases, AI/ML, observability, networking, serverless, and more. This single skill provides access to 60+ AWS MCP servers organized by category.
|
|
107
|
+
|
|
108
|
+
**References:**
|
|
109
|
+
- `references/common_patterns.md`
|
|
110
|
+
- `references/mcp_servers.md`
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
### Confluent Kafka
|
|
115
|
+
|
|
116
|
+
| Property | Value |
|
|
117
|
+
| -------- | ----- |
|
|
118
|
+
| **Name** | `confluent-kafka` |
|
|
119
|
+
| **Location** | `skills/confluent-kafka/` |
|
|
120
|
+
| **Parent** | [Aws](#aws) |
|
|
121
|
+
|
|
122
|
+
**Description:** Confluent Kafka specialist for tarball/Ansible custom installations. Expert in updating, maintaining, checking health, troubleshooting, documenting, analyzing metrics, and upgrading Confluent Kafka deployments from 7.x to 8.x versions. Covers KRaft mode (ZooKeeper-less), broker configuration, Schema Registry, Connect, ksqlDB, Control Center, and production-grade operations. Use when working with Confluent Platform installations, migrations to KRaft, performance tuning, health monitoring, and infrastructure-as-code with Ansible.
|
|
123
|
+
|
|
124
|
+
**Scripts:**
|
|
125
|
+
|
|
126
|
+
| Script | Purpose |
|
|
127
|
+
| ------ | ------- |
|
|
128
|
+
| `scripts/kafka_health_check.py` | *[See script for details]* |
|
|
129
|
+
| `scripts/upgrade_preflight.py` | *[See script for details]* |
|
|
130
|
+
| `scripts/validate_config.py` | *[See script for details]* |
|
|
131
|
+
|
|
132
|
+
**References:**
|
|
133
|
+
- `references/ansible_playbooks.md`
|
|
134
|
+
- `references/ec_deployment.md`
|
|
135
|
+
- `references/kraft_migration.md`
|
|
136
|
+
- `references/troubleshooting.md`
|
|
137
|
+
- `references/upgrade_7x_to_8x.md`
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
### Consul
|
|
142
|
+
|
|
143
|
+
| Property | Value |
|
|
144
|
+
| -------- | ----- |
|
|
145
|
+
| **Name** | `consul` |
|
|
146
|
+
| **Location** | `skills/consul/` |
|
|
147
|
+
| **Parent** | [Aws](#aws) |
|
|
148
|
+
|
|
149
|
+
**Description:** HashiCorp Consul specialist for EKS clusters. Use for Consul service mesh installation, configuration, HA setup, maintenance, updates, upgrades, troubleshooting, and optimization. Covers Consul Connect, intentions, health checks, ACLs, gossip encryption, TLS configuration, federation, and Kubernetes integration via consul-k8s Helm chart. Requires kubectl and helm access to target EKS cluster.
|
|
150
|
+
|
|
151
|
+
**Scripts:**
|
|
152
|
+
|
|
153
|
+
| Script | Purpose |
|
|
154
|
+
| ------ | ------- |
|
|
155
|
+
| `scripts/consul_health_report.py` | *[See script for details]* |
|
|
156
|
+
| `scripts/consul_status.py` | *[See script for details]* |
|
|
157
|
+
| `scripts/generate_values.py` | *[See script for details]* |
|
|
158
|
+
|
|
159
|
+
**References:**
|
|
160
|
+
- `references/acl_setup.md`
|
|
161
|
+
- `references/ha_config.md`
|
|
162
|
+
- `references/troubleshooting.md`
|
|
163
|
+
- `references/upgrades.md`
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
### Gitlab
|
|
168
|
+
|
|
169
|
+
| Property | Value |
|
|
170
|
+
| -------- | ----- |
|
|
171
|
+
| **Name** | `gitlab` |
|
|
172
|
+
| **Location** | `skills/gitlab/` |
|
|
173
|
+
| **Parent** | [Aws](#aws) |
|
|
174
|
+
|
|
175
|
+
**Description:** GitLab specialist for Kubernetes agent management on EKS clusters. Use for GitLab agent (agentk) installation, configuration, upgrades, GitOps with Flux, CI/CD pipeline integration, project management via API, token management, and troubleshooting connectivity issues. Covers agent registration, Helm deployments, KAS configuration (self-managed on-prem), impersonation, and multi-cluster setups. Requires kubectl/helm access to target EKS cluster and GitLab API token.
|
|
176
|
+
|
|
177
|
+
**Scripts:**
|
|
178
|
+
|
|
179
|
+
| Script | Purpose |
|
|
180
|
+
| ------ | ------- |
|
|
181
|
+
| `scripts/generate_agent_values.py` | *[See script for details]* |
|
|
182
|
+
| `scripts/gitlab_agent_status.py` | *[See script for details]* |
|
|
183
|
+
|
|
184
|
+
**References:**
|
|
185
|
+
- `references/agent_installation.md`
|
|
186
|
+
- `references/api_reference.md`
|
|
187
|
+
- `references/gitops_flux.md`
|
|
188
|
+
- `references/troubleshooting.md`
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
### Karpenter
|
|
193
|
+
|
|
194
|
+
| Property | Value |
|
|
195
|
+
| -------- | ----- |
|
|
196
|
+
| **Name** | `karpenter` |
|
|
197
|
+
| **Location** | `skills/karpenter/` |
|
|
198
|
+
| **Parent** | [Aws](#aws) |
|
|
199
|
+
|
|
200
|
+
**Description:** Karpenter Kubernetes autoscaler specialist for EKS clusters. Use for troubleshooting, documenting, managing, creating, updating, upgrading Karpenter deployments, and obtaining live cluster information. Covers NodePool/EC2NodeClass configuration, cost optimization, node consolidation, drift detection, Spot interruption handling, and migration from Cluster Autoscaler. Requires kubectl access to target EKS cluster.
|
|
201
|
+
|
|
202
|
+
**Scripts:**
|
|
203
|
+
|
|
204
|
+
| Script | Purpose |
|
|
205
|
+
| ------ | ------- |
|
|
206
|
+
| `scripts/generate_ec2nodeclass.py` | *[See script for details]* |
|
|
207
|
+
| `scripts/generate_nodepool.py` | *[See script for details]* |
|
|
208
|
+
| `scripts/karpenter_status.py` | *[See script for details]* |
|
|
209
|
+
|
|
210
|
+
**References:**
|
|
211
|
+
- `references/ec2nodeclasses.md`
|
|
212
|
+
- `references/migration.md`
|
|
213
|
+
- `references/nodepools.md`
|
|
214
|
+
- `references/troubleshooting.md`
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
### Api Patterns
|
|
219
|
+
|
|
220
|
+
| Property | Value |
|
|
221
|
+
| -------- | ----- |
|
|
222
|
+
| **Name** | `api-patterns` |
|
|
223
|
+
| **Location** | `skills/api-patterns/` |
|
|
224
|
+
| **Type** | Standalone |
|
|
225
|
+
|
|
226
|
+
**Description:** API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.
|
|
227
|
+
|
|
228
|
+
**Scripts:**
|
|
229
|
+
|
|
230
|
+
| Script | Purpose |
|
|
231
|
+
| ------ | ------- |
|
|
232
|
+
| `scripts/api_validator.py` | *[See script for details]* |
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
### App Builder
|
|
237
|
+
|
|
238
|
+
| Property | Value |
|
|
239
|
+
| -------- | ----- |
|
|
240
|
+
| **Name** | `app-builder` |
|
|
241
|
+
| **Location** | `skills/app-builder/` |
|
|
242
|
+
| **Type** | Standalone |
|
|
243
|
+
|
|
244
|
+
**Description:** Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.
|
|
245
|
+
|
|
246
|
+
---
|
|
247
|
+
|
|
248
|
+
### Architecture
|
|
249
|
+
|
|
250
|
+
| Property | Value |
|
|
251
|
+
| -------- | ----- |
|
|
252
|
+
| **Name** | `architecture` |
|
|
253
|
+
| **Location** | `skills/architecture/` |
|
|
254
|
+
| **Type** | Standalone |
|
|
255
|
+
|
|
256
|
+
**Description:** Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
### Aws Terraform
|
|
261
|
+
|
|
262
|
+
| Property | Value |
|
|
263
|
+
| -------- | ----- |
|
|
264
|
+
| **Name** | `aws-terraform` |
|
|
265
|
+
| **Location** | `skills/aws-terraform/` |
|
|
266
|
+
| **Type** | Standalone |
|
|
267
|
+
|
|
268
|
+
**Description:** AWS infrastructure deployments using Terraform and Terragrunt. Use for any task involving: (1) Writing, validating, or deploying Terraform/HCL code for AWS, (2) Security scanning with Checkov, (3) AWS provider documentation lookup, (4) Terraform Registry module analysis, (5) Terragrunt multi-environment orchestration, (6) Infrastructure as Code best practices for AWS. Parent skill: aws.
|
|
269
|
+
|
|
270
|
+
**Scripts:**
|
|
271
|
+
|
|
272
|
+
| Script | Purpose |
|
|
273
|
+
| ------ | ------- |
|
|
274
|
+
| `scripts/configure_mcp.py` | *[See script for details]* |
|
|
275
|
+
|
|
276
|
+
**References:**
|
|
277
|
+
- `references/best_practices.md`
|
|
278
|
+
- `references/checkov_reference.md`
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
### Bash Linux
|
|
283
|
+
|
|
284
|
+
| Property | Value |
|
|
285
|
+
| -------- | ----- |
|
|
286
|
+
| **Name** | `bash-linux` |
|
|
287
|
+
| **Location** | `skills/bash-linux/` |
|
|
288
|
+
| **Type** | Standalone |
|
|
289
|
+
|
|
290
|
+
**Description:** Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting. Use when working on macOS or Linux systems.
|
|
291
|
+
|
|
292
|
+
---
|
|
293
|
+
|
|
294
|
+
### Behavioral Modes
|
|
295
|
+
|
|
296
|
+
| Property | Value |
|
|
297
|
+
| -------- | ----- |
|
|
298
|
+
| **Name** | `behavioral-modes` |
|
|
299
|
+
| **Location** | `skills/behavioral-modes/` |
|
|
300
|
+
| **Type** | Standalone |
|
|
301
|
+
|
|
302
|
+
**Description:** AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate). Use to adapt behavior based on task type.
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
### Brainstorming
|
|
307
|
+
|
|
308
|
+
| Property | Value |
|
|
309
|
+
| -------- | ----- |
|
|
310
|
+
| **Name** | `brainstorming` |
|
|
311
|
+
| **Location** | `skills/brainstorming/` |
|
|
312
|
+
| **Type** | Standalone |
|
|
313
|
+
|
|
314
|
+
**Description:** Socratic questioning protocol + user communication. MANDATORY for complex requests, new features, or unclear requirements. Includes progress reporting and error handling.
|
|
315
|
+
|
|
316
|
+
---
|
|
317
|
+
|
|
318
|
+
### Clean Code
|
|
319
|
+
|
|
320
|
+
| Property | Value |
|
|
321
|
+
| -------- | ----- |
|
|
322
|
+
| **Name** | `clean-code` |
|
|
323
|
+
| **Location** | `skills/clean-code/` |
|
|
324
|
+
| **Type** | Standalone |
|
|
325
|
+
|
|
326
|
+
**Description:** Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments
|
|
327
|
+
|
|
328
|
+
---
|
|
329
|
+
|
|
330
|
+
### Code Review Checklist
|
|
331
|
+
|
|
332
|
+
| Property | Value |
|
|
333
|
+
| -------- | ----- |
|
|
334
|
+
| **Name** | `code-review-checklist` |
|
|
335
|
+
| **Location** | `skills/code-review-checklist/` |
|
|
336
|
+
| **Type** | Standalone |
|
|
337
|
+
|
|
338
|
+
**Description:** Code review guidelines covering code quality, security, and best practices.
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
342
|
+
### Database Design
|
|
343
|
+
|
|
344
|
+
| Property | Value |
|
|
345
|
+
| -------- | ----- |
|
|
346
|
+
| **Name** | `database-design` |
|
|
347
|
+
| **Location** | `skills/database-design/` |
|
|
348
|
+
| **Type** | Standalone |
|
|
349
|
+
|
|
350
|
+
**Description:** Database design principles and decision-making. Schema design, indexing strategy, ORM selection, serverless databases.
|
|
351
|
+
|
|
352
|
+
**Scripts:**
|
|
353
|
+
|
|
354
|
+
| Script | Purpose |
|
|
355
|
+
| ------ | ------- |
|
|
356
|
+
| `scripts/schema_validator.py` | *[See script for details]* |
|
|
357
|
+
|
|
358
|
+
---
|
|
359
|
+
|
|
360
|
+
### Deployment Procedures
|
|
361
|
+
|
|
362
|
+
| Property | Value |
|
|
363
|
+
| -------- | ----- |
|
|
364
|
+
| **Name** | `deployment-procedures` |
|
|
365
|
+
| **Location** | `skills/deployment-procedures/` |
|
|
366
|
+
| **Type** | Standalone |
|
|
367
|
+
|
|
368
|
+
**Description:** Production deployment principles and decision-making. Safe deployment workflows, rollback strategies, and verification. Teaches thinking, not scripts.
|
|
369
|
+
|
|
370
|
+
---
|
|
371
|
+
|
|
372
|
+
### Design Md
|
|
373
|
+
|
|
374
|
+
| Property | Value |
|
|
375
|
+
| -------- | ----- |
|
|
376
|
+
| **Name** | `design-md` |
|
|
377
|
+
| **Location** | `skills/design-md/` |
|
|
378
|
+
| **Type** | Standalone |
|
|
379
|
+
|
|
380
|
+
**Description:** Analyze Stitch projects and synthesize a semantic design system into DESIGN.md files
|
|
381
|
+
|
|
382
|
+
---
|
|
383
|
+
|
|
384
|
+
### Documentation
|
|
385
|
+
|
|
386
|
+
| Property | Value |
|
|
387
|
+
| -------- | ----- |
|
|
388
|
+
| **Name** | `documentation` |
|
|
389
|
+
| **Location** | `skills/documentation/` |
|
|
390
|
+
| **Type** | Standalone |
|
|
391
|
+
|
|
392
|
+
**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."
|
|
393
|
+
|
|
394
|
+
**Scripts:**
|
|
395
|
+
|
|
396
|
+
| Script | Purpose |
|
|
397
|
+
| ------ | ------- |
|
|
398
|
+
| `scripts/analyze_code.py` | *[See script for details]* |
|
|
399
|
+
| `scripts/detect_changes.py` | *[See script for details]* |
|
|
400
|
+
| `scripts/generate_changelog.py` | *[See script for details]* |
|
|
401
|
+
| `scripts/sync_docs.py` | *[See script for details]* |
|
|
402
|
+
| `scripts/update_skill_docs.py` | *[See script for details]* |
|
|
403
|
+
|
|
404
|
+
**References:**
|
|
405
|
+
- `references/best_practices.md`
|
|
406
|
+
|
|
407
|
+
---
|
|
408
|
+
|
|
409
|
+
### Documentation Templates
|
|
410
|
+
|
|
411
|
+
| Property | Value |
|
|
412
|
+
| -------- | ----- |
|
|
413
|
+
| **Name** | `documentation-templates` |
|
|
414
|
+
| **Location** | `skills/documentation-templates/` |
|
|
415
|
+
| **Type** | Standalone |
|
|
416
|
+
|
|
417
|
+
**Description:** Documentation templates and structure guidelines. README, API docs, code comments, and AI-friendly documentation.
|
|
418
|
+
|
|
419
|
+
---
|
|
420
|
+
|
|
421
|
+
### Frontend Design
|
|
422
|
+
|
|
423
|
+
| Property | Value |
|
|
424
|
+
| -------- | ----- |
|
|
425
|
+
| **Name** | `frontend-design` |
|
|
426
|
+
| **Location** | `skills/frontend-design/` |
|
|
427
|
+
| **Type** | Standalone |
|
|
428
|
+
|
|
429
|
+
**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.
|
|
430
|
+
|
|
431
|
+
**Scripts:**
|
|
432
|
+
|
|
433
|
+
| Script | Purpose |
|
|
434
|
+
| ------ | ------- |
|
|
435
|
+
| `scripts/accessibility_checker.py` | *[See script for details]* |
|
|
436
|
+
| `scripts/ux_audit.py` | *[See script for details]* |
|
|
437
|
+
|
|
438
|
+
---
|
|
439
|
+
|
|
440
|
+
### Game Development
|
|
441
|
+
|
|
442
|
+
| Property | Value |
|
|
443
|
+
| -------- | ----- |
|
|
444
|
+
| **Name** | `game-development` |
|
|
445
|
+
| **Location** | `skills/game-development/` |
|
|
446
|
+
| **Type** | Standalone |
|
|
447
|
+
|
|
448
|
+
**Description:** Game development orchestrator. Routes to platform-specific skills based on project needs.
|
|
449
|
+
|
|
450
|
+
---
|
|
451
|
+
|
|
452
|
+
### Geo Fundamentals
|
|
453
|
+
|
|
454
|
+
| Property | Value |
|
|
455
|
+
| -------- | ----- |
|
|
456
|
+
| **Name** | `geo-fundamentals` |
|
|
457
|
+
| **Location** | `skills/geo-fundamentals/` |
|
|
458
|
+
| **Type** | Standalone |
|
|
459
|
+
|
|
460
|
+
**Description:** Generative Engine Optimization for AI search engines (ChatGPT, Claude, Perplexity).
|
|
461
|
+
|
|
462
|
+
**Scripts:**
|
|
463
|
+
|
|
464
|
+
| Script | Purpose |
|
|
465
|
+
| ------ | ------- |
|
|
466
|
+
| `scripts/geo_checker.py` | *[See script for details]* |
|
|
467
|
+
|
|
468
|
+
---
|
|
469
|
+
|
|
470
|
+
### I18N Localization
|
|
471
|
+
|
|
472
|
+
| Property | Value |
|
|
473
|
+
| -------- | ----- |
|
|
474
|
+
| **Name** | `i18n-localization` |
|
|
475
|
+
| **Location** | `skills/i18n-localization/` |
|
|
476
|
+
| **Type** | Standalone |
|
|
477
|
+
|
|
478
|
+
**Description:** Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.
|
|
479
|
+
|
|
480
|
+
**Scripts:**
|
|
481
|
+
|
|
482
|
+
| Script | Purpose |
|
|
483
|
+
| ------ | ------- |
|
|
484
|
+
| `scripts/i18n_checker.py` | *[See script for details]* |
|
|
485
|
+
|
|
486
|
+
---
|
|
487
|
+
|
|
488
|
+
### Intelligent Routing
|
|
489
|
+
|
|
490
|
+
| Property | Value |
|
|
491
|
+
| -------- | ----- |
|
|
492
|
+
| **Name** | `intelligent-routing` |
|
|
493
|
+
| **Location** | `skills/intelligent-routing/` |
|
|
494
|
+
| **Type** | Standalone |
|
|
495
|
+
|
|
496
|
+
**Description:** Automatic agent selection, intelligent task routing, and platform-adaptive orchestration. Analyzes user requests and automatically selects the best specialist agent(s). Detects the runtime platform (Claude Code, Gemini, Opencode) and proactively recommends enabling platform-specific features like Agent Teams and Plugins.
|
|
497
|
+
|
|
498
|
+
---
|
|
499
|
+
|
|
500
|
+
### Jira
|
|
501
|
+
|
|
502
|
+
| Property | Value |
|
|
503
|
+
| -------- | ----- |
|
|
504
|
+
| **Name** | `jira` |
|
|
505
|
+
| **Location** | `skills/jira/` |
|
|
506
|
+
| **Type** | Standalone |
|
|
507
|
+
|
|
508
|
+
**Description:** "Jira ticket management skill for creating, updating, and managing issues. Use for: (1) Creating new tickets/issues with custom fields, (2) Updating existing tickets (status, assignee, priority, labels), (3) Adding and updating comments, (4) Logging work time and time tracking, (5) Searching issues with JQL, (6) Managing transitions and workflows, (7) Bulk operations on multiple tickets, (8) Sprint and board management. Supports both MCP server integration and direct REST API calls. Requires JIRA_API_TOKEN and JIRA_URL environment variables."
|
|
509
|
+
|
|
510
|
+
**Scripts:**
|
|
511
|
+
|
|
512
|
+
| Script | Purpose |
|
|
513
|
+
| ------ | ------- |
|
|
514
|
+
| `scripts/add_comment.py` | *[See script for details]* |
|
|
515
|
+
| `scripts/bulk_log_work.py` | *[See script for details]* |
|
|
516
|
+
| `scripts/create_ticket.py` | *[See script for details]* |
|
|
517
|
+
| `scripts/get_ticket.py` | *[See script for details]* |
|
|
518
|
+
| `scripts/jira_client.py` | *[See script for details]* |
|
|
519
|
+
| `scripts/log_work.py` | *[See script for details]* |
|
|
520
|
+
| `scripts/search_tickets.py` | *[See script for details]* |
|
|
521
|
+
| `scripts/update_comment.py` | *[See script for details]* |
|
|
522
|
+
| `scripts/update_ticket.py` | *[See script for details]* |
|
|
523
|
+
|
|
524
|
+
**References:**
|
|
525
|
+
- `references/jql_reference.md`
|
|
526
|
+
|
|
527
|
+
---
|
|
528
|
+
|
|
529
|
+
### Lint And Validate
|
|
530
|
+
|
|
531
|
+
| Property | Value |
|
|
532
|
+
| -------- | ----- |
|
|
533
|
+
| **Name** | `lint-and-validate` |
|
|
534
|
+
| **Location** | `skills/lint-and-validate/` |
|
|
535
|
+
| **Type** | Standalone |
|
|
536
|
+
|
|
537
|
+
**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.
|
|
538
|
+
|
|
539
|
+
**Scripts:**
|
|
540
|
+
|
|
541
|
+
| Script | Purpose |
|
|
542
|
+
| ------ | ------- |
|
|
543
|
+
| `scripts/lint_runner.py` | *[See script for details]* |
|
|
544
|
+
| `scripts/type_coverage.py` | *[See script for details]* |
|
|
545
|
+
|
|
546
|
+
---
|
|
547
|
+
|
|
548
|
+
### Mcp Builder
|
|
549
|
+
|
|
550
|
+
| Property | Value |
|
|
551
|
+
| -------- | ----- |
|
|
552
|
+
| **Name** | `mcp-builder` |
|
|
553
|
+
| **Location** | `skills/mcp-builder/` |
|
|
554
|
+
| **Type** | Standalone |
|
|
555
|
+
|
|
556
|
+
**Description:** MCP (Model Context Protocol) server building principles. Tool design, resource patterns, best practices.
|
|
557
|
+
|
|
558
|
+
---
|
|
559
|
+
|
|
560
|
+
### Mobile Design
|
|
561
|
+
|
|
562
|
+
| Property | Value |
|
|
563
|
+
| -------- | ----- |
|
|
564
|
+
| **Name** | `mobile-design` |
|
|
565
|
+
| **Location** | `skills/mobile-design/` |
|
|
566
|
+
| **Type** | Standalone |
|
|
567
|
+
|
|
568
|
+
**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.
|
|
569
|
+
|
|
570
|
+
**Scripts:**
|
|
571
|
+
|
|
572
|
+
| Script | Purpose |
|
|
573
|
+
| ------ | ------- |
|
|
574
|
+
| `scripts/mobile_audit.py` | *[See script for details]* |
|
|
575
|
+
|
|
576
|
+
---
|
|
577
|
+
|
|
578
|
+
### Nextjs Best Practices
|
|
579
|
+
|
|
580
|
+
| Property | Value |
|
|
581
|
+
| -------- | ----- |
|
|
582
|
+
| **Name** | `nextjs-best-practices` |
|
|
583
|
+
| **Location** | `skills/nextjs-best-practices/` |
|
|
584
|
+
| **Type** | Standalone |
|
|
585
|
+
|
|
586
|
+
**Description:** Next.js App Router principles. Server Components, data fetching, routing patterns.
|
|
587
|
+
|
|
588
|
+
---
|
|
589
|
+
|
|
590
|
+
### Nodejs Best Practices
|
|
591
|
+
|
|
592
|
+
| Property | Value |
|
|
593
|
+
| -------- | ----- |
|
|
594
|
+
| **Name** | `nodejs-best-practices` |
|
|
595
|
+
| **Location** | `skills/nodejs-best-practices/` |
|
|
596
|
+
| **Type** | Standalone |
|
|
597
|
+
|
|
598
|
+
**Description:** Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.
|
|
599
|
+
|
|
600
|
+
---
|
|
601
|
+
|
|
602
|
+
### Notebooklm Mcp
|
|
603
|
+
|
|
604
|
+
| Property | Value |
|
|
605
|
+
| -------- | ----- |
|
|
606
|
+
| **Name** | `notebooklm-mcp` |
|
|
607
|
+
| **Location** | `skills/notebooklm-mcp/` |
|
|
608
|
+
| **Type** | Standalone |
|
|
609
|
+
|
|
610
|
+
**Description:** "Connects to Google NotebookLM via MCP using PleasePrompto/notebooklm-mcp. Browser-automated auth, zero-hallucination research, smart library management. Triggers when user asks to research docs, query NotebookLM, or manage notebook libraries."
|
|
611
|
+
|
|
612
|
+
**Scripts:**
|
|
613
|
+
|
|
614
|
+
| Script | Purpose |
|
|
615
|
+
| ------ | ------- |
|
|
616
|
+
| `scripts/auth_helper.py` | *[See script for details]* |
|
|
617
|
+
| `scripts/list_notebooks_cli.py` | *[See script for details]* |
|
|
618
|
+
|
|
619
|
+
**References:**
|
|
620
|
+
- `references/api_reference.md`
|
|
621
|
+
|
|
622
|
+
---
|
|
623
|
+
|
|
624
|
+
### Notebooklm Rag
|
|
625
|
+
|
|
626
|
+
| Property | Value |
|
|
627
|
+
| -------- | ----- |
|
|
628
|
+
| **Name** | `notebooklm-rag` |
|
|
629
|
+
| **Location** | `skills/notebooklm-rag/` |
|
|
630
|
+
| **Type** | Standalone |
|
|
631
|
+
|
|
632
|
+
**Description:** "Deep-search RAG knowledge layer powered by Google NotebookLM + Gemini 2.5. Use when explicitly asked to research, investigate, plan with docs, or query knowledge bases. Complement to qdrant-memory (token saver). Triggers on: '@notebooklm', 'research my docs', 'check my notebooks', 'deep search', 'investigate with docs'."
|
|
633
|
+
|
|
634
|
+
**Scripts:**
|
|
635
|
+
|
|
636
|
+
| Script | Purpose |
|
|
637
|
+
| ------ | ------- |
|
|
638
|
+
| `scripts/preflight_check.py` | *[See script for details]* |
|
|
639
|
+
| `scripts/research_query.py` | *[See script for details]* |
|
|
640
|
+
| `scripts/research_report.py` | *[See script for details]* |
|
|
641
|
+
|
|
642
|
+
**References:**
|
|
643
|
+
- `references/research_patterns.md`
|
|
644
|
+
|
|
645
|
+
---
|
|
646
|
+
|
|
647
|
+
### Opensearch
|
|
648
|
+
|
|
649
|
+
| Property | Value |
|
|
650
|
+
| -------- | ----- |
|
|
651
|
+
| **Name** | `opensearch` |
|
|
652
|
+
| **Location** | `skills/opensearch/` |
|
|
653
|
+
| **Type** | Standalone |
|
|
654
|
+
|
|
655
|
+
**Description:** OpenSearch specialist covering querying (Query DSL, SQL), performance optimization, cluster management, monitoring, OpenSearch Dashboards, ML/AI (neural search, embeddings, ML Commons), data ingestion (Logstash, Fluent Bit, Data Prepper), OpenSearch Operator for Kubernetes, and MCP integration. Use for any task involving: (1) Writing or optimizing OpenSearch queries, (2) Index design and mapping, (3) Cluster health and performance tuning, (4) OpenSearch Dashboards visualization, (5) Neural/semantic search with vectors, (6) Log and data ingestion pipelines, (7) Kubernetes deployments with OpenSearch Operator.
|
|
656
|
+
|
|
657
|
+
**Scripts:**
|
|
658
|
+
|
|
659
|
+
| Script | Purpose |
|
|
660
|
+
| ------ | ------- |
|
|
661
|
+
| `scripts/configure_mcp.py` | *[See script for details]* |
|
|
662
|
+
|
|
663
|
+
**References:**
|
|
664
|
+
- `references/ml_neural_search.md`
|
|
665
|
+
- `references/operator.md`
|
|
666
|
+
- `references/query_dsl.md`
|
|
667
|
+
|
|
668
|
+
---
|
|
669
|
+
|
|
670
|
+
### Parallel Agents
|
|
671
|
+
|
|
672
|
+
| Property | Value |
|
|
673
|
+
| -------- | ----- |
|
|
674
|
+
| **Name** | `parallel-agents` |
|
|
675
|
+
| **Location** | `skills/parallel-agents/` |
|
|
676
|
+
| **Type** | Standalone |
|
|
677
|
+
|
|
678
|
+
**Description:** Platform-adaptive multi-agent orchestration. Uses Claude Code Agent Teams when available, subagents as fallback, and sequential persona switching on other platforms. Use when multiple independent tasks can run with different domain expertise or when comprehensive analysis requires multiple perspectives.
|
|
679
|
+
|
|
680
|
+
---
|
|
681
|
+
|
|
682
|
+
### Pdf Reader
|
|
683
|
+
|
|
684
|
+
| Property | Value |
|
|
685
|
+
| -------- | ----- |
|
|
686
|
+
| **Name** | `pdf-reader` |
|
|
687
|
+
| **Location** | `skills/pdf-reader/` |
|
|
688
|
+
| **Type** | Standalone |
|
|
689
|
+
|
|
690
|
+
**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.
|
|
691
|
+
|
|
692
|
+
**Scripts:**
|
|
693
|
+
|
|
694
|
+
| Script | Purpose |
|
|
695
|
+
| ------ | ------- |
|
|
696
|
+
| `scripts/extract_text.py` | *[See script for details]* |
|
|
697
|
+
|
|
698
|
+
**References:**
|
|
699
|
+
- `references/pdf_libraries.md`
|
|
700
|
+
|
|
701
|
+
---
|
|
702
|
+
|
|
703
|
+
### Performance Profiling
|
|
704
|
+
|
|
705
|
+
| Property | Value |
|
|
706
|
+
| -------- | ----- |
|
|
707
|
+
| **Name** | `performance-profiling` |
|
|
708
|
+
| **Location** | `skills/performance-profiling/` |
|
|
709
|
+
| **Type** | Standalone |
|
|
710
|
+
|
|
711
|
+
**Description:** Performance profiling principles. Measurement, analysis, and optimization techniques.
|
|
712
|
+
|
|
713
|
+
**Scripts:**
|
|
714
|
+
|
|
715
|
+
| Script | Purpose |
|
|
716
|
+
| ------ | ------- |
|
|
717
|
+
| `scripts/lighthouse_audit.py` | *[See script for details]* |
|
|
718
|
+
|
|
719
|
+
---
|
|
720
|
+
|
|
721
|
+
### Plan Writing
|
|
722
|
+
|
|
723
|
+
| Property | Value |
|
|
724
|
+
| -------- | ----- |
|
|
725
|
+
| **Name** | `plan-writing` |
|
|
726
|
+
| **Location** | `skills/plan-writing/` |
|
|
727
|
+
| **Type** | Standalone |
|
|
728
|
+
|
|
729
|
+
**Description:** Structured task planning with clear breakdowns, dependencies, and verification criteria. Use when implementing features, refactoring, or any multi-step work.
|
|
730
|
+
|
|
731
|
+
---
|
|
732
|
+
|
|
733
|
+
### Plugin Discovery
|
|
734
|
+
|
|
735
|
+
| Property | Value |
|
|
736
|
+
| -------- | ----- |
|
|
737
|
+
| **Name** | `plugin-discovery` |
|
|
738
|
+
| **Location** | `skills/plugin-discovery/` |
|
|
739
|
+
| **Type** | Standalone |
|
|
740
|
+
|
|
741
|
+
**Description:** Platform-adaptive plugin and extension auto-discovery. Detects the runtime environment (Claude Code, Gemini, Opencode, Kiro) and recommends or installs relevant plugins, extensions, MCP servers, and marketplace integrations. Use when setting up a project, onboarding, or when the user asks about available tools/plugins.
|
|
742
|
+
|
|
743
|
+
**Scripts:**
|
|
744
|
+
|
|
745
|
+
| Script | Purpose |
|
|
746
|
+
| ------ | ------- |
|
|
747
|
+
| `scripts/platform_setup.py` | *[See script for details]* |
|
|
748
|
+
|
|
749
|
+
---
|
|
750
|
+
|
|
751
|
+
### Powershell Windows
|
|
752
|
+
|
|
753
|
+
| Property | Value |
|
|
754
|
+
| -------- | ----- |
|
|
755
|
+
| **Name** | `powershell-windows` |
|
|
756
|
+
| **Location** | `skills/powershell-windows/` |
|
|
757
|
+
| **Type** | Standalone |
|
|
758
|
+
|
|
759
|
+
**Description:** PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.
|
|
760
|
+
|
|
761
|
+
---
|
|
762
|
+
|
|
763
|
+
### Python Patterns
|
|
764
|
+
|
|
765
|
+
| Property | Value |
|
|
766
|
+
| -------- | ----- |
|
|
767
|
+
| **Name** | `python-patterns` |
|
|
768
|
+
| **Location** | `skills/python-patterns/` |
|
|
769
|
+
| **Type** | Standalone |
|
|
770
|
+
|
|
771
|
+
**Description:** Python development principles and decision-making. Framework selection, async patterns, type hints, project structure. Teaches thinking, not copying.
|
|
772
|
+
|
|
773
|
+
---
|
|
774
|
+
|
|
775
|
+
### Qdrant Memory
|
|
776
|
+
|
|
777
|
+
| Property | Value |
|
|
778
|
+
| -------- | ----- |
|
|
779
|
+
| **Name** | `qdrant-memory` |
|
|
780
|
+
| **Location** | `skills/qdrant-memory/` |
|
|
781
|
+
| **Type** | Standalone |
|
|
782
|
+
|
|
783
|
+
**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."
|
|
784
|
+
|
|
785
|
+
**Scripts:**
|
|
786
|
+
|
|
787
|
+
| Script | Purpose |
|
|
788
|
+
| ------ | ------- |
|
|
789
|
+
| `scripts/benchmark_token_savings.py` | *[See script for details]* |
|
|
790
|
+
| `scripts/embedding_utils.py` | *[See script for details]* |
|
|
791
|
+
| `scripts/hybrid_search.py` | *[See script for details]* |
|
|
792
|
+
| `scripts/init_collection.py` | *[See script for details]* |
|
|
793
|
+
| `scripts/memory_retrieval.py` | *[See script for details]* |
|
|
794
|
+
| `scripts/semantic_cache.py` | *[See script for details]* |
|
|
795
|
+
| `scripts/test_skill.py` | *[See script for details]* |
|
|
796
|
+
|
|
797
|
+
**References:**
|
|
798
|
+
- `references/advanced_patterns.md`
|
|
799
|
+
- `references/collection_schemas.md`
|
|
800
|
+
- `references/complete_guide.md`
|
|
801
|
+
- `references/embedding_models.md`
|
|
802
|
+
|
|
803
|
+
---
|
|
804
|
+
|
|
805
|
+
### React Patterns
|
|
806
|
+
|
|
807
|
+
| Property | Value |
|
|
808
|
+
| -------- | ----- |
|
|
809
|
+
| **Name** | `react-patterns` |
|
|
810
|
+
| **Location** | `skills/react-patterns/` |
|
|
811
|
+
| **Type** | Standalone |
|
|
812
|
+
|
|
813
|
+
**Description:** Modern React patterns and principles. Hooks, composition, performance, TypeScript best practices.
|
|
814
|
+
|
|
815
|
+
---
|
|
816
|
+
|
|
817
|
+
### React:Components
|
|
818
|
+
|
|
819
|
+
| Property | Value |
|
|
820
|
+
| -------- | ----- |
|
|
821
|
+
| **Name** | `react:components` |
|
|
822
|
+
| **Location** | `skills/react-components/` |
|
|
823
|
+
| **Type** | Standalone |
|
|
824
|
+
|
|
825
|
+
**Description:** Converts Stitch designs into modular Vite and React components using system-level networking and AST-based validation.
|
|
826
|
+
|
|
827
|
+
---
|
|
828
|
+
|
|
829
|
+
### Red Team Tactics
|
|
830
|
+
|
|
831
|
+
| Property | Value |
|
|
832
|
+
| -------- | ----- |
|
|
833
|
+
| **Name** | `red-team-tactics` |
|
|
834
|
+
| **Location** | `skills/red-team-tactics/` |
|
|
835
|
+
| **Type** | Standalone |
|
|
836
|
+
|
|
837
|
+
**Description:** Red team tactics principles based on MITRE ATT&CK. Attack phases, detection evasion, reporting.
|
|
838
|
+
|
|
839
|
+
---
|
|
840
|
+
|
|
841
|
+
### Self Update
|
|
842
|
+
|
|
843
|
+
| Property | Value |
|
|
844
|
+
| -------- | ----- |
|
|
845
|
+
| **Name** | `self-update` |
|
|
846
|
+
| **Location** | `skills/self-update/` |
|
|
847
|
+
| **Type** | Standalone |
|
|
848
|
+
|
|
849
|
+
**Description:** Update the AGI Agent Kit to the latest version from NPM
|
|
850
|
+
|
|
851
|
+
**Scripts:**
|
|
852
|
+
|
|
853
|
+
| Script | Purpose |
|
|
854
|
+
| ------ | ------- |
|
|
855
|
+
| `scripts/update_kit.py` | *[See script for details]* |
|
|
856
|
+
|
|
857
|
+
---
|
|
858
|
+
|
|
859
|
+
### Seo Fundamentals
|
|
860
|
+
|
|
861
|
+
| Property | Value |
|
|
862
|
+
| -------- | ----- |
|
|
863
|
+
| **Name** | `seo-fundamentals` |
|
|
864
|
+
| **Location** | `skills/seo-fundamentals/` |
|
|
865
|
+
| **Type** | Standalone |
|
|
866
|
+
|
|
867
|
+
**Description:** SEO fundamentals, E-E-A-T, Core Web Vitals, and Google algorithm principles.
|
|
868
|
+
|
|
869
|
+
**Scripts:**
|
|
870
|
+
|
|
871
|
+
| Script | Purpose |
|
|
872
|
+
| ------ | ------- |
|
|
873
|
+
| `scripts/seo_checker.py` | *[See script for details]* |
|
|
874
|
+
|
|
875
|
+
---
|
|
876
|
+
|
|
877
|
+
### Server Management
|
|
878
|
+
|
|
879
|
+
| Property | Value |
|
|
880
|
+
| -------- | ----- |
|
|
881
|
+
| **Name** | `server-management` |
|
|
882
|
+
| **Location** | `skills/server-management/` |
|
|
883
|
+
| **Type** | Standalone |
|
|
884
|
+
|
|
885
|
+
**Description:** Server management principles and decision-making. Process management, monitoring strategy, and scaling decisions. Teaches thinking, not commands.
|
|
886
|
+
|
|
887
|
+
---
|
|
888
|
+
|
|
889
|
+
### Stitch Loop
|
|
890
|
+
|
|
891
|
+
| Property | Value |
|
|
892
|
+
| -------- | ----- |
|
|
893
|
+
| **Name** | `stitch-loop` |
|
|
894
|
+
| **Location** | `skills/stitch-loop/` |
|
|
895
|
+
| **Type** | Standalone |
|
|
896
|
+
|
|
897
|
+
**Description:** Teaches agents to iteratively build websites using Stitch with an autonomous baton-passing loop pattern
|
|
898
|
+
|
|
899
|
+
---
|
|
900
|
+
|
|
901
|
+
### Systematic Debugging
|
|
902
|
+
|
|
903
|
+
| Property | Value |
|
|
904
|
+
| -------- | ----- |
|
|
905
|
+
| **Name** | `systematic-debugging` |
|
|
906
|
+
| **Location** | `skills/systematic-debugging/` |
|
|
907
|
+
| **Type** | Standalone |
|
|
908
|
+
|
|
909
|
+
**Description:** 4-phase systematic debugging methodology with root cause analysis and evidence-based verification. Use when debugging complex issues.
|
|
910
|
+
|
|
911
|
+
---
|
|
912
|
+
|
|
913
|
+
### Tailwind Patterns
|
|
914
|
+
|
|
915
|
+
| Property | Value |
|
|
916
|
+
| -------- | ----- |
|
|
917
|
+
| **Name** | `tailwind-patterns` |
|
|
918
|
+
| **Location** | `skills/tailwind-patterns/` |
|
|
919
|
+
| **Type** | Standalone |
|
|
920
|
+
|
|
921
|
+
**Description:** Tailwind CSS v4 principles. CSS-first configuration, container queries, modern patterns, design token architecture.
|
|
922
|
+
|
|
923
|
+
---
|
|
924
|
+
|
|
925
|
+
### Tdd Workflow
|
|
926
|
+
|
|
927
|
+
| Property | Value |
|
|
928
|
+
| -------- | ----- |
|
|
929
|
+
| **Name** | `tdd-workflow` |
|
|
930
|
+
| **Location** | `skills/tdd-workflow/` |
|
|
931
|
+
| **Type** | Standalone |
|
|
932
|
+
|
|
933
|
+
**Description:** Test-Driven Development workflow principles. RED-GREEN-REFACTOR cycle.
|
|
934
|
+
|
|
935
|
+
---
|
|
936
|
+
|
|
937
|
+
### Testing Patterns
|
|
938
|
+
|
|
939
|
+
| Property | Value |
|
|
940
|
+
| -------- | ----- |
|
|
941
|
+
| **Name** | `testing-patterns` |
|
|
942
|
+
| **Location** | `skills/testing-patterns/` |
|
|
943
|
+
| **Type** | Standalone |
|
|
944
|
+
|
|
945
|
+
**Description:** Testing patterns and principles. Unit, integration, mocking strategies.
|
|
946
|
+
|
|
947
|
+
**Scripts:**
|
|
948
|
+
|
|
949
|
+
| Script | Purpose |
|
|
950
|
+
| ------ | ------- |
|
|
951
|
+
| `scripts/test_runner.py` | *[See script for details]* |
|
|
952
|
+
|
|
953
|
+
---
|
|
954
|
+
|
|
955
|
+
### Victoriametrics
|
|
956
|
+
|
|
957
|
+
| Property | Value |
|
|
958
|
+
| -------- | ----- |
|
|
959
|
+
| **Name** | `victoriametrics` |
|
|
960
|
+
| **Location** | `skills/victoriametrics/` |
|
|
961
|
+
| **Type** | Standalone |
|
|
962
|
+
|
|
963
|
+
**Description:** VictoriaMetrics time-series database specialist covering deployment (bare metal, Docker, EKS/Kubernetes), cluster architecture (vminsert/vmselect/vmstorage), vmagent configuration, performance optimization, capacity planning, troubleshooting, monitoring, and Prometheus migration/compatibility. Use for any task involving: (1) Installing or upgrading VictoriaMetrics (single-node or cluster), (2) vmagent scraping and remote write configuration, (3) Capacity planning and resource optimization, (4) Prometheus to VictoriaMetrics migration with vmctl, (5) High availability and replication setup, (6) Kubernetes/EKS deployments with Helm or Operator, (7) MetricsQL queries and optimization, (8) Troubleshooting performance issues.
|
|
964
|
+
|
|
965
|
+
**References:**
|
|
966
|
+
- `references/kubernetes.md`
|
|
967
|
+
- `references/prometheus_migration.md`
|
|
968
|
+
- `references/troubleshooting.md`
|
|
969
|
+
|
|
970
|
+
---
|
|
971
|
+
|
|
972
|
+
### Vulnerability Scanner
|
|
973
|
+
|
|
974
|
+
| Property | Value |
|
|
975
|
+
| -------- | ----- |
|
|
976
|
+
| **Name** | `vulnerability-scanner` |
|
|
977
|
+
| **Location** | `skills/vulnerability-scanner/` |
|
|
978
|
+
| **Type** | Standalone |
|
|
979
|
+
|
|
980
|
+
**Description:** Advanced vulnerability analysis principles. OWASP 2025, Supply Chain Security, attack surface mapping, risk prioritization.
|
|
981
|
+
|
|
982
|
+
**Scripts:**
|
|
983
|
+
|
|
984
|
+
| Script | Purpose |
|
|
985
|
+
| ------ | ------- |
|
|
986
|
+
| `scripts/security_scan.py` | *[See script for details]* |
|
|
987
|
+
|
|
988
|
+
---
|
|
989
|
+
|
|
990
|
+
### Webapp Testing
|
|
991
|
+
|
|
992
|
+
| Property | Value |
|
|
993
|
+
| -------- | ----- |
|
|
994
|
+
| **Name** | `webapp-testing` |
|
|
995
|
+
| **Location** | `skills/webapp-testing/` |
|
|
996
|
+
| **Type** | Standalone |
|
|
997
|
+
|
|
998
|
+
**Description:** Web application testing principles. E2E, Playwright, deep audit strategies.
|
|
999
|
+
|
|
1000
|
+
**Scripts:**
|
|
1001
|
+
|
|
1002
|
+
| Script | Purpose |
|
|
1003
|
+
| ------ | ------- |
|
|
1004
|
+
| `scripts/playwright_runner.py` | *[See script for details]* |
|
|
1005
|
+
|
|
1006
|
+
---
|
|
1007
|
+
|
|
1008
|
+
### Webcrawler
|
|
1009
|
+
|
|
1010
|
+
| Property | Value |
|
|
1011
|
+
| -------- | ----- |
|
|
1012
|
+
| **Name** | `webcrawler` |
|
|
1013
|
+
| **Location** | `skills/webcrawler/` |
|
|
1014
|
+
| **Type** | Standalone |
|
|
1015
|
+
|
|
1016
|
+
**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."
|
|
1017
|
+
|
|
1018
|
+
**Scripts:**
|
|
1019
|
+
|
|
1020
|
+
| Script | Purpose |
|
|
1021
|
+
| ------ | ------- |
|
|
1022
|
+
| `scripts/crawl_docs.py` | *[See script for details]* |
|
|
1023
|
+
| `scripts/extract_page.py` | *[See script for details]* |
|
|
1024
|
+
| `scripts/filter_docs.py` | *[See script for details]* |
|
|
1025
|
+
|
|
1026
|
+
**References:**
|
|
1027
|
+
- `references/advanced_crawling.md`
|
|
1028
|
+
|
|
1029
|
+
---
|
|
1030
|
+
## Using Skills
|
|
1031
|
+
|
|
1032
|
+
Skills are automatically triggered based on the user's request matching the skill description. You can also explicitly invoke a skill:
|
|
1033
|
+
|
|
1034
|
+
```
|
|
1035
|
+
"Use the <skill-name> skill to <task>"
|
|
1036
|
+
```
|
|
1037
|
+
|
|
1038
|
+
---
|
|
1039
|
+
|
|
1040
|
+
## Creating New Skills
|
|
1041
|
+
|
|
1042
|
+
```bash
|
|
1043
|
+
# Initialize a new skill
|
|
1044
|
+
python skill-creator/scripts/init_skill.py my-new-skill --path skills/
|
|
1045
|
+
|
|
1046
|
+
# Package the skill
|
|
1047
|
+
python skill-creator/scripts/package_skill.py skills/my-new-skill
|
|
1048
|
+
```
|
|
1049
|
+
|
|
1050
|
+
For detailed guidance, see: `skill-creator/SKILL_skillcreator.md`
|
|
1051
|
+
|
|
1052
|
+
---
|
|
1053
|
+
|
|
1054
|
+
## Maintenance
|
|
1055
|
+
|
|
1056
|
+
### Updating This Catalog
|
|
1057
|
+
|
|
1058
|
+
**IMPORTANT:** This catalog must be updated whenever skills are created, modified, or deleted.
|
|
1059
|
+
|
|
1060
|
+
```bash
|
|
1061
|
+
python skill-creator/scripts/update_catalog.py --skills-dir skills/
|
|
1062
|
+
```
|
|
1063
|
+
|
|
1064
|
+
---
|
|
1065
|
+
|
|
1066
|
+
*This catalog is part of the [3-Layer Architecture](../AGENTS.md) for reliable AI agent operations.*
|