From 9c475f137b533825f979e792f7095d60a404925d Mon Sep 17 00:00:00 2001 From: root Date: Sat, 14 Feb 2026 13:12:50 +0000 Subject: [PATCH] Add awesome-skills plugin: 856+ skill router via antigravity-awesome-skills 9 category-based router skills (architecture, business, data-ai, development, general, infrastructure, security, testing, workflow) that auto-invoke on matching keywords and route to the appropriate antigravity skill file. Includes generate-indexes.py script to regenerate category indexes from catalog.json when the antigravity repo updates. Co-Authored-By: Claude Opus 4.6 --- .claude-plugin/marketplace.json | 9 + awesome-skills/.claude-plugin/plugin.json | 8 + awesome-skills/README.md | 42 ++++ awesome-skills/scripts/generate-indexes.py | 207 ++++++++++++++++++ awesome-skills/skills/architecture/SKILL.md | 91 ++++++++ awesome-skills/skills/business/SKILL.md | 65 ++++++ awesome-skills/skills/data-ai/SKILL.md | 186 ++++++++++++++++ awesome-skills/skills/development/SKILL.md | 154 +++++++++++++ awesome-skills/skills/general/SKILL.md | 162 ++++++++++++++ awesome-skills/skills/infrastructure/SKILL.md | 129 +++++++++++ awesome-skills/skills/security/SKILL.md | 153 +++++++++++++ awesome-skills/skills/testing/SKILL.md | 51 +++++ awesome-skills/skills/workflow/SKILL.md | 108 +++++++++ 13 files changed, 1365 insertions(+) create mode 100644 awesome-skills/.claude-plugin/plugin.json create mode 100644 awesome-skills/README.md create mode 100644 awesome-skills/scripts/generate-indexes.py create mode 100644 awesome-skills/skills/architecture/SKILL.md create mode 100644 awesome-skills/skills/business/SKILL.md create mode 100644 awesome-skills/skills/data-ai/SKILL.md create mode 100644 awesome-skills/skills/development/SKILL.md create mode 100644 awesome-skills/skills/general/SKILL.md create mode 100644 awesome-skills/skills/infrastructure/SKILL.md create mode 100644 awesome-skills/skills/security/SKILL.md create mode 100644 awesome-skills/skills/testing/SKILL.md create mode 100644 awesome-skills/skills/workflow/SKILL.md diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 2e49e1b..4d63a32 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -25,6 +25,15 @@ "author": { "name": "ki-brain" } + }, + { + "name": "awesome-skills", + "source": "./awesome-skills", + "description": "856+ expert skills router for architecture, development, AI, security, testing, infrastructure, business, and workflow (powered by antigravity-awesome-skills)", + "version": "1.0.0", + "author": { + "name": "ki-brain" + } } ] } diff --git a/awesome-skills/.claude-plugin/plugin.json b/awesome-skills/.claude-plugin/plugin.json new file mode 100644 index 0000000..0329cfc --- /dev/null +++ b/awesome-skills/.claude-plugin/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "awesome-skills", + "description": "856+ expert skills router for architecture, development, AI, security, testing, infrastructure, business, and workflow automation. Powered by antigravity-awesome-skills.", + "version": "1.0.0", + "author": { + "name": "ki-brain" + } +} diff --git a/awesome-skills/README.md b/awesome-skills/README.md new file mode 100644 index 0000000..633a565 --- /dev/null +++ b/awesome-skills/README.md @@ -0,0 +1,42 @@ +# Awesome Skills Plugin for Claude Code + +Routes to 856+ specialized skills from [antigravity-awesome-skills](https://github.com/sickn33/antigravity-awesome-skills) via 9 category-based router skills. + +## Prerequisites + +Clone the skills repository: +```bash +git clone https://github.com/sickn33/antigravity-awesome-skills.git /home/n8n/plugins/antigravity-awesome-skills +``` + +## Skills (Categories) + +| Skill | Invocation | Skills Count | +|-------|-----------|-------------| +| **Architecture** | `/awesome-skills:architecture` | 64 | +| **Business** | `/awesome-skills:business` | 38 | +| **Data & AI** | `/awesome-skills:data-ai` | 159 | +| **Development** | `/awesome-skills:development` | 127 | +| **General** | `/awesome-skills:general` | 135 | +| **Infrastructure** | `/awesome-skills:infrastructure` | 102 | +| **Security** | `/awesome-skills:security` | 126 | +| **Testing** | `/awesome-skills:testing` | 24 | +| **Workflow** | `/awesome-skills:workflow` | 81 | + +## Auto-Invocation + +Skills are automatically loaded when your query matches category keywords. No manual invocation needed. + +## Updating Skills Index + +After pulling updates from the antigravity repo: +```bash +python3 /home/n8n/plugins/claude-plugins/awesome-skills/scripts/generate-indexes.py +``` + +## Installation + +```bash +/plugin marketplace add /home/n8n/plugins/claude-plugins +/plugin install awesome-skills@ki-brain-plugins +``` diff --git a/awesome-skills/scripts/generate-indexes.py b/awesome-skills/scripts/generate-indexes.py new file mode 100644 index 0000000..8e1041c --- /dev/null +++ b/awesome-skills/scripts/generate-indexes.py @@ -0,0 +1,207 @@ +#!/usr/bin/env python3 +""" +Generates 9 category-based SKILL.md files from antigravity-awesome-skills catalog.json. + +Usage: + python3 generate-indexes.py [--catalog PATH] [--output DIR] + +Defaults: + --catalog /home/n8n/plugins/antigravity-awesome-skills/data/catalog.json + --output /home/n8n/plugins/claude-plugins/awesome-skills/skills/ +""" + +import json +import os +import sys +import argparse + +# Category descriptions for auto-invocation (these are the keywords Claude Code matches against) +CATEGORY_DESCRIPTIONS = { + "architecture": ( + "Software architecture patterns, system design, microservices, event sourcing, " + "DDD, domain-driven design, CQRS, C4 diagrams, API design principles, monorepo, " + "hexagonal architecture, clean architecture, ADR, architectural decision records, " + "distributed systems, modular design, design patterns, scalability, code refactoring, " + "Angular, component architecture, state management. " + "Use when designing systems, reviewing architecture, planning infrastructure patterns, " + "refactoring codebases, or choosing architectural approaches." + ), + "business": ( + "Business strategy, competitive analysis, pricing models, conversion rate optimization, " + "SEO, search engine optimization, content marketing, copywriting, growth hacking, " + "product management, A/B testing setup, customer journey mapping, marketplace strategy, " + "retention analysis, user onboarding, go-to-market, HR operations, sales automation. " + "Use when analyzing business metrics, planning marketing, optimizing conversions, " + "writing copy, or developing product strategy." + ), + "data-ai": ( + "AI engineering, machine learning, LLM applications, RAG pipelines, retrieval augmented generation, " + "vector search, embeddings, AI agent frameworks, CrewAI, autonomous agents, data pipelines, " + "NLP, natural language processing, computer vision, fine-tuning, MLOps, data analytics, " + "prompt engineering, Azure AI, OpenAI SDK, voice agents, data scientist, data engineer, " + "model evaluation, observability, AI safety. " + "Use when building AI applications, designing ML pipelines, implementing RAG, " + "working with LLMs, or engineering data systems." + ), + "development": ( + "Software development, React, Vue, Angular, Svelte, Next.js, Python, TypeScript, JavaScript, " + "Rust, Go, Golang, Java, C#, C++, Ruby, PHP, Elixir, Haskell, Kotlin, Swift, " + "API development, REST, GraphQL, WebSocket, full-stack, mobile development, " + "NestJS, FastAPI, Django, Express, database patterns, authentication, design systems, " + "Tailwind CSS, Radix UI, state management, game development, Godot, Unreal Engine, " + "3D web, Three.js, cross-platform, Electron, Tauri. " + "Use when writing code, building applications, choosing frameworks, " + "implementing features, or debugging development issues." + ), + "general": ( + "Technical writing, documentation, creative writing, brainstorming, decision frameworks, " + "communication strategy, knowledge management, leadership coaching, feedback systems, " + "career development, learning paths, prompt engineering, tool design, productivity, " + "project planning, research methodology, writing style guides, presentation design, " + "information architecture, taxonomy, content strategy. " + "Use when brainstorming ideas, writing documentation, planning projects, " + "designing communication strategies, or organizing knowledge." + ), + "infrastructure": ( + "DevOps, CI/CD, continuous integration, Docker, Kubernetes, K8s, Terraform, " + "AWS, Amazon Web Services, Azure cloud, GCP, Google Cloud, monitoring, Grafana, Prometheus, " + "load balancing, infrastructure as code, IaC, serverless, Lambda, database migration, " + "Linux administration, networking, DNS, observability, logging, Helm, ArgoCD, " + "GitOps, service mesh, Istio, cloud security, cost optimization. " + "Use when setting up infrastructure, configuring CI/CD, deploying services, " + "managing containers, or optimizing cloud resources." + ), + "security": ( + "Application security, penetration testing, ethical hacking, OWASP, " + "authentication patterns, OAuth2, JWT, encryption, TLS, " + "compliance, GDPR, HIPAA, SOC2, PCI-DSS, secrets management, " + "web application security, supply chain security, vulnerability assessment, " + "code audit, binary analysis, malware analysis, threat modeling, " + "API security, network security, cloud security, incident response, forensics. " + "Use when securing applications, performing security audits, " + "implementing authentication, or assessing vulnerabilities." + ), + "testing": ( + "Testing strategies, test-driven development, TDD, end-to-end testing, E2E, " + "Playwright, Cypress, Jest, unit testing, integration testing, load testing, " + "chaos engineering, API testing, visual regression testing, accessibility testing, " + "snapshot testing, test data management, QA automation, mutation testing, " + "contract testing, performance testing, test architecture, mocking, fixtures. " + "Use when writing tests, designing test strategies, setting up test frameworks, " + "or implementing quality assurance workflows." + ), + "workflow": ( + "Workflow automation, agile ceremonies, sprint planning, incident response playbooks, " + "change management, continuous delivery practices, documentation workflows, " + "async communication, onboarding processes, metrics and KPIs, meeting facilitation, " + "retrospectives, kanban, release management, runbooks, post-mortems, " + "team collaboration, code review processes, deployment checklists. " + "Use when designing workflows, planning agile processes, creating runbooks, " + "managing incidents, or optimizing team collaboration." + ), +} + +SKILL_TEMPLATE = """--- +name: awesome-{category} +description: {description} +--- + +# {title} Skills Router + +Routes to {count} specialized {title_lower} skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{{id}}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{{id}}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{{id}}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +{index_rows} +""" + + +def truncate_description(desc, max_len=80): + """Extract first sentence or truncate.""" + # Remove "Use when:" suffix + if "Use when:" in desc: + desc = desc[:desc.index("Use when:")].strip().rstrip(".") + # Take first sentence + for sep in [". ", ".\n"]: + if sep in desc: + desc = desc[:desc.index(sep)] + break + if len(desc) > max_len: + desc = desc[:max_len-3] + "..." + return desc + + +def main(): + parser = argparse.ArgumentParser(description="Generate category SKILL.md indexes") + parser.add_argument("--catalog", default="/home/n8n/plugins/antigravity-awesome-skills/data/catalog.json") + parser.add_argument("--output", default="/home/n8n/plugins/claude-plugins/awesome-skills/skills") + args = parser.parse_args() + + if not os.path.exists(args.catalog): + print(f"ERROR: catalog.json not found at {args.catalog}") + print("Clone the repo first: git clone https://github.com/sickn33/antigravity-awesome-skills.git") + sys.exit(1) + + with open(args.catalog) as f: + data = json.load(f) + + # Group by category + categories = {} + for skill in data["skills"]: + cat = skill.get("category", "uncategorized") + if cat == "uncategorized": + continue + categories.setdefault(cat, []).append(skill) + + # Generate SKILL.md per category + for cat, skills in sorted(categories.items()): + if cat not in CATEGORY_DESCRIPTIONS: + print(f"WARNING: No description for category '{cat}', skipping") + continue + + skills.sort(key=lambda s: s["id"]) + + index_rows = [] + for s in skills: + short_desc = truncate_description(s.get("description", s["id"])) + index_rows.append(f"| `{s['id']}` | {short_desc} |") + + title = cat.replace("-", " & ").title() + content = SKILL_TEMPLATE.format( + category=cat, + description=CATEGORY_DESCRIPTIONS[cat], + title=title, + title_lower=title.lower(), + count=len(skills), + index_rows="\n".join(index_rows), + ) + + out_dir = os.path.join(args.output, cat) + os.makedirs(out_dir, exist_ok=True) + out_path = os.path.join(out_dir, "SKILL.md") + with open(out_path, "w") as f: + f.write(content) + + print(f" {cat}: {len(skills)} skills -> {out_path}") + + print(f"\nDone! Generated {len(categories)} category indexes.") + + +if __name__ == "__main__": + main() diff --git a/awesome-skills/skills/architecture/SKILL.md b/awesome-skills/skills/architecture/SKILL.md new file mode 100644 index 0000000..f69f71e --- /dev/null +++ b/awesome-skills/skills/architecture/SKILL.md @@ -0,0 +1,91 @@ +--- +name: awesome-architecture +description: Software architecture patterns, system design, microservices, event sourcing, DDD, domain-driven design, CQRS, C4 diagrams, API design principles, monorepo, hexagonal architecture, clean architecture, ADR, architectural decision records, distributed systems, modular design, design patterns, scalability, code refactoring, Angular, component architecture, state management. Use when designing systems, reviewing architecture, planning infrastructure patterns, refactoring codebases, or choosing architectural approaches. +--- + +# Architecture Skills Router + +Routes to 64 specialized architecture skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `angular` | Modern Angular (v20+) expert with deep knowledge of Signals, Standalone Compo... | +| `angular-state-management` | Master modern Angular state management with Signals, NgRx, and RxJS | +| `architect-review` | Master software architect specializing in modern architecture patterns, clean... | +| `architecture` | Architectural decision-making framework | +| `architecture-decision-records` | Write and maintain Architecture Decision Records (ADRs) following best practi... | +| `automate-whatsapp` | Build WhatsApp automations with Kapso workflows: configure WhatsApp triggers,... | +| `avalonia-viewmodels-zafiro` | Optimal ViewModel and Wizard creation patterns for Avalonia using Zafiro and ... | +| `bash-linux` | Bash/Linux terminal patterns | +| `binary-analysis-patterns` | Master binary analysis patterns including disassembly, decompilation, control... | +| `brainstorming` | Use this skill before any creative or constructive work (features, components... | +| `browser-extension-builder` | Expert in building browser extensions that solve real problems - Chrome, Fire... | +| `c4-architecture-c4-architecture` | Generate comprehensive C4 architecture documentation for an existing reposito... | +| `c4-code` | Expert C4 Code-level documentation specialist | +| `c4-component` | Expert C4 Component-level documentation specialist | +| `c4-context` | Expert C4 Context-level documentation specialist | +| `calendly-automation` | Automate Calendly scheduling, event management, invitee tracking, availabilit... | +| `code-refactoring-refactor-clean` | You are a code refactoring expert specializing in clean code principles, SOLI... | +| `codebase-cleanup-refactor-clean` | You are a code refactoring expert specializing in clean code principles, SOLI... | +| `competitor-alternatives` | When the user wants to create competitor comparison or alternative pages for ... | +| `context-degradation` | Recognize patterns of context failure: lost-in-middle, poisoning, distraction... | +| `core-components` | Core component library and design system patterns | +| `cpp-pro` | Write idiomatic C++ code with modern features, RAII, smart pointers, and STL ... | +| `cqrs-implementation` | Implement Command Query Responsibility Segregation for scalable architectures | +| `doc-coauthoring` | Guide users through a structured workflow for co-authoring documentation | +| `docs-architect` | Creates comprehensive technical documentation from existing codebases | +| `elixir-pro` | Write idiomatic Elixir code with OTP patterns, supervision trees, and Phoenix... | +| `email-systems` | Email has the highest ROI of any marketing channel | +| `error-detective` | Search logs and codebases for error patterns, stack traces, and anomalies | +| `error-handling-patterns` | Master error handling patterns across languages including exceptions, Result ... | +| `event-sourcing-architect` | Expert in event sourcing, CQRS, and event-driven architecture patterns | +| `event-store-design` | Design and implement event stores for event-sourced systems | +| `game-development/multiplayer` | Multiplayer game development principles | +| `godot-gdscript-patterns` | Master Godot 4 GDScript patterns including signals, scenes, state machines, a... | +| `haskell-pro` | Expert Haskell engineer specializing in advanced type systems, pure functiona... | +| `i18n-localization` | Internationalization and localization patterns | +| `inngest` | Inngest expert for serverless-first background jobs, event-driven workflows, ... | +| `julia-pro` | Master Julia 1.10+ with modern features, performance optimization, multiple d... | +| `minecraft-bukkit-pro` | Master Minecraft server plugin development with Bukkit, Spigot, and Paper APIs | +| `monorepo-architect` | Expert in monorepo architecture, build systems, and dependency management at ... | +| `multi-agent-patterns` | Master orchestrator, peer-to-peer, and hierarchical multi-agent architectures | +| `n8n-mcp-tools-expert` | Expert guide for using n8n-mcp MCP tools effectively | +| `nestjs-expert` | Nest.js framework expert specializing in module architecture, dependency inje... | +| `nx-workspace-patterns` | Configure and optimize Nx monorepo workspaces | +| `on-call-handoff-patterns` | Master on-call shift handoffs with context transfer, escalation procedures, a... | +| `parallel-agents` | Multi-agent orchestration patterns | +| `powershell-windows` | PowerShell Windows patterns | +| `production-code-audit` | Autonomously deep-scan entire codebase line-by-line, understand architecture ... | +| `projection-patterns` | Build read models and projections from event streams | +| `prompt-engineering` | Expert guide on prompt engineering patterns, best practices, and optimization... | +| `radix-ui-design-system` | Build accessible design systems with Radix UI primitives | +| `saga-orchestration` | Implement saga patterns for distributed transactions and cross-aggregate work... | +| `salesforce-development` | Expert patterns for Salesforce platform development including Lightning Web C... | +| `skill-developer` | Create and manage Claude Code skills following Anthropic best practices | +| `software-architecture` | Guide for quality focused software architecture | +| `tailwind-design-system` | Build scalable design systems with Tailwind CSS, design tokens, component lib... | +| `tailwind-patterns` | Tailwind CSS v4 principles | +| `testing-patterns` | Jest testing patterns, factory functions, mocking strategies, and TDD workflow | +| `tool-design` | Build tools that agents can use effectively, including architectural reductio... | +| `unreal-engine-cpp-pro` | Expert guide for Unreal Engine 5.x C++ development, covering UObject hygiene,... | +| `wcag-audit-patterns` | Conduct WCAG 2.2 accessibility audits with automated testing, manual verifica... | +| `wiki-architect` | Analyzes code repositories and generates hierarchical documentation structure... | +| `workflow-orchestration-patterns` | Design durable workflows with Temporal for distributed systems | +| `workflow-patterns` | Use this skill when implementing tasks according to Conductor's TDD workflow,... | +| `zapier-make-patterns` | No-code automation democratizes workflow building | diff --git a/awesome-skills/skills/business/SKILL.md b/awesome-skills/skills/business/SKILL.md new file mode 100644 index 0000000..404e3e7 --- /dev/null +++ b/awesome-skills/skills/business/SKILL.md @@ -0,0 +1,65 @@ +--- +name: awesome-business +description: Business strategy, competitive analysis, pricing models, conversion rate optimization, SEO, search engine optimization, content marketing, copywriting, growth hacking, product management, A/B testing setup, customer journey mapping, marketplace strategy, retention analysis, user onboarding, go-to-market, HR operations, sales automation. Use when analyzing business metrics, planning marketing, optimizing conversions, writing copy, or developing product strategy. +--- + +# Business Skills Router + +Routes to 38 specialized business skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `competitive-landscape` | This skill should be used when the user asks to "analyze competitors", "asses... | +| `conductor-setup` | Initialize project with Conductor artifacts (product definition, tech stack, ... | +| `content-creator` | Create SEO-optimized marketing content with consistent brand voice | +| `context-driven-development` | Use this skill when working with Conductor's context-driven development metho... | +| `copy-editing` | When the user wants to edit, review, or improve existing marketing copy | +| `copywriting` | Use this skill when writing, rewriting, or improving marketing copy for any p... | +| `deep-research` | Execute autonomous multi-step research using Google Gemini Deep Research Agent | +| `defi-protocol-templates` | Implement DeFi protocols with production-ready templates for staking, AMMs, g... | +| `employment-contract-templates` | Create employment contracts, offer letters, and HR policy documents following... | +| `framework-migration-legacy-modernize` | Orchestrate a comprehensive legacy system modernization using the strangler f... | +| `free-tool-strategy` | When the user wants to plan, evaluate, or build a free tool for marketing pur... | +| `hr-pro` | Professional, ethical HR partner for hiring, onboarding/offboarding, PTO and ... | +| `market-sizing-analysis` | This skill should be used when the user asks to "calculate TAM", "determine S... | +| `marketing-ideas` | Provide proven marketing strategies and growth ideas for SaaS and software pr... | +| `marketing-psychology` | Apply behavioral science and mental models to marketing decisions, prioritize... | +| `notion-template-business` | Expert in building and selling Notion templates as a business - not just maki... | +| `page-cro` | Analyze and optimize individual pages for conversion performance | +| `paywall-upgrade-cro` | When the user wants to create or optimize in-app paywalls, upgrade screens, u... | +| `pricing-strategy` | Design pricing, packaging, and monetization strategies based on value, custom... | +| `sales-automator` | Draft cold emails, follow-ups, and proposal templates | +| `screenshots` | Generate marketing screenshots of your app using Playwright | +| `scroll-experience` | Expert in building immersive scroll-driven experiences - parallax storytellin... | +| `seo-cannibalization-detector` | Analyzes multiple provided pages to identify keyword overlap and potential ca... | +| `seo-content-auditor` | Analyzes provided content for quality, E-E-A-T signals, and SEO best practices | +| `seo-content-planner` | Creates comprehensive content outlines and topic clusters for SEO | +| `seo-content-refresher` | Identifies outdated elements in provided content and suggests updates to main... | +| `seo-content-writer` | Writes SEO-optimized content based on provided keywords and topic briefs | +| `seo-fundamentals` | Core principles of SEO including E-E-A-T, Core Web Vitals, technical foundati... | +| `seo-keyword-strategist` | Analyzes keyword usage in provided content, calculates density, suggests sema... | +| `seo-meta-optimizer` | Creates optimized meta titles, descriptions, and URL suggestions based on cha... | +| `seo-snippet-hunter` | Formats content to be eligible for featured snippets and SERP features | +| `seo-structure-architect` | Analyzes and optimizes content structure including header hierarchy, suggests... | +| `startup-business-analyst-business-case` | Generate comprehensive investor-ready business case document with market, sol... | +| `startup-business-analyst-financial-projections` | Create detailed 3-5 year financial model with revenue, costs, cash flow, and ... | +| `startup-business-analyst-market-opportunity` | Generate comprehensive market opportunity analysis with TAM/SAM/SOM calculations | +| `startup-financial-modeling` | This skill should be used when the user asks to "create financial projections... | +| `team-composition-analysis` | This skill should be used when the user asks to "plan team structure", "deter... | +| `whatsapp-automation` | Automate WhatsApp Business tasks via Rube MCP (Composio): send messages, mana... | diff --git a/awesome-skills/skills/data-ai/SKILL.md b/awesome-skills/skills/data-ai/SKILL.md new file mode 100644 index 0000000..f292f5f --- /dev/null +++ b/awesome-skills/skills/data-ai/SKILL.md @@ -0,0 +1,186 @@ +--- +name: awesome-data-ai +description: AI engineering, machine learning, LLM applications, RAG pipelines, retrieval augmented generation, vector search, embeddings, AI agent frameworks, CrewAI, autonomous agents, data pipelines, NLP, natural language processing, computer vision, fine-tuning, MLOps, data analytics, prompt engineering, Azure AI, OpenAI SDK, voice agents, data scientist, data engineer, model evaluation, observability, AI safety. Use when building AI applications, designing ML pipelines, implementing RAG, working with LLMs, or engineering data systems. +--- + +# Data & Ai Skills Router + +Routes to 159 specialized data & ai skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `agent-framework-azure-ai-py` | Build Azure AI Foundry agents using the Microsoft Agent Framework Python SDK ... | +| `agent-memory-mcp` | A hybrid memory system that provides persistent, searchable knowledge managem... | +| `agent-tool-builder` | Tools are how AI agents interact with the world | +| `agents-v2-py` | Build container-based Foundry Agents using Azure AI Projects SDK with ImageBa... | +| `ai-agents-architect` | Expert in designing and building autonomous AI agents | +| `ai-engineer` | Build production-ready LLM applications, advanced RAG systems, and intelligen... | +| `ai-wrapper-product` | Expert in building products that wrap AI APIs (OpenAI, Anthropic, etc.) into ... | +| `analytics-tracking` | Design, audit, and improve analytics tracking systems that produce reliable, ... | +| `angular-ui-patterns` | Modern Angular UI patterns for loading states, error handling, and data display | +| `api-documenter` | Master API documentation with OpenAPI 3.1, AI-powered tools, and modern devel... | +| `audio-transcriber` | Transform audio recordings into professional Markdown documentation with inte... | +| `autonomous-agent-patterns` | Design patterns for building autonomous coding agents | +| `autonomous-agents` | Autonomous agents are AI systems that can independently decompose goals, plan... | +| `azure-ai-agents-persistent-dotnet` | Azure AI Agents Persistent SDK for .NET | +| `azure-ai-agents-persistent-java` | Azure AI Agents Persistent SDK for Java | +| `azure-ai-contentsafety-java` | Build content moderation applications with Azure AI Content Safety SDK for Java | +| `azure-ai-contentsafety-py` | Azure AI Content Safety SDK for Python | +| `azure-ai-contentsafety-ts` | Analyze text and images for harmful content using Azure AI Content Safety (@a... | +| `azure-ai-contentunderstanding-py` | Azure AI Content Understanding SDK for Python | +| `azure-ai-document-intelligence-dotnet` | Azure AI Document Intelligence SDK for .NET | +| `azure-ai-document-intelligence-ts` | Extract text, tables, and structured data from documents using Azure Document... | +| `azure-ai-formrecognizer-java` | Build document analysis applications with Azure Document Intelligence (Form R... | +| `azure-ai-ml-py` | Azure Machine Learning SDK v2 for Python | +| `azure-ai-openai-dotnet` | Azure OpenAI SDK for .NET | +| `azure-ai-projects-dotnet` | Azure AI Projects SDK for .NET | +| `azure-ai-projects-java` | Azure AI Projects SDK for Java | +| `azure-ai-projects-py` | Build AI applications using the Azure AI Projects Python SDK (azure-ai-projects) | +| `azure-ai-projects-ts` | Build AI applications using Azure AI Projects SDK for JavaScript (@azure/ai-p... | +| `azure-ai-textanalytics-py` | Azure AI Text Analytics SDK for sentiment analysis, entity recognition, key p... | +| `azure-ai-transcription-py` | Azure AI Transcription SDK for Python | +| `azure-ai-translation-document-py` | Azure AI Document Translation SDK for batch translation of documents with for... | +| `azure-ai-translation-text-py` | Azure AI Text Translation SDK for real-time text translation, transliteration... | +| `azure-ai-translation-ts` | Build translation applications using Azure Translation SDKs for JavaScript (@... | +| `azure-ai-vision-imageanalysis-java` | Build image analysis applications with Azure AI Vision SDK for Java | +| `azure-ai-vision-imageanalysis-py` | Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people d... | +| `azure-ai-voicelive-dotnet` | Azure AI Voice Live SDK for .NET | +| `azure-ai-voicelive-java` | Azure AI VoiceLive SDK for Java | +| `azure-ai-voicelive-py` | Build real-time voice AI applications using Azure AI Voice Live SDK (azure-ai... | +| `azure-ai-voicelive-ts` | Azure AI Voice Live SDK for JavaScript/TypeScript | +| `azure-communication-callautomation-java` | Build call automation workflows with Azure Communication Services Call Automa... | +| `azure-cosmos-java` | Azure Cosmos DB SDK for Java | +| `azure-cosmos-py` | Azure Cosmos DB SDK for Python (NoSQL API) | +| `azure-cosmos-rust` | Azure Cosmos DB SDK for Rust (NoSQL API) | +| `azure-cosmos-ts` | Azure Cosmos DB JavaScript/TypeScript SDK (@azure/cosmos) for data plane oper... | +| `azure-data-tables-java` | Build table storage applications with Azure Tables SDK for Java | +| `azure-data-tables-py` | Azure Tables SDK for Python (Storage and Cosmos DB) | +| `azure-eventhub-dotnet` | Azure Event Hubs SDK for .NET | +| `azure-eventhub-java` | Build real-time streaming applications with Azure Event Hubs SDK for Java | +| `azure-eventhub-rust` | Azure Event Hubs SDK for Rust | +| `azure-eventhub-ts` | Build event streaming applications using Azure Event Hubs SDK for JavaScript ... | +| `azure-maps-search-dotnet` | Azure Maps SDK for .NET | +| `azure-monitor-ingestion-java` | Azure Monitor Ingestion SDK for Java | +| `azure-monitor-ingestion-py` | Azure Monitor Ingestion SDK for Python | +| `azure-monitor-query-java` | Azure Monitor Query SDK for Java | +| `azure-monitor-query-py` | Azure Monitor Query SDK for Python | +| `azure-postgres-ts` | Connect to Azure Database for PostgreSQL Flexible Server from Node.js/TypeScr... | +| `azure-resource-manager-cosmosdb-dotnet` | Azure Resource Manager SDK for Cosmos DB in .NET | +| `azure-resource-manager-mysql-dotnet` | Azure MySQL Flexible Server SDK for .NET | +| `azure-resource-manager-postgresql-dotnet` | Azure PostgreSQL Flexible Server SDK for .NET | +| `azure-resource-manager-redis-dotnet` | Azure Resource Manager SDK for Redis in .NET | +| `azure-resource-manager-sql-dotnet` | Azure Resource Manager SDK for Azure SQL in .NET | +| `azure-search-documents-dotnet` | Azure AI Search SDK for .NET (Azure.Search.Documents) | +| `azure-search-documents-py` | Azure AI Search SDK for Python | +| `azure-search-documents-ts` | Build search applications using Azure AI Search SDK for JavaScript (@azure/se... | +| `azure-storage-blob-java` | Build blob storage applications with Azure Storage Blob SDK for Java | +| `azure-storage-file-datalake-py` | Azure Data Lake Storage Gen2 SDK for Python | +| `beautiful-prose` | Hard-edged writing style contract for timeless, forceful English prose withou... | +| `behavioral-modes` | AI operational modes (brainstorm, implement, debug, review, teach, ship, orch... | +| `blockrun` | Use when user needs capabilities Claude lacks (image generation, real-time X/... | +| `browser-automation` | Browser automation powers web testing, scraping, and AI agent interactions | +| `business-analyst` | Master modern business analysis with AI-powered analytics, real-time dashboar... | +| `cc-skill-backend-patterns` | Backend architecture patterns, API design, database optimization, and server-... | +| `cc-skill-clickhouse-io` | ClickHouse database patterns, query optimization, analytics, and data enginee... | +| `clarity-gate` | Pre-ingestion verification for epistemic quality in RAG systems with 9-point ... | +| `code-documentation-doc-generate` | You are a documentation expert specializing in creating comprehensive, mainta... | +| `codex-review` | Professional code review with auto CHANGELOG generation, integrated with Code... | +| `content-marketer` | Elite content marketing strategist specializing in AI-powered content creatio... | +| `context-manager` | Elite AI context engineering specialist mastering dynamic context management,... | +| `context-window-management` | Strategies for managing LLM context windows including summarization, trimming... | +| `conversation-memory` | Persistent memory systems for LLM conversations including short-term, long-te... | +| `crewai` | Expert in CrewAI - the leading role-based multi-agent framework used by 60% o... | +| `customer-support` | Elite AI-powered customer support specialist mastering conversational AI, aut... | +| `data-engineering-data-driven-feature` | Build features guided by data insights, A/B testing, and continuous measureme... | +| `data-quality-frameworks` | Implement data quality validation with Great Expectations, dbt tests, and dat... | +| `data-scientist` | Expert data scientist for advanced analytics, machine learning, and statistic... | +| `data-storytelling` | Transform data into compelling narratives using visualization, context, and p... | +| `database-architect` | Expert database architect specializing in data layer design from scratch, tec... | +| `database-design` | Database design principles and decision-making | +| `dbt-transformation-patterns` | Master dbt (data build tool) for analytics engineering with model organizatio... | +| `documentation-generation-doc-generate` | You are a documentation expert specializing in creating comprehensive, mainta... | +| `documentation-templates` | Documentation templates and structure guidelines | +| `embedding-strategies` | Select and optimize embedding models for semantic search and RAG applications | +| `fal-audio` | Text-to-speech and speech-to-text using fal.ai audio models | +| `fal-generate` | Generate images and videos using fal.ai AI models | +| `fal-image-edit` | AI-powered image editing with style transfer and object removal | +| `fal-upscale` | Upscale and enhance image and video resolution using AI | +| `fal-workflow` | Generate workflow JSON files for chaining AI models | +| `fp-ts-react` | Practical patterns for using fp-ts with React - hooks, state, forms, data fet... | +| `frontend-dev-guidelines` | Opinionated frontend development standards for modern React + TypeScript appl... | +| `frontend-ui-dark-ts` | Build dark-themed React applications using Tailwind CSS with custom theming, ... | +| `geo-fundamentals` | Generative Engine Optimization for AI search engines (ChatGPT, Claude, Perple... | +| `google-analytics-automation` | Automate Google Analytics tasks via Rube MCP (Composio): run reports, list ac... | +| `googlesheets-automation` | Automate Google Sheets operations (read, write, format, filter, manage spread... | +| `graphql` | GraphQL gives clients exactly the data they need - no more, no less | +| `hosted-agents-v2-py` | Build hosted agents using Azure AI Projects SDK with ImageBasedHostedAgentDef... | +| `hybrid-search-implementation` | Combine vector and keyword search for improved retrieval | +| `ios-developer` | Develop native iOS applications with Swift/SwiftUI | +| `langchain-architecture` | Design LLM applications using the LangChain framework with agents, memory, an... | +| `langgraph` | Expert in LangGraph - the production-grade framework for building stateful, m... | +| `llm-application-dev-ai-assistant` | You are an AI assistant development expert specializing in creating intellige... | +| `llm-application-dev-langchain-agent` | You are an expert LangChain agent developer specializing in production-grade ... | +| `llm-application-dev-prompt-optimize` | You are an expert prompt engineer specializing in crafting effective prompts ... | +| `llm-evaluation` | Implement comprehensive evaluation strategies for LLM applications using auto... | +| `mailchimp-automation` | Automate Mailchimp email marketing including campaigns, audiences, subscriber... | +| `nanobanana-ppt-skills` | AI-powered PPT generation with document analysis and styled images | +| `neon-postgres` | Expert patterns for Neon serverless Postgres, branching, connection pooling, ... | +| `nextjs-app-router-patterns` | Master Next.js 14+ App Router with Server Components, streaming, parallel rou... | +| `nextjs-best-practices` | Next.js App Router principles | +| `nodejs-backend-patterns` | Build production-ready Node.js backend services with Express/Fastify, impleme... | +| `php-pro` | Write idiomatic PHP code with generators, iterators, SPL data structures, and... | +| `podcast-generation` | Generate AI-powered podcast-style audio narratives using Azure OpenAI's GPT R... | +| `postgres-best-practices` | Postgres performance optimization and best practices from Supabase | +| `postgresql` | Design a PostgreSQL-specific schema | +| `prisma-expert` | Prisma ORM expert for schema design, migrations, query optimization, relation... | +| `programmatic-seo` | Design and evaluate programmatic SEO strategies for creating SEO-driven pages... | +| `prompt-caching` | Caching strategies for LLM prompts including Anthropic prompt caching, respon... | +| `prompt-engineering-patterns` | Master advanced prompt engineering techniques to maximize LLM performance, re... | +| `pydantic-models-py` | Create Pydantic models following the multi-model pattern with Base, Create, U... | +| `rag-engineer` | Expert in building Retrieval-Augmented Generation systems | +| `rag-implementation` | Build Retrieval-Augmented Generation (RAG) systems for LLM applications with ... | +| `react-best-practices` | React and Next.js performance optimization guidelines from Vercel Engineering | +| `react-ui-patterns` | Modern React UI patterns for loading states, error handling, and data fetching | +| `scala-pro` | Master enterprise-grade Scala development with functional programming, distri... | +| `schema-markup` | Design, validate, and optimize schema.org structured data for eligibility, co... | +| `segment-cdp` | Expert patterns for Segment Customer Data Platform including Analytics.js, se... | +| `sendgrid-automation` | Automate SendGrid email operations including sending emails, managing contact... | +| `senior-architect` | Comprehensive software architecture skill for designing scalable, maintainabl... | +| `seo-audit` | Diagnose and audit SEO issues affecting crawlability, indexation, rankings, a... | +| `similarity-search-patterns` | Implement efficient similarity search with vector databases | +| `skill-creator-ms` | Guide for creating effective skills for AI coding agents working with Azure S... | +| `skill-seekers` | -Automatically convert documentation websites, GitHub repositories, and PDFs ... | +| `spark-optimization` | Optimize Apache Spark jobs with partitioning, caching, shuffle optimization, ... | +| `sql-optimization-patterns` | Master SQL query optimization, indexing strategies, and EXPLAIN analysis to d... | +| `sqlmap-database-pentesting` | This skill should be used when the user asks to "automate SQL injection testi... | +| `stitch-ui-design` | Expert guide for creating effective prompts for Google Stitch AI UI design tool | +| `supabase-automation` | Automate Supabase database queries, table management, project administration,... | +| `tdd-orchestrator` | Master TDD orchestrator specializing in red-green-refactor discipline, multi-... | +| `team-collaboration-standup-notes` | You are an expert team communication specialist focused on async-first standu... | +| `telegram-bot-builder` | Expert in building Telegram bots that solve real problems - from simple autom... | +| `trigger-dev` | Trigger.dev expert for background jobs, AI workflows, and reliable async exec... | +| `unity-ecs-patterns` | Master Unity ECS (Entity Component System) with DOTS, Jobs, and Burst for hig... | +| `vector-database-engineer` | Expert in vector databases, embedding strategies, and semantic search impleme... | +| `vector-index-tuning` | Optimize vector index performance for latency, recall, and memory | +| `vexor` | Vector-powered CLI for semantic file search with a Claude/Codex skill | +| `voice-ai-development` | Expert in building voice AI applications - from real-time voice agents to voi... | +| `voice-ai-engine-development` | Build real-time conversational AI voice engines using async worker pipelines,... | +| `web-artifacts-builder` | Suite of tools for creating elaborate, multi-component claude.ai HTML artifac... | +| `xlsx-official` | Comprehensive spreadsheet creation, editing, and analysis with support for fo... | +| `youtube-automation` | Automate YouTube tasks via Rube MCP (Composio): upload videos, manage playlis... | diff --git a/awesome-skills/skills/development/SKILL.md b/awesome-skills/skills/development/SKILL.md new file mode 100644 index 0000000..a5e9d70 --- /dev/null +++ b/awesome-skills/skills/development/SKILL.md @@ -0,0 +1,154 @@ +--- +name: awesome-development +description: Software development, React, Vue, Angular, Svelte, Next.js, Python, TypeScript, JavaScript, Rust, Go, Golang, Java, C#, C++, Ruby, PHP, Elixir, Haskell, Kotlin, Swift, API development, REST, GraphQL, WebSocket, full-stack, mobile development, NestJS, FastAPI, Django, Express, database patterns, authentication, design systems, Tailwind CSS, Radix UI, state management, game development, Godot, Unreal Engine, 3D web, Three.js, cross-platform, Electron, Tauri. Use when writing code, building applications, choosing frameworks, implementing features, or debugging development issues. +--- + +# Development Skills Router + +Routes to 127 specialized development skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `3d-web-experience` | Expert in building 3D experiences for the web - Three.js, React Three Fiber, ... | +| `algolia-search` | Expert patterns for Algolia search implementation, indexing strategies, React... | +| `api-design-principles` | Master REST and GraphQL API design principles to build intuitive, scalable, a... | +| `api-documentation-generator` | Generate comprehensive, developer-friendly API documentation from code, inclu... | +| `api-patterns` | API design principles and decision-making | +| `app-store-optimization` | Complete App Store Optimization (ASO) toolkit for researching, optimizing, an... | +| `architecture-patterns` | Implement proven backend architecture patterns including Clean Architecture, ... | +| `async-python-patterns` | Master Python asyncio, concurrent programming, and async/await patterns for h... | +| `azure-appconfiguration-java` | Azure App Configuration SDK for Java | +| `azure-appconfiguration-py` | Azure App Configuration SDK for Python | +| `azure-appconfiguration-ts` | Build applications using Azure App Configuration SDK for JavaScript (@azure/a... | +| `azure-communication-callingserver-java` | Azure Communication Services CallingServer (legacy) Java SDK | +| `azure-communication-chat-java` | Build real-time chat applications with Azure Communication Services Chat Java... | +| `azure-communication-common-java` | Azure Communication Services common utilities for Java | +| `azure-communication-sms-java` | Send SMS messages with Azure Communication Services SMS Java SDK | +| `azure-compute-batch-java` | Azure Batch SDK for Java | +| `azure-containerregistry-py` | Azure Container Registry SDK for Python | +| `azure-eventgrid-dotnet` | Azure Event Grid SDK for .NET | +| `azure-eventgrid-java` | Build event-driven applications with Azure Event Grid SDK for Java | +| `azure-eventgrid-py` | Azure Event Grid SDK for Python | +| `azure-eventhub-py` | Azure Event Hubs SDK for Python streaming | +| `azure-functions` | Expert patterns for Azure Functions development including isolated worker mod... | +| `azure-identity-rust` | Azure Identity SDK for Rust authentication | +| `azure-keyvault-certificates-rust` | Azure Key Vault Certificates SDK for Rust | +| `azure-keyvault-keys-rust` | Azure Key Vault Keys SDK for Rust | +| `azure-keyvault-keys-ts` | Manage cryptographic keys using Azure Key Vault Keys SDK for JavaScript (@azu... | +| `azure-messaging-webpubsub-java` | Build real-time web applications with Azure Web PubSub SDK for Java | +| `azure-mgmt-apicenter-dotnet` | Azure API Center SDK for .NET | +| `azure-mgmt-apicenter-py` | Azure API Center Management SDK for Python | +| `azure-mgmt-apimanagement-py` | Azure API Management SDK for Python | +| `azure-mgmt-fabric-dotnet` | Azure Resource Manager SDK for Fabric in .NET | +| `azure-mgmt-fabric-py` | Azure Fabric Management SDK for Python | +| `azure-mgmt-mongodbatlas-dotnet` | Manage MongoDB Atlas Organizations as Azure ARM resources using Azure.Resourc... | +| `azure-monitor-opentelemetry-exporter-py` | Azure Monitor OpenTelemetry Exporter for Python | +| `azure-monitor-opentelemetry-py` | Azure Monitor OpenTelemetry Distro for Python | +| `azure-resource-manager-durabletask-dotnet` | Azure Resource Manager SDK for Durable Task Scheduler in .NET | +| `azure-resource-manager-playwright-dotnet` | Azure Resource Manager SDK for Microsoft Playwright Testing in .NET | +| `azure-speech-to-text-rest-py` | Azure Speech to Text REST API for short audio (Python) | +| `azure-storage-blob-py` | Azure Blob Storage SDK for Python | +| `azure-storage-blob-rust` | Azure Blob Storage SDK for Rust | +| `azure-storage-blob-ts` | Azure Blob Storage JavaScript/TypeScript SDK (@azure/storage-blob) for blob o... | +| `azure-storage-file-share-ts` | Azure File Share JavaScript/TypeScript SDK (@azure/storage-file-share) for SM... | +| `azure-storage-queue-py` | Azure Queue Storage SDK for Python | +| `azure-storage-queue-ts` | Azure Queue Storage JavaScript/TypeScript SDK (@azure/storage-queue) for mess... | +| `azure-web-pubsub-ts` | Build real-time messaging applications using Azure Web PubSub SDKs for JavaSc... | +| `backend-dev-guidelines` | Opinionated backend development standards for Node.js + Express + TypeScript ... | +| `bullmq-specialist` | BullMQ expert for Redis-backed job queues, background processing, and reliabl... | +| `bun-development` | Modern JavaScript/TypeScript development with Bun runtime | +| `cc-skill-coding-standards` | Universal coding standards, best practices, and patterns for TypeScript, Java... | +| `cc-skill-frontend-patterns` | Frontend development patterns for React, Next.js, state management, performan... | +| `context7-auto-research` | Automatically fetch latest library/framework documentation for Claude Code vi... | +| `copilot-sdk` | Build applications powered by GitHub Copilot using the Copilot SDK | +| `csharp-pro` | Write modern C# code with advanced features like records, pattern matching, a... | +| `discord-bot-architect` | Specialized skill for building production-ready Discord bots | +| `dotnet-architect` | Expert .NET backend architect specializing in C#, ASP.NET Core, Entity Framew... | +| `dotnet-backend-patterns` | Master C#/.NET backend development patterns for building robust APIs, MCP ser... | +| `exa-search` | Semantic search, similar content discovery, and structured research using Exa... | +| `fastapi-pro` | Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2 | +| `fastapi-router-py` | Create FastAPI routers with CRUD operations, authentication dependencies, and... | +| `fastapi-templates` | Create production-ready FastAPI projects with async patterns, dependency inje... | +| `firecrawl-scraper` | Deep web scraping, screenshots, PDF parsing, and website crawling using Firec... | +| `fp-ts-errors` | Handle errors as values using fp-ts Either and TaskEither for cleaner, more p... | +| `fp-ts-pragmatic` | A practical, jargon-free guide to fp-ts functional programming - the 80/20 ap... | +| `frontend-design` | Create distinctive, production-grade frontend interfaces with intentional aes... | +| `frontend-developer` | Build React components, implement responsive layouts, and handle client-side ... | +| `frontend-mobile-development-component-scaffold` | You are a React component architecture expert specializing in scaffolding pro... | +| `frontend-slides` | Create stunning, animation-rich HTML presentations from scratch or by convert... | +| `game-development/mobile-games` | Mobile game development principles | +| `gemini-api-dev` | Use this skill when building applications with Gemini models, Gemini API, wor... | +| `go-concurrency-patterns` | Master Go concurrency with goroutines, channels, sync primitives, and context | +| `go-playwright` | Expert capability for robust, stealthy, and efficient browser automation usin... | +| `golang-pro` | Master Go 1.21+ with modern patterns, advanced concurrency, performance optim... | +| `hubspot-integration` | Expert patterns for HubSpot CRM integration including OAuth authentication, C... | +| `javascript-mastery` | Comprehensive JavaScript reference covering 33+ essential concepts every deve... | +| `javascript-pro` | Master modern JavaScript with ES6+, async patterns, and Node.js APIs | +| `javascript-testing-patterns` | Implement comprehensive testing strategies using Jest, Vitest, and Testing Li... | +| `javascript-typescript-typescript-scaffold` | You are a TypeScript project architecture expert specializing in scaffolding ... | +| `launch-strategy` | When the user wants to plan a product launch, feature announcement, or releas... | +| `m365-agents-ts` | Microsoft 365 Agents SDK for TypeScript/Node.js | +| `makepad-skills` | Makepad UI development skills for Rust apps: setup, patterns, shaders, packag... | +| `mcp-builder` | Guide for creating high-quality MCP (Model Context Protocol) servers that ena... | +| `mcp-builder-ms` | Guide for creating high-quality MCP (Model Context Protocol) servers that ena... | +| `memory-safety-patterns` | Implement memory-safe programming with RAII, ownership, smart pointers, and r... | +| `microsoft-azure-webjobs-extensions-authentication-events-dotnet` | Microsoft Entra Authentication Events SDK for .NET | +| `mobile-design` | Mobile-first design and engineering doctrine for iOS and Android apps | +| `mobile-developer` | Develop React Native, Flutter, or native mobile apps with modern architecture... | +| `modern-javascript-patterns` | Master ES6+ features including async/await, destructuring, spread operators, ... | +| `multi-platform-apps-multi-platform` | Build and deploy the same feature consistently across web, mobile, and deskto... | +| `n8n-code-python` | Write Python code in n8n Code nodes | +| `n8n-node-configuration` | Operation-aware node configuration guidance | +| `observe-whatsapp` | Observe and troubleshoot WhatsApp in Kapso: debug message delivery, inspect w... | +| `product-manager-toolkit` | Comprehensive toolkit for product managers including RICE prioritization, cus... | +| `python-development-python-scaffold` | You are a Python project architecture expert specializing in scaffolding prod... | +| `python-packaging` | Create distributable Python packages with proper project structure, setup.py/... | +| `python-patterns` | Python development principles and decision-making | +| `python-performance-optimization` | Profile and optimize Python code using cProfile, memory profilers, and perfor... | +| `python-pro` | Master Python 3.12+ with modern features, async programming, performance opti... | +| `python-testing-patterns` | Implement comprehensive testing strategies with pytest, fixtures, mocking, an... | +| `react-flow-node-ts` | Create React Flow node components with TypeScript types, handles, and Zustand... | +| `react-modernization` | Upgrade React applications to latest versions, migrate from class components ... | +| `react-native-architecture` | Build production React Native apps with Expo, navigation, native modules, off... | +| `react-patterns` | Modern React patterns and principles | +| `react-state-management` | Master modern React state management with Redux Toolkit, Zustand, Jotai, and ... | +| `reference-builder` | Creates exhaustive technical references and API documentation | +| `remotion-best-practices` | Best practices for Remotion - Video creation in React | +| `ruby-pro` | Write idiomatic Ruby code with metaprogramming, Rails patterns, and performan... | +| `rust-async-patterns` | Master Rust async programming with Tokio, async traits, error handling, and c... | +| `rust-pro` | Master Rust 1.75+ with modern async patterns, advanced type system features, ... | +| `senior-fullstack` | Comprehensive fullstack development skill for building complete web applicati... | +| `shodan-reconnaissance` | This skill should be used when the user asks to "search for exposed devices o... | +| `shopify-apps` | Expert patterns for Shopify app development including Remix/React Router apps... | +| `shopify-development` | Build Shopify apps, extensions, themes using GraphQL Admin API, Shopify CLI, ... | +| `slack-automation` | Automate Slack messaging, channel management, search, reactions, and threads ... | +| `slack-bot-builder` | Build Slack apps using the Bolt framework across Python, JavaScript, and Java | +| `swiftui-expert-skill` | Write, review, or improve SwiftUI code following best practices for state man... | +| `systems-programming-rust-project` | You are a Rust project architecture expert specializing in scaffolding produc... | +| `tavily-web` | Web search, content extraction, crawling, and research capabilities using Tav... | +| `telegram-mini-app` | Expert in building Telegram Mini Apps (TWA) - web apps that run inside Telegr... | +| `temporal-python-testing` | Test Temporal workflows with pytest, time-skipping, and mocking strategies | +| `typescript-advanced-types` | Master TypeScript's advanced type system including generics, conditional type... | +| `typescript-expert` | TypeScript and JavaScript expert with deep knowledge of type-level programmin... | +| `typescript-pro` | Master TypeScript with advanced types, generics, and strict type safety | +| `ui-ux-pro-max` | UI/UX design intelligence | +| `uv-package-manager` | Master the uv package manager for fast Python dependency management, virtual ... | +| `viral-generator-builder` | Expert in building shareable generator tools that go viral - name generators,... | +| `webapp-testing` | Toolkit for interacting with and testing local web applications using Playwright | +| `zustand-store-ts` | Create Zustand stores with TypeScript, subscribeWithSelector middleware, and ... | diff --git a/awesome-skills/skills/general/SKILL.md b/awesome-skills/skills/general/SKILL.md new file mode 100644 index 0000000..18d069f --- /dev/null +++ b/awesome-skills/skills/general/SKILL.md @@ -0,0 +1,162 @@ +--- +name: awesome-general +description: Technical writing, documentation, creative writing, brainstorming, decision frameworks, communication strategy, knowledge management, leadership coaching, feedback systems, career development, learning paths, prompt engineering, tool design, productivity, project planning, research methodology, writing style guides, presentation design, information architecture, taxonomy, content strategy. Use when brainstorming ideas, writing documentation, planning projects, designing communication strategies, or organizing knowledge. +--- + +# General Skills Router + +Routes to 135 specialized general skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `address-github-comments` | Use when you need to address review or issue comments on an open GitHub Pull ... | +| `agent-manager-skill` | Manage multiple local CLI agents via tmux sessions (start/stop/monitor/assign... | +| `algorithmic-art` | Creating algorithmic art using p5.js with seeded randomness and interactive p... | +| `angular-best-practices` | Angular performance optimization and best practices guide | +| `angular-migration` | Migrate from AngularJS to Angular using hybrid mode, incremental component re... | +| `anti-reversing-techniques` | Understand anti-reversing, obfuscation, and protection techniques encountered... | +| `app-builder` | Main application building orchestrator | +| `app-builder/templates` | Project scaffolding templates for new applications | +| `arm-cortex-expert` | Senior embedded software engineer specializing in firmware and driver develop... | +| `avalonia-layout-zafiro` | Guidelines for modern Avalonia UI layout using Zafiro.Avalonia, emphasizing s... | +| `avalonia-zafiro-development` | Mandatory skills, conventions, and behavioral rules for Avalonia UI developme... | +| `backtesting-frameworks` | Build robust backtesting systems for trading strategies with proper handling ... | +| `bazel-build-optimization` | Optimize Bazel builds for large-scale monorepos | +| `blockchain-developer` | Build production-ready Web3 applications, smart contracts, and decentralized ... | +| `brand-guidelines-anthropic` | Applies Anthropic's official brand colors and typography to any sort of artif... | +| `brand-guidelines-community` | Applies Anthropic's official brand colors and typography to any sort of artif... | +| `busybox-on-windows` | How to use a Win32 build of BusyBox to run many of the standard UNIX command ... | +| `c-pro` | Write efficient C code with proper memory management, pointer arithmetic, and... | +| `canvas-design` | Create beautiful visual art in .png and .pdf documents using design philosophy | +| `cc-skill-continuous-learning` | Development skill from everything-claude-code | +| `cc-skill-project-guidelines-example` | Project Guidelines Skill (Example) | +| `cc-skill-strategic-compact` | Development skill from everything-claude-code | +| `claude-ally-health` | A health assistant skill for medical information analysis, symptom tracking, ... | +| `claude-code-guide` | Master guide for using Claude Code effectively | +| `claude-scientific-skills` | Scientific research and analysis skills | +| `claude-speed-reader` | -Speed read Claude's responses at 600+ WPM using RSVP with Spritz-style ORP h... | +| `claude-win11-speckit-update-skill` | Windows 11 system management | +| `clean-code` | Applies principles from Robert C | +| `code-documentation-code-explain` | You are a code education expert specializing in explaining complex code throu... | +| `code-refactoring-context-restore` | Use when working with code refactoring context restore | +| `code-refactoring-tech-debt` | You are a technical debt expert specializing in identifying, quantifying, and... | +| `code-review-excellence` | Master effective code review practices to provide constructive feedback, catc... | +| `codebase-cleanup-tech-debt` | You are a technical debt expert specializing in identifying, quantifying, and... | +| `commit` | Create commit messages following Sentry conventions | +| `comprehensive-review-full-review` | Use when working with comprehensive review full review | +| `comprehensive-review-pr-enhance` | You are a PR optimization expert specializing in creating high-quality pull r... | +| `computer-vision-expert` | SOTA Computer Vision Expert (2026) | +| `concise-planning` | Use when a user asks for a plan for a coding task, to generate a clear, actio... | +| `context-compression` | Design and evaluate compression strategies for long-running sessions | +| `context-fundamentals` | Understand what context is, why it matters, and the anatomy of context in age... | +| `context-management-context-restore` | Use when working with context management context restore | +| `context-management-context-save` | Use when working with context management context save | +| `context-optimization` | Apply compaction, masking, and caching strategies | +| `create-pr` | Create pull requests following Sentry conventions | +| `culture-index` | Index and search culture documentation | +| `daily-news-report` | Scrapes content based on a preset URL list, filters high-quality technical in... | +| `debugging-strategies` | Master systematic debugging techniques, profiling tools, and root cause analy... | +| `debugging-toolkit-smart-debug` | Use when working with debugging toolkit smart debug | +| `design-md` | Analyze Stitch projects and synthesize a semantic design system into DESIGN.m... | +| `dispatching-parallel-agents` | Use when facing 2+ independent tasks that can be worked on without shared sta... | +| `docx-official` | Comprehensive document creation, editing, and analysis with support for track... | +| `dx-optimizer` | Developer Experience specialist | +| `environment-setup-guide` | Guide developers through setting up development environments with proper tool... | +| `error-debugging-multi-agent-review` | Use when working with error debugging multi agent review | +| `error-diagnostics-smart-debug` | Use when working with error diagnostics smart debug | +| `evaluation` | Build evaluation frameworks for agent systems | +| `executing-plans` | Use when you have a written implementation plan to execute in a separate sess... | +| `fal-platform` | Platform APIs for model management, pricing, and usage tracking | +| `ffuf-claude-skill` | Web fuzzing with ffuf | +| `file-organizer` | Intelligently organizes files and folders by understanding context, finding d... | +| `finishing-a-development-branch` | Use when implementation is complete, all tests pass, and you need to decide h... | +| `fix-review` | Verify fix commits address audit findings without new bugs | +| `framework-migration-code-migrate` | You are a code migration expert specializing in transitioning codebases betwe... | +| `game-development` | Game development orchestrator | +| `game-development/2d-games` | 2D game development principles | +| `game-development/3d-games` | 3D game development principles | +| `game-development/game-audio` | Game audio principles | +| `game-development/game-design` | Game design principles | +| `game-development/pc-games` | PC and console game development principles | +| `game-development/vr-ar` | VR/AR development principles | +| `game-development/web-games` | Web browser game development principles | +| `git-advanced-workflows` | Master advanced Git workflows including rebasing, cherry-picking, bisect, wor... | +| `git-pr-workflows-onboard` | You are an **expert onboarding specialist and knowledge transfer architect** ... | +| `git-pr-workflows-pr-enhance` | You are a PR optimization expert specializing in creating high-quality pull r... | +| `github-issue-creator` | Convert raw notes, error logs, voice dictation, or screenshots into crisp Git... | +| `imagen` | | +| `infinite-gratitude` | Multi-agent research skill for parallel research execution (10 agents, battle... | +| `interactive-portfolio` | Expert in building portfolios that actually land jobs and clients - not just ... | +| `last30days` | Research a topic from the last 30 days on Reddit + X + Web, become an expert,... | +| `legacy-modernizer` | Refactor legacy codebases, migrate outdated frameworks, and implement gradual... | +| `linear-claude-skill` | Manage Linear issues, projects, and teams | +| `lint-and-validate` | Automatic quality control, linting, and static analysis procedures | +| `linux-privilege-escalation` | This skill should be used when the user asks to "escalate privileges on Linux... | +| `linux-shell-scripting` | This skill should be used when the user asks to "create bash scripts", "autom... | +| `memory-systems` | Design short-term, long-term, and graph-based memory architectures | +| `micro-saas-launcher` | Expert in launching small, focused SaaS products fast - the indie hacker appr... | +| `monorepo-management` | Master monorepo management with Turborepo, Nx, and pnpm workspaces to build e... | +| `nft-standards` | Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, mi... | +| `nosql-expert` | Expert guidance for distributed NoSQL databases (Cassandra, DynamoDB) | +| `obsidian-clipper-template-creator` | Guide for creating templates for the Obsidian Web Clipper | +| `onboarding-cro` | When the user wants to optimize post-signup onboarding, user activation, firs... | +| `oss-hunter` | Automatically hunt for high-impact OSS contribution opportunities in trending... | +| `paid-ads` | When the user wants help with paid advertising campaigns on Google Ads, Meta ... | +| `paypal-integration` | Integrate PayPal payment processing with support for express checkout, subscr... | +| `performance-profiling` | Performance profiling principles | +| `personal-tool-builder` | Expert in building custom tools that solve your own problems first | +| `plan-writing` | Structured task planning with clear breakdowns, dependencies, and verificatio... | +| `planning-with-files` | Implements Manus-style file-based planning for complex tasks | +| `posix-shell-pro` | Expert in strict POSIX sh scripting for maximum portability across Unix-like ... | +| `pptx-official` | Presentation creation, editing, and analysis | +| `privilege-escalation-methods` | This skill should be used when the user asks to "escalate privileges", "get r... | +| `prompt-engineer` | Transforms user prompts into optimized prompts using frameworks (RTF, RISEN, ... | +| `prompt-library` | Curated collection of high-quality prompts for various use cases | +| `receiving-code-review` | Use when receiving code review feedback, before implementing suggestions, esp... | +| `referral-program` | When the user wants to create, optimize, or analyze a referral program, affil... | +| `requesting-code-review` | Use when completing tasks, implementing major features, or before merging to ... | +| `search-specialist` | Expert web researcher using advanced search techniques and synthesis | +| `sharp-edges` | Identify error-prone APIs and dangerous configurations | +| `shellcheck-configuration` | Master ShellCheck static analysis configuration and usage for shell script qu... | +| `signup-flow-cro` | When the user wants to optimize signup, registration, account creation, or tr... | +| `skill-rails-upgrade` | Analyze Rails apps and provide upgrade assessments | +| `slack-gif-creator` | Knowledge and utilities for creating animated GIFs optimized for Slack | +| `social-content` | When the user wants help creating, scheduling, or optimizing social media con... | +| `subagent-driven-development` | Use when executing implementation plans with independent tasks in the current... | +| `superpowers-lab` | Lab environment for Claude superpowers | +| `theme-factory` | Toolkit for styling artifacts with a theme | +| `threejs-skills` | Create 3D scenes, interactive experiences, and visual effects using Three.js | +| `turborepo-caching` | Configure Turborepo for efficient monorepo builds with local and remote caching | +| `tutorial-engineer` | Creates step-by-step tutorials and educational content from code | +| `ui-skills` | Opinionated, evolving constraints to guide agents when building interfaces | +| `ui-ux-designer` | Create interface designs, wireframes, and design systems | +| `upgrading-expo` | Upgrade Expo SDK versions | +| `upstash-qstash` | Upstash QStash expert for serverless message queues, scheduled jobs, and reli... | +| `using-git-worktrees` | Use when starting feature work that needs isolation from current workspace or... | +| `using-superpowers` | Use when starting any conversation - establishes how to find and use skills, ... | +| `verification-before-completion` | Use when about to claim work is complete, fixed, or passing, before committin... | +| `web-performance-optimization` | Optimize website and web application performance including loading speed, Cor... | +| `wiki-changelog` | Analyzes git commit history and generates structured changelogs categorized b... | +| `wiki-page-writer` | Generates rich technical documentation pages with dark-mode Mermaid diagrams,... | +| `wiki-vitepress` | Packages generated wiki Markdown into a VitePress static site with dark theme... | +| `windows-privilege-escalation` | This skill should be used when the user asks to "escalate privileges on Windo... | +| `writing-plans` | Use when you have a spec or requirements for a multi-step task, before touchi... | +| `writing-skills` | Use when creating, updating, or improving agent skills. | +| `x-article-publisher-skill` | Publish articles to X/Twitter | +| `youtube-summarizer` | Extract transcripts from YouTube videos and generate comprehensive, detailed ... | diff --git a/awesome-skills/skills/infrastructure/SKILL.md b/awesome-skills/skills/infrastructure/SKILL.md new file mode 100644 index 0000000..8e67f9f --- /dev/null +++ b/awesome-skills/skills/infrastructure/SKILL.md @@ -0,0 +1,129 @@ +--- +name: awesome-infrastructure +description: DevOps, CI/CD, continuous integration, Docker, Kubernetes, K8s, Terraform, AWS, Amazon Web Services, Azure cloud, GCP, Google Cloud, monitoring, Grafana, Prometheus, load balancing, infrastructure as code, IaC, serverless, Lambda, database migration, Linux administration, networking, DNS, observability, logging, Helm, ArgoCD, GitOps, service mesh, Istio, cloud security, cost optimization. Use when setting up infrastructure, configuring CI/CD, deploying services, managing containers, or optimizing cloud resources. +--- + +# Infrastructure Skills Router + +Routes to 102 specialized infrastructure skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `agent-evaluation` | Testing and benchmarking LLM agents including behavioral testing, capability ... | +| `airflow-dag-patterns` | Build production Apache Airflow DAGs with best practices for operators, senso... | +| `api-testing-observability-api-mock` | You are an API mocking expert specializing in realistic mock services for dev... | +| `application-performance-performance-optimization` | Optimize end-to-end application performance with profiling, observability, an... | +| `aws-serverless` | Specialized skill for building production-ready serverless applications on AWS | +| `aws-skills` | AWS development with infrastructure automation and cloud architecture patterns | +| `azd-deployment` | Deploy containerized applications to Azure Container Apps using Azure Develop... | +| `azure-ai-anomalydetector-java` | Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java | +| `azure-identity-java` | Azure Identity Java SDK for authentication with Azure services | +| `azure-identity-py` | Azure Identity SDK for Python authentication | +| `azure-identity-ts` | Authenticate to Azure services using Azure Identity SDK for JavaScript (@azur... | +| `azure-messaging-webpubsubservice-py` | Azure Web PubSub Service SDK for Python | +| `azure-mgmt-apimanagement-dotnet` | Azure Resource Manager SDK for API Management in .NET | +| `azure-mgmt-applicationinsights-dotnet` | Azure Application Insights SDK for .NET | +| `azure-mgmt-arizeaiobservabilityeval-dotnet` | Azure Resource Manager SDK for Arize AI Observability and Evaluation (.NET) | +| `azure-mgmt-botservice-dotnet` | Azure Resource Manager SDK for Bot Service in .NET | +| `azure-mgmt-botservice-py` | Azure Bot Service Management SDK for Python | +| `azure-mgmt-weightsandbiases-dotnet` | Azure Weights & Biases SDK for .NET | +| `azure-microsoft-playwright-testing-ts` | Run Playwright tests at scale using Azure Playwright Workspaces (formerly Mic... | +| `azure-monitor-opentelemetry-exporter-java` | Azure Monitor OpenTelemetry Exporter for Java | +| `azure-monitor-opentelemetry-ts` | Instrument applications with Azure Monitor and OpenTelemetry for JavaScript (... | +| `azure-servicebus-dotnet` | Azure Service Bus SDK for .NET | +| `azure-servicebus-py` | Azure Service Bus SDK for Python messaging | +| `azure-servicebus-ts` | Build messaging applications using Azure Service Bus SDK for JavaScript (@azu... | +| `azure-storage-file-share-py` | Azure Storage File Share SDK for Python | +| `backend-architect` | Expert backend architect specializing in scalable API design, microservices a... | +| `backend-development-feature-development` | Orchestrate end-to-end backend feature development from requirements to deplo... | +| `bash-defensive-patterns` | Master defensive Bash programming techniques for production-grade scripts | +| `bash-pro` | Master of defensive Bash scripting for production automation, CI/CD pipelines... | +| `bats-testing-patterns` | Master Bash Automated Testing System (Bats) for comprehensive shell script te... | +| `box-automation` | Automate Box cloud storage operations including file upload/download, search,... | +| `c4-container` | Expert C4 Container-level documentation specialist | +| `claude-d3js-skill` | Creating interactive data visualisations using d3.js | +| `code-review-ai-ai-review` | You are an expert AI-powered code review specialist combining automated stati... | +| `cost-optimization` | Optimize cloud costs through resource rightsizing, tagging strategies, reserv... | +| `data-engineer` | Build scalable data pipelines, modern data warehouses, and real-time streamin... | +| `data-engineering-data-pipeline` | You are a data pipeline architecture expert specializing in scalable, reliabl... | +| `database-cloud-optimization-cost-optimize` | You are a cloud cost optimization expert specializing in reducing infrastruct... | +| `database-migrations-migration-observability` | Migration monitoring, CDC, and observability infrastructure | +| `database-optimizer` | Expert database optimizer specializing in modern performance tuning, query op... | +| `deployment-procedures` | Production deployment principles and decision-making | +| `deployment-validation-config-validate` | You are a configuration management expert specializing in validating, testing... | +| `distributed-debugging-debug-trace` | You are a debugging expert specializing in setting up comprehensive debugging... | +| `distributed-tracing` | Implement distributed tracing with Jaeger and Tempo to track requests across ... | +| `django-pro` | Master Django 5.x with async views, DRF, Celery, and Django Channels | +| `e2e-testing-patterns` | Master end-to-end testing with Playwright and Cypress to build reliable test ... | +| `error-debugging-error-analysis` | You are an expert error analysis specialist with deep expertise in debugging ... | +| `error-debugging-error-trace` | You are an error tracking and observability expert specializing in implementi... | +| `error-diagnostics-error-analysis` | You are an expert error analysis specialist with deep expertise in debugging ... | +| `error-diagnostics-error-trace` | You are an error tracking and observability expert specializing in implementi... | +| `expo-deployment` | Deploy Expo apps to production | +| `file-uploads` | Expert at handling file uploads and cloud storage | +| `flutter-expert` | Master Flutter development with Dart 3, advanced widgets, and multi-platform ... | +| `freshservice-automation` | Automate Freshservice ITSM tasks via Rube MCP (Composio): create/update ticke... | +| `game-development/game-art` | Game art principles | +| `gcp-cloud-run` | Specialized skill for building production-ready serverless applications on GCP | +| `git-pr-workflows-git-workflow` | Orchestrate a comprehensive git workflow from code review through PR creation... | +| `github-actions-templates` | Create production-ready GitHub Actions workflows for automated testing, build... | +| `github-automation` | Automate GitHub repositories, issues, pull requests, branches, CI/CD, and per... | +| `github-workflow-automation` | Automate GitHub workflows with AI assistance | +| `gitlab-ci-patterns` | Build GitLab CI/CD pipelines with multi-stage workflows, caching, and distrib... | +| `gitops-workflow` | Implement GitOps workflows with ArgoCD and Flux for automated, declarative Ku... | +| `grafana-dashboards` | Create and manage production Grafana dashboards for real-time visualization o... | +| `helm-chart-scaffolding` | Design, organize, and manage Helm charts for templating and packaging Kuberne... | +| `hugging-face-cli` | Execute Hugging Face Hub operations using the `hf` CLI | +| `hybrid-cloud-networking` | Configure secure, high-performance connectivity between on-premises infrastru... | +| `istio-traffic-management` | Configure Istio traffic management including routing, load balancing, circuit... | +| `iterate-pr` | Iterate on a PR until CI passes | +| `java-pro` | Master Java 21+ with modern features like virtual threads, pattern matching, ... | +| `kpi-dashboard-design` | Design effective KPI dashboards with metrics selection, visualization best pr... | +| `langfuse` | Expert in Langfuse - the open-source LLM observability platform | +| `llm-app-patterns` | Production-ready patterns for building LLM applications | +| `machine-learning-ops-ml-pipeline` | Design and implement a complete ML pipeline for: $ARGUMENTS | +| `microservices-patterns` | Design microservices architectures with service boundaries, event-driven comm... | +| `ml-engineer` | Build production ML systems with PyTorch 2.x, TensorFlow, and modern ML frame... | +| `ml-pipeline-workflow` | Build end-to-end MLOps pipelines from data preparation through model training... | +| `mlops-engineer` | Build comprehensive ML pipelines, experiment tracking, and model registries w... | +| `moodle-external-api-development` | Create custom external web service APIs for Moodle LMS | +| `multi-cloud-architecture` | Design multi-cloud architectures using a decision framework to select and int... | +| `network-101` | This skill should be used when the user asks to "set up a web server", "confi... | +| `observability-monitoring-monitor-setup` | You are a monitoring and observability expert specializing in implementing co... | +| `observability-monitoring-slo-implement` | You are an SLO (Service Level Objective) expert specializing in implementing ... | +| `performance-engineer` | Expert performance engineer specializing in modern observability, application... | +| `performance-testing-review-ai-review` | You are an expert AI-powered code review specialist combining automated stati... | +| `pipedrive-automation` | Automate Pipedrive CRM operations including deals, contacts, organizations, a... | +| `prometheus-configuration` | Set up Prometheus for comprehensive metric collection, storage, and monitorin... | +| `protocol-reverse-engineering` | Master network protocol reverse engineering including packet analysis, protoc... | +| `readme` | When the user wants to create or update a README.md file for a project | +| `server-management` | Server management principles and decision-making | +| `service-mesh-observability` | Implement comprehensive observability for service meshes including distribute... | +| `slo-implementation` | Define and implement Service Level Indicators (SLIs) and Service Level Object... | +| `sql-pro` | Master modern SQL with cloud-native databases, OLTP/OLAP optimization, and ad... | +| `temporal-python-pro` | Master Temporal workflow orchestration with Python SDK | +| `terraform-module-library` | Build reusable Terraform modules for AWS, Azure, and GCP infrastructure follo... | +| `terraform-skill` | Terraform infrastructure as code best practices | +| `test-automator` | Master AI-powered test automation with modern frameworks, self-healing tests,... | +| `unity-developer` | Build Unity games with optimized C# scripts, efficient rendering, and proper ... | +| `vercel-deploy-claimable` | Deploy applications and websites to Vercel | +| `vercel-deployment` | Expert knowledge for deploying to Vercel with Next.js | +| `voice-agents` | Voice agents represent the frontier of AI interaction - humans speaking natur... | +| `wireshark-analysis` | This skill should be used when the user asks to "analyze network traffic with... | +| `workflow-automation` | Workflow automation is the infrastructure that makes AI agents reliable | diff --git a/awesome-skills/skills/security/SKILL.md b/awesome-skills/skills/security/SKILL.md new file mode 100644 index 0000000..7eb17b7 --- /dev/null +++ b/awesome-skills/skills/security/SKILL.md @@ -0,0 +1,153 @@ +--- +name: awesome-security +description: Application security, penetration testing, ethical hacking, OWASP, authentication patterns, OAuth2, JWT, encryption, TLS, compliance, GDPR, HIPAA, SOC2, PCI-DSS, secrets management, web application security, supply chain security, vulnerability assessment, code audit, binary analysis, malware analysis, threat modeling, API security, network security, cloud security, incident response, forensics. Use when securing applications, performing security audits, implementing authentication, or assessing vulnerabilities. +--- + +# Security Skills Router + +Routes to 126 specialized security skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `accessibility-compliance-accessibility-audit` | You are an accessibility expert specializing in WCAG compliance, inclusive de... | +| `active-directory-attacks` | This skill should be used when the user asks to "attack Active Directory", "e... | +| `agent-memory-systems` | Memory is the cornerstone of intelligent agents | +| `ai-product` | Every product will be AI-powered | +| `antigravity-workflows` | Orchestrate multiple Antigravity skills through guided workflows for SaaS MVP... | +| `api-fuzzing-bug-bounty` | This skill should be used when the user asks to "test API security", "fuzz AP... | +| `api-security-best-practices` | Implement secure API design patterns including authentication, authorization,... | +| `attack-tree-construction` | Build comprehensive attack trees to visualize threat paths | +| `auth-implementation-patterns` | Master authentication and authorization patterns including JWT, OAuth2, sessi... | +| `aws-penetration-testing` | This skill should be used when the user asks to "pentest AWS", "test AWS secu... | +| `azure-cosmos-db-py` | Build Azure Cosmos DB NoSQL services with Python/FastAPI following production... | +| `azure-identity-dotnet` | Azure Identity SDK for .NET | +| `azure-keyvault-py` | Azure Key Vault SDK for Python | +| `azure-keyvault-secrets-rust` | Azure Key Vault Secrets SDK for Rust | +| `azure-keyvault-secrets-ts` | Manage secrets using Azure Key Vault Secrets SDK for JavaScript (@azure/keyva... | +| `azure-security-keyvault-keys-dotnet` | Azure Key Vault Keys SDK for .NET | +| `azure-security-keyvault-keys-java` | Azure Key Vault Keys Java SDK for cryptographic key management | +| `azure-security-keyvault-secrets-java` | Azure Key Vault Secrets Java SDK for secret management | +| `backend-security-coder` | Expert in secure backend coding practices specializing in input validation, a... | +| `broken-authentication` | This skill should be used when the user asks to "test for broken authenticati... | +| `burp-suite-testing` | This skill should be used when the user asks to "intercept HTTP traffic", "mo... | +| `cc-skill-security-review` | Use this skill when adding authentication, handling user input, working with ... | +| `cicd-automation-workflow-automate` | You are a workflow automation expert specializing in creating efficient CI/CD... | +| `clerk-auth` | Expert patterns for Clerk auth implementation, middleware, organizations, web... | +| `cloud-architect` | Expert cloud architect specializing in AWS/Azure/GCP multi-cloud infrastructu... | +| `cloud-penetration-testing` | This skill should be used when the user asks to "perform cloud penetration te... | +| `code-review-checklist` | Comprehensive checklist for conducting thorough code reviews covering functio... | +| `code-reviewer` | Elite code review expert specializing in modern AI-powered code analysis, sec... | +| `codebase-cleanup-deps-audit` | You are a dependency security expert specializing in vulnerability scanning, ... | +| `computer-use-agents` | Build AI agents that interact with computers like humans do - viewing screens... | +| `database-admin` | Expert database administrator specializing in modern cloud databases, automat... | +| `database-migration` | Execute database migrations across ORMs and platforms with zero-downtime stra... | +| `database-migrations-sql-migrations` | SQL database migrations with zero-downtime strategies for PostgreSQL, MySQL, ... | +| `dependency-management-deps-audit` | You are a dependency security expert specializing in vulnerability scanning, ... | +| `deployment-engineer` | Expert deployment engineer specializing in modern CI/CD pipelines, GitOps wor... | +| `deployment-pipeline-design` | Design multi-stage CI/CD pipelines with approval gates, security checks, and ... | +| `design-orchestration` | Orchestrates design workflows by routing work through brainstorming, multi-ag... | +| `devops-troubleshooter` | Expert DevOps troubleshooter specializing in rapid incident response, advance... | +| `docker-expert` | Docker containerization expert with deep knowledge of multi-stage builds, ima... | +| `dotnet-backend` | Build ASP.NET Core 8+ backend services with EF Core, auth, background jobs, a... | +| `ethical-hacking-methodology` | This skill should be used when the user asks to "learn ethical hacking", "und... | +| `file-path-traversal` | This skill should be used when the user asks to "test for directory traversal... | +| `find-bugs` | Find bugs, security vulnerabilities, and code quality issues in local branch ... | +| `firebase` | Firebase gives you a complete backend in minutes - auth, database, storage, f... | +| `firmware-analyst` | Expert firmware analyst specializing in embedded systems, IoT security, and h... | +| `form-cro` | Optimize any form that is NOT signup or account registration — including lead... | +| `framework-migration-deps-upgrade` | You are a dependency management expert specializing in safe, incremental upgr... | +| `frontend-mobile-security-xss-scan` | You are a frontend security specialist focusing on Cross-Site Scripting (XSS)... | +| `frontend-security-coder` | Expert in secure frontend coding practices specializing in XSS prevention, ou... | +| `gdpr-data-handling` | Implement GDPR-compliant data handling with consent management, data subject ... | +| `graphql-architect` | Master modern GraphQL with federation, performance optimization, and enterpri... | +| `html-injection-testing` | This skill should be used when the user asks to "test for HTML injection", "i... | +| `hugging-face-jobs` | This skill should be used when users want to run any workload on Hugging Face... | +| `hybrid-cloud-architect` | Expert hybrid cloud architect specializing in complex multi-cloud solutions a... | +| `idor-testing` | This skill should be used when the user asks to "test for insecure direct obj... | +| `incident-responder` | Expert SRE incident responder specializing in rapid problem resolution, moder... | +| `incident-response-incident-response` | Use when working with incident response incident response | +| `incident-response-smart-fix` | [Extended thinking: This workflow implements a sophisticated debugging and re... | +| `incident-runbook-templates` | Create structured incident response runbooks with step-by-step procedures, es... | +| `internal-comms-anthropic` | A set of resources to help me write all kinds of internal communications, usi... | +| `internal-comms-community` | A set of resources to help me write all kinds of internal communications, usi... | +| `k8s-manifest-generator` | Create production-ready Kubernetes manifests for Deployments, Services, Confi... | +| `k8s-security-policies` | Implement Kubernetes security policies including NetworkPolicy, PodSecurityPo... | +| `kubernetes-architect` | Expert Kubernetes architect specializing in cloud-native infrastructure, adva... | +| `legal-advisor` | Draft privacy policies, terms of service, disclaimers, and legal notices | +| `linkerd-patterns` | Implement Linkerd service mesh patterns for lightweight, security-focused ser... | +| `loki-mode` | Multi-agent autonomous startup system for Claude Code | +| `m365-agents-dotnet` | Microsoft 365 Agents SDK for .NET | +| `m365-agents-py` | Microsoft 365 Agents SDK for Python | +| `malware-analyst` | Expert malware analyst specializing in defensive malware research, threat int... | +| `memory-forensics` | Master memory forensics techniques including memory acquisition, process anal... | +| `metasploit-framework` | This skill should be used when the user asks to "use Metasploit for penetrati... | +| `mobile-security-coder` | Expert in secure mobile coding practices specializing in input validation, We... | +| `mtls-configuration` | Configure mutual TLS (mTLS) for zero-trust service-to-service communication | +| `multi-agent-brainstorming` | Use this skill when a design or idea requires higher confidence, risk reducti... | +| `network-engineer` | Expert network engineer specializing in modern cloud networking, security arc... | +| `nextjs-supabase-auth` | Expert integration of Supabase Auth with Next.js App Router | +| `nodejs-best-practices` | Node.js development principles and decision-making | +| `notebooklm` | Use this skill to query your Google NotebookLM notebooks directly from Claude... | +| `observability-engineer` | Build production-ready monitoring, logging, and tracing systems | +| `openapi-spec-generation` | Generate and maintain OpenAPI 3.1 specifications from code, design-first spec... | +| `payment-integration` | Integrate Stripe, PayPal, and payment processors | +| `pci-compliance` | Implement PCI DSS compliance requirements for secure handling of payment card... | +| `pentest-checklist` | This skill should be used when the user asks to "plan a penetration test", "c... | +| `plaid-fintech` | Expert patterns for Plaid API integration including Link token flows, transac... | +| `popup-cro` | Create and optimize popups, modals, overlays, slide-ins, and banners to incre... | +| `postmortem-writing` | Write effective blameless postmortems with root cause analysis, timelines, an... | +| `quant-analyst` | Build financial models, backtest trading strategies, and analyze market data | +| `red-team-tactics` | Red team tactics principles based on MITRE ATT&CK | +| `red-team-tools` | This skill should be used when the user asks to "follow red team methodology"... | +| `research-engineer` | An uncompromising Academic Research Engineer | +| `reverse-engineer` | Expert reverse engineer specializing in binary analysis, disassembly, decompi... | +| `risk-manager` | Monitor portfolio risk, R-multiples, and position limits | +| `risk-metrics-calculation` | Calculate portfolio risk metrics including VaR, CVaR, Sharpe, Sortino, and dr... | +| `sast-configuration` | Configure Static Application Security Testing (SAST) tools for automated vuln... | +| `scanning-tools` | This skill should be used when the user asks to "perform vulnerability scanni... | +| `secrets-management` | Implement secure secrets management for CI/CD pipelines using Vault, AWS Secr... | +| `security-auditor` | Expert security auditor specializing in DevSecOps, comprehensive cybersecurit... | +| `security-bluebook-builder` | Build security Blue Books for sensitive apps | +| `security-compliance-compliance-check` | You are a compliance expert specializing in regulatory requirements for softw... | +| `security-requirement-extraction` | Derive security requirements from threat models and business context | +| `security-scanning-security-dependencies` | You are a security expert specializing in dependency vulnerability analysis, ... | +| `security-scanning-security-hardening` | Coordinate multi-layer security scanning and hardening across application, in... | +| `security-scanning-security-sast` | Static Application Security Testing (SAST) for code vulnerability analysis ac... | +| `seo-authority-builder` | Analyzes content for E-E-A-T signals and suggests improvements to build autho... | +| `service-mesh-expert` | Expert service mesh architect specializing in Istio, Linkerd, and cloud-nativ... | +| `smtp-penetration-testing` | This skill should be used when the user asks to "perform SMTP penetration tes... | +| `solidity-security` | Master smart contract security best practices to prevent common vulnerabiliti... | +| `sql-injection-testing` | This skill should be used when the user asks to "test for SQL injection vulne... | +| `ssh-penetration-testing` | This skill should be used when the user asks to "pentest SSH services", "enum... | +| `stride-analysis-patterns` | Apply STRIDE methodology to systematically identify threats | +| `stripe-integration` | Implement Stripe payment processing for robust, PCI-compliant payment flows i... | +| `terraform-specialist` | Expert Terraform/OpenTofu specialist mastering advanced IaC automation, state... | +| `threat-mitigation-mapping` | Map identified threats to appropriate security controls and mitigations | +| `threat-modeling-expert` | Expert in threat modeling methodologies, security architecture review, and ri... | +| `top-web-vulnerabilities` | This skill should be used when the user asks to "identify web application vul... | +| `twilio-communications` | Build communication features with Twilio: SMS messaging, voice calls, WhatsAp... | +| `ui-visual-validator` | Rigorous visual validation expert specializing in UI testing, design system c... | +| `using-neon` | Guides and best practices for working with Neon Serverless Postgres | +| `varlock-claude-skill` | Secure environment variable management ensuring secrets are never exposed in ... | +| `vulnerability-scanner` | Advanced vulnerability analysis principles | +| `web-design-guidelines` | Review UI code for Web Interface Guidelines compliance | +| `wiki-onboarding` | Generates two complementary onboarding guides — a Principal-Level architectur... | +| `wiki-researcher` | Conducts multi-turn iterative deep research on specific topics within a codeb... | +| `wordpress-penetration-testing` | This skill should be used when the user asks to "pentest WordPress sites", "s... | +| `xss-html-injection` | This skill should be used when the user asks to "test for XSS vulnerabilities... | diff --git a/awesome-skills/skills/testing/SKILL.md b/awesome-skills/skills/testing/SKILL.md new file mode 100644 index 0000000..62d20ac --- /dev/null +++ b/awesome-skills/skills/testing/SKILL.md @@ -0,0 +1,51 @@ +--- +name: awesome-testing +description: Testing strategies, test-driven development, TDD, end-to-end testing, E2E, Playwright, Cypress, Jest, unit testing, integration testing, load testing, chaos engineering, API testing, visual regression testing, accessibility testing, snapshot testing, test data management, QA automation, mutation testing, contract testing, performance testing, test architecture, mocking, fixtures. Use when writing tests, designing test strategies, setting up test frameworks, or implementing quality assurance workflows. +--- + +# Testing Skills Router + +Routes to 24 specialized testing skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `ab-test-setup` | Structured guide for setting up A/B tests with mandatory gates for hypothesis... | +| `circleci-automation` | Automate CircleCI tasks via Rube MCP (Composio): trigger pipelines, monitor w... | +| `conductor-implement` | Execute tasks from a track's implementation plan following TDD workflow | +| `conductor-revert` | Git-aware undo by logical work unit (track, phase, or task) | +| `debugger` | Debugging specialist for errors, test failures, and unexpected behavior | +| `dependency-upgrade` | Manage major dependency version upgrades with compatibility analysis, staged ... | +| `pentest-commands` | This skill should be used when the user asks to "run pentest commands", "scan... | +| `performance-testing-review-multi-agent-review` | Use when working with performance testing review multi agent review | +| `playwright-skill` | Complete browser automation with Playwright | +| `pypict-skill` | Pairwise test generation | +| `screen-reader-testing` | Test web applications with screen readers including VoiceOver, NVDA, and JAWS | +| `startup-analyst` | Expert startup business analyst specializing in market sizing, financial mode... | +| `startup-metrics-framework` | This skill should be used when the user asks about "key startup metrics", "Sa... | +| `systematic-debugging` | Use when encountering any bug, test failure, or unexpected behavior, before p... | +| `tdd-workflow` | Test-Driven Development workflow principles | +| `tdd-workflows-tdd-cycle` | Use when working with tdd workflows tdd cycle | +| `tdd-workflows-tdd-green` | Implement the minimal code needed to make failing tests pass in the TDD green... | +| `tdd-workflows-tdd-red` | Generate failing tests for the TDD red phase to define expected behavior and ... | +| `tdd-workflows-tdd-refactor` | Use when working with tdd workflows tdd refactor | +| `test-driven-development` | Use when implementing any feature or bugfix, before writing implementation code | +| `test-fixing` | Run tests and systematically fix all failing tests using smart error grouping | +| `unit-testing-test-generate` | Generate comprehensive, maintainable unit tests across languages with strong ... | +| `web3-testing` | Test smart contracts comprehensively using Hardhat and Foundry with unit test... | +| `wiki-qa` | Answers questions about a code repository using source file analysis | diff --git a/awesome-skills/skills/workflow/SKILL.md b/awesome-skills/skills/workflow/SKILL.md new file mode 100644 index 0000000..0bc0bda --- /dev/null +++ b/awesome-skills/skills/workflow/SKILL.md @@ -0,0 +1,108 @@ +--- +name: awesome-workflow +description: Workflow automation, agile ceremonies, sprint planning, incident response playbooks, change management, continuous delivery practices, documentation workflows, async communication, onboarding processes, metrics and KPIs, meeting facilitation, retrospectives, kanban, release management, runbooks, post-mortems, team collaboration, code review processes, deployment checklists. Use when designing workflows, planning agile processes, creating runbooks, managing incidents, or optimizing team collaboration. +--- + +# Workflow Skills Router + +Routes to 81 specialized workflow skills from antigravity-awesome-skills. + +## Instructions + +When this skill is invoked: +1. Match the user's request against the skill index below +2. Read the full SKILL.md file using the Read tool from the path shown +3. If multiple skills match, pick the most specific one +4. Apply the loaded skill's guidance to help the user +5. If no clear match exists, list the top 3-5 candidates and ask + +**Skill files location** (check in order): +- `/home/n8n/plugins/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/.claude/antigravity-awesome-skills/skills/{id}/SKILL.md` +- `~/antigravity-awesome-skills/skills/{id}/SKILL.md` + +## Skill Index + +| ID | Description | +|----|-------------| +| `activecampaign-automation` | Automate ActiveCampaign tasks via Rube MCP (Composio): manage contacts, tags,... | +| `agent-orchestration-improve-agent` | Systematic improvement of existing agents through performance analysis, promp... | +| `agent-orchestration-multi-agent-optimize` | Optimize multi-agent systems with coordinated profiling, workload distributio... | +| `airtable-automation` | Automate Airtable tasks via Rube MCP (Composio): records, bases, tables, fiel... | +| `amplitude-automation` | Automate Amplitude tasks via Rube MCP (Composio): events, user activity, coho... | +| `asana-automation` | Automate Asana tasks via Rube MCP (Composio): tasks, projects, sections, team... | +| `bamboohr-automation` | Automate BambooHR tasks via Rube MCP (Composio): employees, time-off, benefit... | +| `basecamp-automation` | Automate Basecamp project management, to-dos, messages, people, and to-do lis... | +| `billing-automation` | Build automated billing systems for recurring payments, invoicing, subscripti... | +| `bitbucket-automation` | Automate Bitbucket repositories, pull requests, branches, issues, and workspa... | +| `brevo-automation` | Automate Brevo (Sendinblue) tasks via Rube MCP (Composio): manage email campa... | +| `cal-com-automation` | Automate Cal.com tasks via Rube MCP (Composio): manage bookings, check availa... | +| `canva-automation` | Automate Canva tasks via Rube MCP (Composio): designs, exports, folders, bran... | +| `changelog-automation` | Automate changelog generation from commits, PRs, and releases following Keep ... | +| `clickup-automation` | Automate ClickUp project management including tasks, spaces, folders, lists, ... | +| `close-automation` | Automate Close CRM tasks via Rube MCP (Composio): create leads, manage calls/... | +| `coda-automation` | Automate Coda tasks via Rube MCP (Composio): manage docs, pages, tables, rows... | +| `conductor-manage` | Manage track lifecycle: archive, restore, delete, rename, and cleanup | +| `conductor-new-track` | Create a new track with specification and phased implementation plan | +| `conductor-status` | Display project status, active tracks, and next actions | +| `conductor-validator` | Validates Conductor project artifacts for completeness, consistency, and corr... | +| `confluence-automation` | Automate Confluence page creation, content search, space management, labels, ... | +| `convertkit-automation` | Automate ConvertKit (Kit) tasks via Rube MCP (Composio): manage subscribers, ... | +| `datadog-automation` | Automate Datadog tasks via Rube MCP (Composio): query metrics, search logs, m... | +| `discord-automation` | Automate Discord tasks via Rube MCP (Composio): messages, channels, roles, we... | +| `docusign-automation` | Automate DocuSign tasks via Rube MCP (Composio): templates, envelopes, signat... | +| `dropbox-automation` | Automate Dropbox file management, sharing, search, uploads, downloads, and fo... | +| `email-sequence` | When the user wants to create or optimize an email sequence, drip campaign, a... | +| `figma-automation` | Automate Figma tasks via Rube MCP (Composio): files, components, design token... | +| `freshdesk-automation` | Automate Freshdesk helpdesk operations including tickets, contacts, companies... | +| `full-stack-orchestration-full-stack-feature` | Use when working with full stack orchestration full stack feature | +| `git-pushing` | Stage, commit, and push git changes with conventional commit messages | +| `gitlab-automation` | Automate GitLab project management, issues, merge requests, pipelines, branch... | +| `gmail-automation` | Automate Gmail tasks via Rube MCP (Composio): send/reply, search, labels, dra... | +| `google-calendar-automation` | Automate Google Calendar events, scheduling, availability checks, and attende... | +| `google-drive-automation` | Automate Google Drive file operations (upload, download, search, share, organ... | +| `helpdesk-automation` | Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, ... | +| `hubspot-automation` | Automate HubSpot CRM operations (contacts, companies, deals, tickets, propert... | +| `instagram-automation` | Automate Instagram tasks via Rube MCP (Composio): create posts, carousels, ma... | +| `intercom-automation` | Automate Intercom tasks via Rube MCP (Composio): conversations, contacts, com... | +| `jira-automation` | Automate Jira tasks via Rube MCP (Composio): issues, projects, sprints, board... | +| `kaizen` | Guide for continuous improvement, error proofing, and standardization | +| `klaviyo-automation` | Automate Klaviyo tasks via Rube MCP (Composio): manage email/SMS campaigns, i... | +| `linear-automation` | Automate Linear tasks via Rube MCP (Composio): issues, projects, cycles, team... | +| `linkedin-automation` | Automate LinkedIn tasks via Rube MCP (Composio): create posts, manage profile... | +| `make-automation` | Automate Make (Integromat) tasks via Rube MCP (Composio): operations, enums, ... | +| `mermaid-expert` | Create Mermaid diagrams for flowcharts, sequences, ERDs, and architectures | +| `microsoft-teams-automation` | Automate Microsoft Teams tasks via Rube MCP (Composio): send messages, manage... | +| `miro-automation` | Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, fra... | +| `mixpanel-automation` | Automate Mixpanel tasks via Rube MCP (Composio): events, segmentation, funnel... | +| `monday-automation` | Automate Monday.com work management including boards, items, columns, groups,... | +| `notion-automation` | Automate Notion tasks via Rube MCP (Composio): pages, databases, blocks, comm... | +| `one-drive-automation` | Automate OneDrive file management, search, uploads, downloads, sharing, permi... | +| `outlook-automation` | Automate Outlook tasks via Rube MCP (Composio): emails, calendar, contacts, f... | +| `outlook-calendar-automation` | Automate Outlook Calendar tasks via Rube MCP (Composio): create events, manag... | +| `pagerduty-automation` | Automate PagerDuty tasks via Rube MCP (Composio): manage incidents, services,... | +| `pdf-official` | Comprehensive PDF manipulation toolkit for extracting text and tables, creati... | +| `posthog-automation` | Automate PostHog tasks via Rube MCP (Composio): events, feature flags, projec... | +| `postmark-automation` | Automate Postmark email delivery tasks via Rube MCP (Composio): send template... | +| `reddit-automation` | Automate Reddit tasks via Rube MCP (Composio): search subreddits, create post... | +| `render-automation` | Automate Render tasks via Rube MCP (Composio): services, deployments, projects | +| `salesforce-automation` | Automate Salesforce tasks via Rube MCP (Composio): leads, contacts, accounts,... | +| `segment-automation` | Automate Segment tasks via Rube MCP (Composio): track events, identify users,... | +| `sentry-automation` | Automate Sentry tasks via Rube MCP (Composio): manage issues/events, configur... | +| `shopify-automation` | Automate Shopify tasks via Rube MCP (Composio): products, orders, customers, ... | +| `skill-creator` | This skill should be used when the user asks to create a new skill, build a s... | +| `square-automation` | Automate Square tasks via Rube MCP (Composio): payments, orders, invoices, lo... | +| `stripe-automation` | Automate Stripe tasks via Rube MCP (Composio): customers, charges, subscripti... | +| `team-collaboration-issue` | You are a GitHub issue resolution expert specializing in systematic bug inves... | +| `telegram-automation` | Automate Telegram tasks via Rube MCP (Composio): send messages, manage chats,... | +| `tiktok-automation` | Automate TikTok tasks via Rube MCP (Composio): upload/publish videos, post ph... | +| `todoist-automation` | Automate Todoist task management, projects, sections, filtering, and bulk ope... | +| `track-management` | Use this skill when creating, managing, or working with Conductor tracks - th... | +| `trello-automation` | Automate Trello boards, cards, and workflows via Rube MCP (Composio) | +| `twitter-automation` | Automate Twitter/X tasks via Rube MCP (Composio): posts, search, users, bookm... | +| `vercel-automation` | Automate Vercel tasks via Rube MCP (Composio): manage deployments, domains, D... | +| `webflow-automation` | Automate Webflow CMS collections, site publishing, page management, asset upl... | +| `wrike-automation` | Automate Wrike project management via Rube MCP (Composio): create tasks/folde... | +| `zendesk-automation` | Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations... | +| `zoho-crm-automation` | Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, searc... | +| `zoom-automation` | Automate Zoom meeting creation, management, recordings, webinars, and partici... |