opencode-skills-collection 2.0.0 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundled-skills/.antigravity-install-manifest.json +6 -1
- package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
- package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
- package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
- package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
- package/bundled-skills/docs/users/bundles.md +1 -1
- package/bundled-skills/docs/users/claude-code-skills.md +1 -1
- package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
- package/bundled-skills/docs/users/getting-started.md +1 -1
- package/bundled-skills/docs/users/kiro-integration.md +1 -1
- package/bundled-skills/docs/users/usage.md +4 -4
- package/bundled-skills/docs/users/visual-guide.md +4 -4
- package/bundled-skills/manage-skills/SKILL.md +187 -0
- package/bundled-skills/monte-carlo-monitor-creation/SKILL.md +222 -0
- package/bundled-skills/monte-carlo-monitor-creation/references/comparison-monitor.md +426 -0
- package/bundled-skills/monte-carlo-monitor-creation/references/custom-sql-monitor.md +207 -0
- package/bundled-skills/monte-carlo-monitor-creation/references/metric-monitor.md +292 -0
- package/bundled-skills/monte-carlo-monitor-creation/references/table-monitor.md +231 -0
- package/bundled-skills/monte-carlo-monitor-creation/references/validation-monitor.md +404 -0
- package/bundled-skills/monte-carlo-prevent/SKILL.md +252 -0
- package/bundled-skills/monte-carlo-prevent/references/TROUBLESHOOTING.md +23 -0
- package/bundled-skills/monte-carlo-prevent/references/parameters.md +32 -0
- package/bundled-skills/monte-carlo-prevent/references/workflows.md +478 -0
- package/bundled-skills/monte-carlo-push-ingestion/SKILL.md +363 -0
- package/bundled-skills/monte-carlo-push-ingestion/references/anomaly-detection.md +87 -0
- package/bundled-skills/monte-carlo-push-ingestion/references/custom-lineage.md +203 -0
- package/bundled-skills/monte-carlo-push-ingestion/references/direct-http-api.md +207 -0
- package/bundled-skills/monte-carlo-push-ingestion/references/prerequisites.md +150 -0
- package/bundled-skills/monte-carlo-push-ingestion/references/push-lineage.md +160 -0
- package/bundled-skills/monte-carlo-push-ingestion/references/push-metadata.md +158 -0
- package/bundled-skills/monte-carlo-push-ingestion/references/push-query-logs.md +219 -0
- package/bundled-skills/monte-carlo-push-ingestion/references/validation.md +257 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/sample_verify.py +357 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/collect_and_push_lineage.py +70 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/collect_and_push_metadata.py +65 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/collect_and_push_query_logs.py +70 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/collect_lineage.py +214 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/collect_metadata.py +160 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/collect_query_logs.py +164 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/push_lineage.py +198 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/push_metadata.py +193 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery/push_query_logs.py +207 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery-iceberg/collect_and_push_metadata.py +71 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery-iceberg/collect_and_push_query_logs.py +64 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery-iceberg/collect_metadata.py +253 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery-iceberg/collect_query_logs.py +149 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery-iceberg/push_metadata.py +190 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/bigquery-iceberg/push_query_logs.py +208 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/collect_and_push_lineage.py +83 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/collect_and_push_metadata.py +77 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/collect_and_push_query_logs.py +83 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/collect_lineage.py +240 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/collect_metadata.py +212 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/collect_query_logs.py +204 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/push_lineage.py +192 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/push_metadata.py +178 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/databricks/push_query_logs.py +200 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/collect_and_push_lineage.py +119 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/collect_and_push_metadata.py +119 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/collect_and_push_query_logs.py +117 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/collect_lineage.py +265 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/collect_metadata.py +313 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/collect_query_logs.py +284 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/push_lineage.py +309 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/push_metadata.py +245 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/hive/push_query_logs.py +255 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/collect_and_push_lineage.py +78 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/collect_and_push_metadata.py +80 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/collect_and_push_query_logs.py +88 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/collect_lineage.py +235 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/collect_metadata.py +219 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/collect_query_logs.py +239 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/push_lineage.py +178 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/push_metadata.py +178 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/redshift/push_query_logs.py +196 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/collect_and_push_lineage.py +154 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/collect_and_push_metadata.py +137 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/collect_and_push_query_logs.py +137 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/collect_lineage.py +349 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/collect_metadata.py +329 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/collect_query_logs.py +254 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/push_lineage.py +307 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/push_metadata.py +228 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/templates/snowflake/push_query_logs.py +248 -0
- package/bundled-skills/monte-carlo-push-ingestion/scripts/test_template_sdk_usage.py +340 -0
- package/bundled-skills/monte-carlo-validation-notebook/SKILL.md +685 -0
- package/bundled-skills/monte-carlo-validation-notebook/scripts/generate_notebook_url.py +141 -0
- package/bundled-skills/monte-carlo-validation-notebook/scripts/resolve_dbt_schema.py +161 -0
- package/package.json +1 -1
- package/skills_index.json +503 -61
package/skills_index.json
CHANGED
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"path": "skills/3d-web-experience",
|
|
137
137
|
"category": "design",
|
|
138
138
|
"name": "3d-web-experience",
|
|
139
|
-
"description": "
|
|
139
|
+
"description": "Expert in building 3D experiences for the web - Three.js, React Three Fiber, Spline, WebGL, and interactive 3D scenes. Covers product configurators, 3D portfolios, immersive websites, and bringing depth to web experiences.",
|
|
140
140
|
"risk": "unknown",
|
|
141
141
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
142
142
|
"date_added": "2026-02-27",
|
|
@@ -424,7 +424,7 @@
|
|
|
424
424
|
"path": "skills/agent-evaluation",
|
|
425
425
|
"category": "ai-agents",
|
|
426
426
|
"name": "agent-evaluation",
|
|
427
|
-
"description": "
|
|
427
|
+
"description": "Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring\u2014where even top agents achieve less than 50% on real-world benchmarks",
|
|
428
428
|
"risk": "safe",
|
|
429
429
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
430
430
|
"date_added": "2026-02-27",
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
"path": "skills/agent-memory-systems",
|
|
513
513
|
"category": "memory",
|
|
514
514
|
"name": "agent-memory-systems",
|
|
515
|
-
"description": "
|
|
515
|
+
"description": "Memory is the cornerstone of intelligent agents. Without it, every interaction starts from zero. This skill covers the architecture of agent memory: short-term (context window), long-term (vector stores), and the cognitive architectures that organize them.",
|
|
516
516
|
"risk": "safe",
|
|
517
517
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
518
518
|
"date_added": "2026-02-27",
|
|
@@ -600,7 +600,7 @@
|
|
|
600
600
|
"path": "skills/agent-tool-builder",
|
|
601
601
|
"category": "ai-ml",
|
|
602
602
|
"name": "agent-tool-builder",
|
|
603
|
-
"description": "
|
|
603
|
+
"description": "Tools are how AI agents interact with the world. A well-designed tool is the difference between an agent that works and one that hallucinates, fails silently, or costs 10x more tokens than necessary. This skill covers tool design from schema to error handling.",
|
|
604
604
|
"risk": "unknown",
|
|
605
605
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
606
606
|
"date_added": "2026-02-27",
|
|
@@ -800,7 +800,7 @@
|
|
|
800
800
|
"path": "skills/ai-agents-architect",
|
|
801
801
|
"category": "ai-agents",
|
|
802
802
|
"name": "ai-agents-architect",
|
|
803
|
-
"description": "
|
|
803
|
+
"description": "Expert in designing and building autonomous AI agents. Masters tool use, memory systems, planning strategies, and multi-agent orchestration.",
|
|
804
804
|
"risk": "unknown",
|
|
805
805
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
806
806
|
"date_added": "2026-02-27",
|
|
@@ -958,7 +958,7 @@
|
|
|
958
958
|
"path": "skills/ai-product",
|
|
959
959
|
"category": "ai-ml",
|
|
960
960
|
"name": "ai-product",
|
|
961
|
-
"description": "
|
|
961
|
+
"description": "Every product will be AI-powered. The question is whether you'll build it right or ship a demo that falls apart in production.",
|
|
962
962
|
"risk": "safe",
|
|
963
963
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
964
964
|
"date_added": "2026-02-27",
|
|
@@ -1024,7 +1024,7 @@
|
|
|
1024
1024
|
"path": "skills/ai-wrapper-product",
|
|
1025
1025
|
"category": "ai-ml",
|
|
1026
1026
|
"name": "ai-wrapper-product",
|
|
1027
|
-
"description": "
|
|
1027
|
+
"description": "Expert in building products that wrap AI APIs (OpenAI, Anthropic, etc. ) into focused tools people will pay for. Not just \"ChatGPT but different\" - products that solve specific problems with AI.",
|
|
1028
1028
|
"risk": "unknown",
|
|
1029
1029
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
1030
1030
|
"date_added": "2026-02-27",
|
|
@@ -1112,7 +1112,7 @@
|
|
|
1112
1112
|
"path": "skills/algolia-search",
|
|
1113
1113
|
"category": "api-integration",
|
|
1114
1114
|
"name": "algolia-search",
|
|
1115
|
-
"description": "Expert patterns for Algolia search implementation, indexing strategies, React InstantSearch, and relevance tuning
|
|
1115
|
+
"description": "Expert patterns for Algolia search implementation, indexing strategies, React InstantSearch, and relevance tuning",
|
|
1116
1116
|
"risk": "unknown",
|
|
1117
1117
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
1118
1118
|
"date_added": "2026-02-27",
|
|
@@ -2550,7 +2550,7 @@
|
|
|
2550
2550
|
"path": "skills/autonomous-agents",
|
|
2551
2551
|
"category": "ai-ml",
|
|
2552
2552
|
"name": "autonomous-agents",
|
|
2553
|
-
"description": "
|
|
2553
|
+
"description": "Autonomous agents are AI systems that can independently decompose goals, plan actions, execute tools, and self-correct without constant human guidance. The challenge isn't making them capable - it's making them reliable. Every extra decision multiplies failure probability.",
|
|
2554
2554
|
"risk": "unknown",
|
|
2555
2555
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
2556
2556
|
"date_added": "2026-02-27",
|
|
@@ -2836,7 +2836,7 @@
|
|
|
2836
2836
|
"path": "skills/aws-serverless",
|
|
2837
2837
|
"category": "cloud",
|
|
2838
2838
|
"name": "aws-serverless",
|
|
2839
|
-
"description": "
|
|
2839
|
+
"description": "Specialized skill for building production-ready serverless applications on AWS. Covers Lambda functions, API Gateway, DynamoDB, SQS/SNS event-driven patterns, SAM/CDK deployment, and cold start optimization.",
|
|
2840
2840
|
"risk": "unknown",
|
|
2841
2841
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
2842
2842
|
"date_added": "2026-02-27",
|
|
@@ -4068,7 +4068,7 @@
|
|
|
4068
4068
|
"path": "skills/azure-functions",
|
|
4069
4069
|
"category": "cloud",
|
|
4070
4070
|
"name": "azure-functions",
|
|
4071
|
-
"description": "
|
|
4071
|
+
"description": "Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js programming models.",
|
|
4072
4072
|
"risk": "none",
|
|
4073
4073
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
4074
4074
|
"date_added": "2026-02-27",
|
|
@@ -6316,7 +6316,7 @@
|
|
|
6316
6316
|
"path": "skills/browser-automation",
|
|
6317
6317
|
"category": "test-automation",
|
|
6318
6318
|
"name": "browser-automation",
|
|
6319
|
-
"description": "
|
|
6319
|
+
"description": "Browser automation powers web testing, scraping, and AI agent interactions. The difference between a flaky script and a reliable system comes down to understanding selectors, waiting strategies, and anti-detection patterns.",
|
|
6320
6320
|
"risk": "unknown",
|
|
6321
6321
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
6322
6322
|
"date_added": "2026-02-27",
|
|
@@ -6338,7 +6338,7 @@
|
|
|
6338
6338
|
"path": "skills/browser-extension-builder",
|
|
6339
6339
|
"category": "web-development",
|
|
6340
6340
|
"name": "browser-extension-builder",
|
|
6341
|
-
"description": "
|
|
6341
|
+
"description": "Expert in building browser extensions that solve real problems - Chrome, Firefox, and cross-browser extensions. Covers extension architecture, manifest v3, content scripts, popup UIs, monetization strategies, and Chrome Web Store publishing.",
|
|
6342
6342
|
"risk": "unknown",
|
|
6343
6343
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
6344
6344
|
"date_added": "2026-02-27",
|
|
@@ -6426,7 +6426,7 @@
|
|
|
6426
6426
|
"path": "skills/bullmq-specialist",
|
|
6427
6427
|
"category": "framework",
|
|
6428
6428
|
"name": "bullmq-specialist",
|
|
6429
|
-
"description": "BullMQ expert for Redis-backed job queues, background processing, and reliable async execution in Node.js/TypeScript applications.
|
|
6429
|
+
"description": "BullMQ expert for Redis-backed job queues, background processing, and reliable async execution in Node.js/TypeScript applications.",
|
|
6430
6430
|
"risk": "none",
|
|
6431
6431
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
6432
6432
|
"date_added": "2026-02-27",
|
|
@@ -7532,9 +7532,9 @@
|
|
|
7532
7532
|
{
|
|
7533
7533
|
"id": "clerk-auth",
|
|
7534
7534
|
"path": "skills/clerk-auth",
|
|
7535
|
-
"category": "
|
|
7535
|
+
"category": "uncategorized",
|
|
7536
7536
|
"name": "clerk-auth",
|
|
7537
|
-
"description": "Expert patterns for Clerk auth implementation, middleware, organizations, webhooks, and user sync
|
|
7537
|
+
"description": "Expert patterns for Clerk auth implementation, middleware, organizations, webhooks, and user sync",
|
|
7538
7538
|
"risk": "safe",
|
|
7539
7539
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
7540
7540
|
"date_added": "2026-02-27",
|
|
@@ -8238,7 +8238,7 @@
|
|
|
8238
8238
|
"path": "skills/computer-use-agents",
|
|
8239
8239
|
"category": "ai-ml",
|
|
8240
8240
|
"name": "computer-use-agents",
|
|
8241
|
-
"description": "
|
|
8241
|
+
"description": "Build AI agents that interact with computers like humans do - viewing screens, moving cursors, clicking buttons, and typing text. Covers Anthropic's Computer Use, OpenAI's Operator/CUA, and open-source alternatives.",
|
|
8242
8242
|
"risk": "unknown",
|
|
8243
8243
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
8244
8244
|
"date_added": "2026-02-27",
|
|
@@ -8788,7 +8788,7 @@
|
|
|
8788
8788
|
"path": "skills/context-window-management",
|
|
8789
8789
|
"category": "memory",
|
|
8790
8790
|
"name": "context-window-management",
|
|
8791
|
-
"description": "
|
|
8791
|
+
"description": "Strategies for managing LLM context windows including summarization, trimming, routing, and avoiding context rot",
|
|
8792
8792
|
"risk": "unknown",
|
|
8793
8793
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
8794
8794
|
"date_added": "2026-02-27",
|
|
@@ -8832,7 +8832,7 @@
|
|
|
8832
8832
|
"path": "skills/conversation-memory",
|
|
8833
8833
|
"category": "memory",
|
|
8834
8834
|
"name": "conversation-memory",
|
|
8835
|
-
"description": "Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory
|
|
8835
|
+
"description": "Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory",
|
|
8836
8836
|
"risk": "unknown",
|
|
8837
8837
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
8838
8838
|
"date_added": "2026-02-27",
|
|
@@ -9160,9 +9160,9 @@
|
|
|
9160
9160
|
{
|
|
9161
9161
|
"id": "crewai",
|
|
9162
9162
|
"path": "skills/crewai",
|
|
9163
|
-
"category": "
|
|
9163
|
+
"category": "uncategorized",
|
|
9164
9164
|
"name": "crewai",
|
|
9165
|
-
"description": "
|
|
9165
|
+
"description": "Expert in CrewAI - the leading role-based multi-agent framework used by 60% of Fortune 500 companies.",
|
|
9166
9166
|
"risk": "unknown",
|
|
9167
9167
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
9168
9168
|
"date_added": "2026-02-27",
|
|
@@ -11056,7 +11056,7 @@
|
|
|
11056
11056
|
"path": "skills/email-systems",
|
|
11057
11057
|
"category": "uncategorized",
|
|
11058
11058
|
"name": "email-systems",
|
|
11059
|
-
"description": "
|
|
11059
|
+
"description": "Email has the highest ROI of any marketing channel. $36 for every $1 spent. Yet most startups treat it as an afterthought - bulk blasts, no personalization, landing in spam folders.",
|
|
11060
11060
|
"risk": "none",
|
|
11061
11061
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
11062
11062
|
"date_added": "2026-02-27",
|
|
@@ -11755,6 +11755,50 @@
|
|
|
11755
11755
|
"reasons": []
|
|
11756
11756
|
}
|
|
11757
11757
|
},
|
|
11758
|
+
{
|
|
11759
|
+
"id": "faf-expert",
|
|
11760
|
+
"path": "skills/faf-expert",
|
|
11761
|
+
"category": "coding",
|
|
11762
|
+
"name": "faf-expert",
|
|
11763
|
+
"description": "Advanced .faf (Foundational AI-context Format) specialist. IANA-registered format, MCP server config, championship scoring, bi-directional sync.",
|
|
11764
|
+
"risk": "safe",
|
|
11765
|
+
"source": "community",
|
|
11766
|
+
"date_added": "2026-04-07",
|
|
11767
|
+
"plugin": {
|
|
11768
|
+
"targets": {
|
|
11769
|
+
"codex": "supported",
|
|
11770
|
+
"claude": "supported"
|
|
11771
|
+
},
|
|
11772
|
+
"setup": {
|
|
11773
|
+
"type": "none",
|
|
11774
|
+
"summary": "",
|
|
11775
|
+
"docs": null
|
|
11776
|
+
},
|
|
11777
|
+
"reasons": []
|
|
11778
|
+
}
|
|
11779
|
+
},
|
|
11780
|
+
{
|
|
11781
|
+
"id": "faf-wizard",
|
|
11782
|
+
"path": "skills/faf-wizard",
|
|
11783
|
+
"category": "productivity",
|
|
11784
|
+
"name": "faf-wizard",
|
|
11785
|
+
"description": "Done-for-you .faf generator. One-click AI context for any project - new, legacy, or famous. Auto-detects stack, scores readiness, works everywhere.",
|
|
11786
|
+
"risk": "safe",
|
|
11787
|
+
"source": "community",
|
|
11788
|
+
"date_added": "2026-04-07",
|
|
11789
|
+
"plugin": {
|
|
11790
|
+
"targets": {
|
|
11791
|
+
"codex": "supported",
|
|
11792
|
+
"claude": "supported"
|
|
11793
|
+
},
|
|
11794
|
+
"setup": {
|
|
11795
|
+
"type": "none",
|
|
11796
|
+
"summary": "",
|
|
11797
|
+
"docs": null
|
|
11798
|
+
},
|
|
11799
|
+
"reasons": []
|
|
11800
|
+
}
|
|
11801
|
+
},
|
|
11758
11802
|
{
|
|
11759
11803
|
"id": "fal-audio",
|
|
11760
11804
|
"path": "skills/fal-audio",
|
|
@@ -12156,7 +12200,7 @@
|
|
|
12156
12200
|
"path": "skills/file-uploads",
|
|
12157
12201
|
"category": "security",
|
|
12158
12202
|
"name": "file-uploads",
|
|
12159
|
-
"description": "
|
|
12203
|
+
"description": "Expert at handling file uploads and cloud storage. Covers S3, Cloudflare R2, presigned URLs, multipart uploads, and image optimization. Knows how to handle large files without blocking.",
|
|
12160
12204
|
"risk": "none",
|
|
12161
12205
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
12162
12206
|
"date_added": "2026-02-27",
|
|
@@ -12244,7 +12288,7 @@
|
|
|
12244
12288
|
"path": "skills/firebase",
|
|
12245
12289
|
"category": "cloud",
|
|
12246
12290
|
"name": "firebase",
|
|
12247
|
-
"description": "
|
|
12291
|
+
"description": "Firebase gives you a complete backend in minutes - auth, database, storage, functions, hosting. But the ease of setup hides real complexity. Security rules are your last line of defense, and they're often wrong.",
|
|
12248
12292
|
"risk": "unknown",
|
|
12249
12293
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
12250
12294
|
"date_added": "2026-02-27",
|
|
@@ -13234,7 +13278,7 @@
|
|
|
13234
13278
|
"path": "skills/gcp-cloud-run",
|
|
13235
13279
|
"category": "cloud",
|
|
13236
13280
|
"name": "gcp-cloud-run",
|
|
13237
|
-
"description": "
|
|
13281
|
+
"description": "Specialized skill for building production-ready serverless applications on GCP. Covers Cloud Run services (containerized), Cloud Run Functions (event-driven), cold start optimization, and event-driven architecture with Pub/Sub.",
|
|
13238
13282
|
"risk": "unknown",
|
|
13239
13283
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
13240
13284
|
"date_added": "2026-02-27",
|
|
@@ -14114,7 +14158,7 @@
|
|
|
14114
14158
|
"path": "skills/graphql",
|
|
14115
14159
|
"category": "backend",
|
|
14116
14160
|
"name": "graphql",
|
|
14117
|
-
"description": "
|
|
14161
|
+
"description": "GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server.",
|
|
14118
14162
|
"risk": "safe",
|
|
14119
14163
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
14120
14164
|
"date_added": "2026-02-27",
|
|
@@ -14776,7 +14820,7 @@
|
|
|
14776
14820
|
"path": "skills/hubspot-integration",
|
|
14777
14821
|
"category": "api-integration",
|
|
14778
14822
|
"name": "hubspot-integration",
|
|
14779
|
-
"description": "
|
|
14823
|
+
"description": "Expert patterns for HubSpot CRM integration including OAuth authentication, CRM objects, associations, batch operations, webhooks, and custom objects. Covers Node.js and Python SDKs.",
|
|
14780
14824
|
"risk": "unknown",
|
|
14781
14825
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
14782
14826
|
"date_added": "2026-02-27",
|
|
@@ -15211,6 +15255,28 @@
|
|
|
15211
15255
|
"reasons": []
|
|
15212
15256
|
}
|
|
15213
15257
|
},
|
|
15258
|
+
{
|
|
15259
|
+
"id": "idea-darwin",
|
|
15260
|
+
"path": "skills/idea-darwin",
|
|
15261
|
+
"category": "uncategorized",
|
|
15262
|
+
"name": "idea-darwin",
|
|
15263
|
+
"description": "Darwinian idea evolution engine \u2014 toss rough ideas onto an evolution island, let them compete, crossbreed, and mutate through structured rounds to surface your strongest concepts.",
|
|
15264
|
+
"risk": "safe",
|
|
15265
|
+
"source": "community",
|
|
15266
|
+
"date_added": "2026-04-07",
|
|
15267
|
+
"plugin": {
|
|
15268
|
+
"targets": {
|
|
15269
|
+
"codex": "supported",
|
|
15270
|
+
"claude": "supported"
|
|
15271
|
+
},
|
|
15272
|
+
"setup": {
|
|
15273
|
+
"type": "none",
|
|
15274
|
+
"summary": "",
|
|
15275
|
+
"docs": null
|
|
15276
|
+
},
|
|
15277
|
+
"reasons": []
|
|
15278
|
+
}
|
|
15279
|
+
},
|
|
15214
15280
|
{
|
|
15215
15281
|
"id": "identity-mirror",
|
|
15216
15282
|
"path": "skills/identity-mirror",
|
|
@@ -15458,7 +15524,7 @@
|
|
|
15458
15524
|
"path": "skills/inngest",
|
|
15459
15525
|
"category": "workflow",
|
|
15460
15526
|
"name": "inngest",
|
|
15461
|
-
"description": "
|
|
15527
|
+
"description": "Inngest expert for serverless-first background jobs, event-driven workflows, and durable execution without managing queues or workers.",
|
|
15462
15528
|
"risk": "none",
|
|
15463
15529
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
15464
15530
|
"date_added": "2026-02-27",
|
|
@@ -15524,7 +15590,7 @@
|
|
|
15524
15590
|
"path": "skills/interactive-portfolio",
|
|
15525
15591
|
"category": "front-end",
|
|
15526
15592
|
"name": "interactive-portfolio",
|
|
15527
|
-
"description": "
|
|
15593
|
+
"description": "Expert in building portfolios that actually land jobs and clients - not just showing work, but creating memorable experiences. Covers developer portfolios, designer portfolios, creative portfolios, and portfolios that convert visitors into opportunities.",
|
|
15528
15594
|
"risk": "unknown",
|
|
15529
15595
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
15530
15596
|
"date_added": "2026-02-27",
|
|
@@ -16314,9 +16380,9 @@
|
|
|
16314
16380
|
{
|
|
16315
16381
|
"id": "langfuse",
|
|
16316
16382
|
"path": "skills/langfuse",
|
|
16317
|
-
"category": "
|
|
16383
|
+
"category": "uncategorized",
|
|
16318
16384
|
"name": "langfuse",
|
|
16319
|
-
"description": "
|
|
16385
|
+
"description": "Expert in Langfuse - the open-source LLM observability platform. Covers tracing, prompt management, evaluation, datasets, and integration with LangChain, LlamaIndex, and OpenAI. Essential for debugging, monitoring, and improving LLM applications in production.",
|
|
16320
16386
|
"risk": "unknown",
|
|
16321
16387
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
16322
16388
|
"date_added": "2026-02-27",
|
|
@@ -16338,7 +16404,7 @@
|
|
|
16338
16404
|
"path": "skills/langgraph",
|
|
16339
16405
|
"category": "ai-agents",
|
|
16340
16406
|
"name": "langgraph",
|
|
16341
|
-
"description": "
|
|
16407
|
+
"description": "Expert in LangGraph - the production-grade framework for building stateful, multi-actor AI applications. Covers graph construction, state management, cycles and branches, persistence with checkpointers, human-in-the-loop patterns, and the ReAct agent pattern.",
|
|
16342
16408
|
"risk": "unknown",
|
|
16343
16409
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
16344
16410
|
"date_added": "2026-02-27",
|
|
@@ -17769,6 +17835,30 @@
|
|
|
17769
17835
|
"reasons": []
|
|
17770
17836
|
}
|
|
17771
17837
|
},
|
|
17838
|
+
{
|
|
17839
|
+
"id": "manage-skills",
|
|
17840
|
+
"path": "skills/manage-skills",
|
|
17841
|
+
"category": "ai-ml",
|
|
17842
|
+
"name": "manage-skills",
|
|
17843
|
+
"description": "Discover, list, create, edit, toggle, copy, move, and delete AI agent skills across 11 tools (Cursor, Claude, Agents, Windsurf, Copilot, Codex, Cline, Aider, Continue, Roo Code, Augment)",
|
|
17844
|
+
"risk": "unknown",
|
|
17845
|
+
"source": "unknown",
|
|
17846
|
+
"date_added": null,
|
|
17847
|
+
"plugin": {
|
|
17848
|
+
"targets": {
|
|
17849
|
+
"codex": "blocked",
|
|
17850
|
+
"claude": "blocked"
|
|
17851
|
+
},
|
|
17852
|
+
"setup": {
|
|
17853
|
+
"type": "none",
|
|
17854
|
+
"summary": "",
|
|
17855
|
+
"docs": null
|
|
17856
|
+
},
|
|
17857
|
+
"reasons": [
|
|
17858
|
+
"target_specific_home_path"
|
|
17859
|
+
]
|
|
17860
|
+
}
|
|
17861
|
+
},
|
|
17772
17862
|
{
|
|
17773
17863
|
"id": "manifest",
|
|
17774
17864
|
"path": "skills/manifest",
|
|
@@ -18106,7 +18196,7 @@
|
|
|
18106
18196
|
"path": "skills/micro-saas-launcher",
|
|
18107
18197
|
"category": "business",
|
|
18108
18198
|
"name": "micro-saas-launcher",
|
|
18109
|
-
"description": "
|
|
18199
|
+
"description": "Expert in launching small, focused SaaS products fast - the indie hacker approach to building profitable software. Covers idea validation, MVP development, pricing, launch strategies, and growing to sustainable revenue. Ship in weeks, not months.",
|
|
18110
18200
|
"risk": "unknown",
|
|
18111
18201
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
18112
18202
|
"date_added": "2026-02-27",
|
|
@@ -18543,6 +18633,94 @@
|
|
|
18543
18633
|
"reasons": []
|
|
18544
18634
|
}
|
|
18545
18635
|
},
|
|
18636
|
+
{
|
|
18637
|
+
"id": "monte-carlo-monitor-creation",
|
|
18638
|
+
"path": "skills/monte-carlo-monitor-creation",
|
|
18639
|
+
"category": "data",
|
|
18640
|
+
"name": "monte-carlo-monitor-creation",
|
|
18641
|
+
"description": "Guides creation of Monte Carlo monitors via MCP tools, producing monitors-as-code YAML for CI/CD deployment.",
|
|
18642
|
+
"risk": "safe",
|
|
18643
|
+
"source": "community",
|
|
18644
|
+
"date_added": "2026-04-08",
|
|
18645
|
+
"plugin": {
|
|
18646
|
+
"targets": {
|
|
18647
|
+
"codex": "supported",
|
|
18648
|
+
"claude": "supported"
|
|
18649
|
+
},
|
|
18650
|
+
"setup": {
|
|
18651
|
+
"type": "none",
|
|
18652
|
+
"summary": "",
|
|
18653
|
+
"docs": null
|
|
18654
|
+
},
|
|
18655
|
+
"reasons": []
|
|
18656
|
+
}
|
|
18657
|
+
},
|
|
18658
|
+
{
|
|
18659
|
+
"id": "monte-carlo-prevent",
|
|
18660
|
+
"path": "skills/monte-carlo-prevent",
|
|
18661
|
+
"category": "data",
|
|
18662
|
+
"name": "monte-carlo-prevent",
|
|
18663
|
+
"description": "Surfaces Monte Carlo data observability context (table health, alerts, lineage, blast radius) before SQL/dbt edits.",
|
|
18664
|
+
"risk": "safe",
|
|
18665
|
+
"source": "community",
|
|
18666
|
+
"date_added": "2026-04-08",
|
|
18667
|
+
"plugin": {
|
|
18668
|
+
"targets": {
|
|
18669
|
+
"codex": "supported",
|
|
18670
|
+
"claude": "supported"
|
|
18671
|
+
},
|
|
18672
|
+
"setup": {
|
|
18673
|
+
"type": "none",
|
|
18674
|
+
"summary": "",
|
|
18675
|
+
"docs": null
|
|
18676
|
+
},
|
|
18677
|
+
"reasons": []
|
|
18678
|
+
}
|
|
18679
|
+
},
|
|
18680
|
+
{
|
|
18681
|
+
"id": "monte-carlo-push-ingestion",
|
|
18682
|
+
"path": "skills/monte-carlo-push-ingestion",
|
|
18683
|
+
"category": "data",
|
|
18684
|
+
"name": "monte-carlo-push-ingestion",
|
|
18685
|
+
"description": "Expert guide for pushing metadata, lineage, and query logs to Monte Carlo from any data warehouse.",
|
|
18686
|
+
"risk": "safe",
|
|
18687
|
+
"source": "community",
|
|
18688
|
+
"date_added": "2026-04-08",
|
|
18689
|
+
"plugin": {
|
|
18690
|
+
"targets": {
|
|
18691
|
+
"codex": "supported",
|
|
18692
|
+
"claude": "supported"
|
|
18693
|
+
},
|
|
18694
|
+
"setup": {
|
|
18695
|
+
"type": "none",
|
|
18696
|
+
"summary": "",
|
|
18697
|
+
"docs": null
|
|
18698
|
+
},
|
|
18699
|
+
"reasons": []
|
|
18700
|
+
}
|
|
18701
|
+
},
|
|
18702
|
+
{
|
|
18703
|
+
"id": "monte-carlo-validation-notebook",
|
|
18704
|
+
"path": "skills/monte-carlo-validation-notebook",
|
|
18705
|
+
"category": "data",
|
|
18706
|
+
"name": "monte-carlo-validation-notebook",
|
|
18707
|
+
"description": "Generates SQL validation notebooks for dbt PR changes with before/after comparison queries.",
|
|
18708
|
+
"risk": "safe",
|
|
18709
|
+
"source": "community",
|
|
18710
|
+
"date_added": "2026-04-08",
|
|
18711
|
+
"plugin": {
|
|
18712
|
+
"targets": {
|
|
18713
|
+
"codex": "supported",
|
|
18714
|
+
"claude": "supported"
|
|
18715
|
+
},
|
|
18716
|
+
"setup": {
|
|
18717
|
+
"type": "none",
|
|
18718
|
+
"summary": "",
|
|
18719
|
+
"docs": null
|
|
18720
|
+
},
|
|
18721
|
+
"reasons": []
|
|
18722
|
+
}
|
|
18723
|
+
},
|
|
18546
18724
|
{
|
|
18547
18725
|
"id": "moodle-external-api-development",
|
|
18548
18726
|
"path": "skills/moodle-external-api-development",
|
|
@@ -18966,7 +19144,7 @@
|
|
|
18966
19144
|
"path": "skills/neon-postgres",
|
|
18967
19145
|
"category": "database",
|
|
18968
19146
|
"name": "neon-postgres",
|
|
18969
|
-
"description": "
|
|
19147
|
+
"description": "Expert patterns for Neon serverless Postgres, branching, connection pooling, and Prisma/Drizzle integration",
|
|
18970
19148
|
"risk": "safe",
|
|
18971
19149
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
18972
19150
|
"date_added": "2026-02-27",
|
|
@@ -19184,9 +19362,9 @@
|
|
|
19184
19362
|
{
|
|
19185
19363
|
"id": "nextjs-supabase-auth",
|
|
19186
19364
|
"path": "skills/nextjs-supabase-auth",
|
|
19187
|
-
"category": "
|
|
19365
|
+
"category": "uncategorized",
|
|
19188
19366
|
"name": "nextjs-supabase-auth",
|
|
19189
|
-
"description": "Expert integration of Supabase Auth with Next.js App Router
|
|
19367
|
+
"description": "Expert integration of Supabase Auth with Next.js App Router",
|
|
19190
19368
|
"risk": "none",
|
|
19191
19369
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
19192
19370
|
"date_added": "2026-02-27",
|
|
@@ -19343,7 +19521,7 @@
|
|
|
19343
19521
|
"path": "skills/notion-template-business",
|
|
19344
19522
|
"category": "business",
|
|
19345
19523
|
"name": "notion-template-business",
|
|
19346
|
-
"description": "
|
|
19524
|
+
"description": "Expert in building and selling Notion templates as a business - not just making templates, but building a sustainable digital product business. Covers template design, pricing, marketplaces, marketing, and scaling to real revenue.",
|
|
19347
19525
|
"risk": "unknown",
|
|
19348
19526
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
19349
19527
|
"date_added": "2026-02-27",
|
|
@@ -20815,9 +20993,9 @@
|
|
|
20815
20993
|
{
|
|
20816
20994
|
"id": "personal-tool-builder",
|
|
20817
20995
|
"path": "skills/personal-tool-builder",
|
|
20818
|
-
"category": "
|
|
20996
|
+
"category": "uncategorized",
|
|
20819
20997
|
"name": "personal-tool-builder",
|
|
20820
|
-
"description": "
|
|
20998
|
+
"description": "Expert in building custom tools that solve your own problems first. The best products often start as personal tools - scratch your own itch, build for yourself, then discover others have the same itch.",
|
|
20821
20999
|
"risk": "critical",
|
|
20822
21000
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
20823
21001
|
"date_added": "2026-02-27",
|
|
@@ -20949,7 +21127,7 @@
|
|
|
20949
21127
|
"path": "skills/plaid-fintech",
|
|
20950
21128
|
"category": "api-integration",
|
|
20951
21129
|
"name": "plaid-fintech",
|
|
20952
|
-
"description": "
|
|
21130
|
+
"description": "Expert patterns for Plaid API integration including Link token flows, transactions sync, identity verification, Auth for ACH, balance checks, webhook handling, and fintech compliance best practices.",
|
|
20953
21131
|
"risk": "unknown",
|
|
20954
21132
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
20955
21133
|
"date_added": "2026-02-27",
|
|
@@ -21809,7 +21987,7 @@
|
|
|
21809
21987
|
"path": "skills/prompt-caching",
|
|
21810
21988
|
"category": "ai-ml",
|
|
21811
21989
|
"name": "prompt-caching",
|
|
21812
|
-
"description": "
|
|
21990
|
+
"description": "Caching strategies for LLM prompts including Anthropic prompt caching, response caching, and CAG (Cache Augmented Generation)",
|
|
21813
21991
|
"risk": "none",
|
|
21814
21992
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
21815
21993
|
"date_added": "2026-02-27",
|
|
@@ -22315,7 +22493,7 @@
|
|
|
22315
22493
|
"path": "skills/rag-engineer",
|
|
22316
22494
|
"category": "data-ai",
|
|
22317
22495
|
"name": "rag-engineer",
|
|
22318
|
-
"description": "
|
|
22496
|
+
"description": "Expert in building Retrieval-Augmented Generation systems. Masters embedding models, vector databases, chunking strategies, and retrieval optimization for LLM applications.",
|
|
22319
22497
|
"risk": "unknown",
|
|
22320
22498
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
22321
22499
|
"date_added": "2026-02-27",
|
|
@@ -23283,7 +23461,7 @@
|
|
|
23283
23461
|
"path": "skills/salesforce-development",
|
|
23284
23462
|
"category": "api-integration",
|
|
23285
23463
|
"name": "salesforce-development",
|
|
23286
|
-
"description": "
|
|
23464
|
+
"description": "Expert patterns for Salesforce platform development including Lightning Web Components (LWC), Apex triggers and classes, REST/Bulk APIs, Connected Apps, and Salesforce DX with scratch orgs and 2nd generation packages (2GP).",
|
|
23287
23465
|
"risk": "safe",
|
|
23288
23466
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
23289
23467
|
"date_added": "2026-02-27",
|
|
@@ -23366,6 +23544,28 @@
|
|
|
23366
23544
|
"reasons": []
|
|
23367
23545
|
}
|
|
23368
23546
|
},
|
|
23547
|
+
{
|
|
23548
|
+
"id": "satori",
|
|
23549
|
+
"path": "skills/satori",
|
|
23550
|
+
"category": "personal-development",
|
|
23551
|
+
"name": "satori",
|
|
23552
|
+
"description": "Clinically informed wisdom companion blending psychology and philosophy into a structured thinking partner",
|
|
23553
|
+
"risk": "safe",
|
|
23554
|
+
"source": "community",
|
|
23555
|
+
"date_added": "2026-04-06",
|
|
23556
|
+
"plugin": {
|
|
23557
|
+
"targets": {
|
|
23558
|
+
"codex": "supported",
|
|
23559
|
+
"claude": "supported"
|
|
23560
|
+
},
|
|
23561
|
+
"setup": {
|
|
23562
|
+
"type": "none",
|
|
23563
|
+
"summary": "",
|
|
23564
|
+
"docs": null
|
|
23565
|
+
},
|
|
23566
|
+
"reasons": []
|
|
23567
|
+
}
|
|
23568
|
+
},
|
|
23369
23569
|
{
|
|
23370
23570
|
"id": "scala-pro",
|
|
23371
23571
|
"path": "skills/scala-pro",
|
|
@@ -23569,7 +23769,7 @@
|
|
|
23569
23769
|
"path": "skills/scroll-experience",
|
|
23570
23770
|
"category": "front-end",
|
|
23571
23771
|
"name": "scroll-experience",
|
|
23572
|
-
"description": "
|
|
23772
|
+
"description": "Expert in building immersive scroll-driven experiences - parallax storytelling, scroll animations, interactive narratives, and cinematic web experiences. Like NY Times interactives, Apple product pages, and award-winning web experiences.",
|
|
23573
23773
|
"risk": "unknown",
|
|
23574
23774
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
23575
23775
|
"date_added": "2026-02-27",
|
|
@@ -23877,7 +24077,7 @@
|
|
|
23877
24077
|
"path": "skills/segment-cdp",
|
|
23878
24078
|
"category": "data",
|
|
23879
24079
|
"name": "segment-cdp",
|
|
23880
|
-
"description": "
|
|
24080
|
+
"description": "Expert patterns for Segment Customer Data Platform including Analytics.js, server-side tracking, tracking plans with Protocols, identity resolution, destinations configuration, and data governance best practices.",
|
|
23881
24081
|
"risk": "safe",
|
|
23882
24082
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
23883
24083
|
"date_added": "2026-02-27",
|
|
@@ -25045,7 +25245,7 @@
|
|
|
25045
25245
|
"path": "skills/shopify-apps",
|
|
25046
25246
|
"category": "api-integration",
|
|
25047
25247
|
"name": "shopify-apps",
|
|
25048
|
-
"description": "
|
|
25248
|
+
"description": "Expert patterns for Shopify app development including Remix/React Router apps, embedded apps with App Bridge, webhook handling, GraphQL Admin API, Polaris components, billing, and app extensions.",
|
|
25049
25249
|
"risk": "safe",
|
|
25050
25250
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
25051
25251
|
"date_added": "2026-02-27",
|
|
@@ -25513,7 +25713,7 @@
|
|
|
25513
25713
|
"path": "skills/slack-bot-builder",
|
|
25514
25714
|
"category": "api-integration",
|
|
25515
25715
|
"name": "slack-bot-builder",
|
|
25516
|
-
"description": "
|
|
25716
|
+
"description": "Build Slack apps using the Bolt framework across Python, JavaScript, and Java. Covers Block Kit for rich UIs, interactive components, slash commands, event handling, OAuth installation flows, and Workflow Builder integration.",
|
|
25517
25717
|
"risk": "unknown",
|
|
25518
25718
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
25519
25719
|
"date_added": "2026-02-27",
|
|
@@ -27079,7 +27279,7 @@
|
|
|
27079
27279
|
"path": "skills/telegram-bot-builder",
|
|
27080
27280
|
"category": "api-integration",
|
|
27081
27281
|
"name": "telegram-bot-builder",
|
|
27082
|
-
"description": "
|
|
27282
|
+
"description": "Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategies, and scaling bots to thousands of users.",
|
|
27083
27283
|
"risk": "unknown",
|
|
27084
27284
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
27085
27285
|
"date_added": "2026-02-27",
|
|
@@ -27099,9 +27299,9 @@
|
|
|
27099
27299
|
{
|
|
27100
27300
|
"id": "telegram-mini-app",
|
|
27101
27301
|
"path": "skills/telegram-mini-app",
|
|
27102
|
-
"category": "
|
|
27302
|
+
"category": "uncategorized",
|
|
27103
27303
|
"name": "telegram-mini-app",
|
|
27104
|
-
"description": "
|
|
27304
|
+
"description": "Expert in building Telegram Mini Apps (TWA) - web apps that run inside Telegram with native-like experience. Covers the TON ecosystem, Telegram Web App API, payments, user authentication, and building viral mini apps that monetize.",
|
|
27105
27305
|
"risk": "unknown",
|
|
27106
27306
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
27107
27307
|
"date_added": "2026-02-27",
|
|
@@ -27959,7 +28159,7 @@
|
|
|
27959
28159
|
"path": "skills/trigger-dev",
|
|
27960
28160
|
"category": "workflow",
|
|
27961
28161
|
"name": "trigger-dev",
|
|
27962
|
-
"description": "
|
|
28162
|
+
"description": "Trigger.dev expert for background jobs, AI workflows, and reliable async execution with excellent developer experience and TypeScript-first design.",
|
|
27963
28163
|
"risk": "unknown",
|
|
27964
28164
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
27965
28165
|
"date_added": "2026-02-27",
|
|
@@ -28069,7 +28269,7 @@
|
|
|
28069
28269
|
"path": "skills/twilio-communications",
|
|
28070
28270
|
"category": "api-integration",
|
|
28071
28271
|
"name": "twilio-communications",
|
|
28072
|
-
"description": "
|
|
28272
|
+
"description": "Build communication features with Twilio: SMS messaging, voice calls, WhatsApp Business API, and user verification (2FA). Covers the full spectrum from simple notifications to complex IVR systems and multi-channel authentication.",
|
|
28073
28273
|
"risk": "unknown",
|
|
28074
28274
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
28075
28275
|
"date_added": "2026-02-27",
|
|
@@ -28174,6 +28374,138 @@
|
|
|
28174
28374
|
"reasons": []
|
|
28175
28375
|
}
|
|
28176
28376
|
},
|
|
28377
|
+
{
|
|
28378
|
+
"id": "ui-a11y",
|
|
28379
|
+
"path": "skills/ui-a11y",
|
|
28380
|
+
"category": "design",
|
|
28381
|
+
"name": "ui-a11y",
|
|
28382
|
+
"description": "Audit a StyleSeed-based component or page for WCAG 2.2 AA issues and apply practical accessibility fixes where the code makes them safe.",
|
|
28383
|
+
"risk": "safe",
|
|
28384
|
+
"source": "community",
|
|
28385
|
+
"date_added": "2026-04-08",
|
|
28386
|
+
"plugin": {
|
|
28387
|
+
"targets": {
|
|
28388
|
+
"codex": "supported",
|
|
28389
|
+
"claude": "supported"
|
|
28390
|
+
},
|
|
28391
|
+
"setup": {
|
|
28392
|
+
"type": "none",
|
|
28393
|
+
"summary": "",
|
|
28394
|
+
"docs": null
|
|
28395
|
+
},
|
|
28396
|
+
"reasons": []
|
|
28397
|
+
}
|
|
28398
|
+
},
|
|
28399
|
+
{
|
|
28400
|
+
"id": "ui-component",
|
|
28401
|
+
"path": "skills/ui-component",
|
|
28402
|
+
"category": "design",
|
|
28403
|
+
"name": "ui-component",
|
|
28404
|
+
"description": "Generate a new UI component that follows StyleSeed Toss conventions for structure, tokens, accessibility, and component ergonomics.",
|
|
28405
|
+
"risk": "safe",
|
|
28406
|
+
"source": "community",
|
|
28407
|
+
"date_added": "2026-04-08",
|
|
28408
|
+
"plugin": {
|
|
28409
|
+
"targets": {
|
|
28410
|
+
"codex": "supported",
|
|
28411
|
+
"claude": "supported"
|
|
28412
|
+
},
|
|
28413
|
+
"setup": {
|
|
28414
|
+
"type": "none",
|
|
28415
|
+
"summary": "",
|
|
28416
|
+
"docs": null
|
|
28417
|
+
},
|
|
28418
|
+
"reasons": []
|
|
28419
|
+
}
|
|
28420
|
+
},
|
|
28421
|
+
{
|
|
28422
|
+
"id": "ui-page",
|
|
28423
|
+
"path": "skills/ui-page",
|
|
28424
|
+
"category": "design",
|
|
28425
|
+
"name": "ui-page",
|
|
28426
|
+
"description": "Scaffold a new mobile-first page using StyleSeed Toss layout patterns, section rhythm, and existing shell components.",
|
|
28427
|
+
"risk": "safe",
|
|
28428
|
+
"source": "community",
|
|
28429
|
+
"date_added": "2026-04-08",
|
|
28430
|
+
"plugin": {
|
|
28431
|
+
"targets": {
|
|
28432
|
+
"codex": "supported",
|
|
28433
|
+
"claude": "supported"
|
|
28434
|
+
},
|
|
28435
|
+
"setup": {
|
|
28436
|
+
"type": "none",
|
|
28437
|
+
"summary": "",
|
|
28438
|
+
"docs": null
|
|
28439
|
+
},
|
|
28440
|
+
"reasons": []
|
|
28441
|
+
}
|
|
28442
|
+
},
|
|
28443
|
+
{
|
|
28444
|
+
"id": "ui-pattern",
|
|
28445
|
+
"path": "skills/ui-pattern",
|
|
28446
|
+
"category": "design",
|
|
28447
|
+
"name": "ui-pattern",
|
|
28448
|
+
"description": "Generate reusable UI patterns such as card sections, grids, lists, forms, and chart wrappers using StyleSeed Toss primitives.",
|
|
28449
|
+
"risk": "safe",
|
|
28450
|
+
"source": "community",
|
|
28451
|
+
"date_added": "2026-04-08",
|
|
28452
|
+
"plugin": {
|
|
28453
|
+
"targets": {
|
|
28454
|
+
"codex": "supported",
|
|
28455
|
+
"claude": "supported"
|
|
28456
|
+
},
|
|
28457
|
+
"setup": {
|
|
28458
|
+
"type": "none",
|
|
28459
|
+
"summary": "",
|
|
28460
|
+
"docs": null
|
|
28461
|
+
},
|
|
28462
|
+
"reasons": []
|
|
28463
|
+
}
|
|
28464
|
+
},
|
|
28465
|
+
{
|
|
28466
|
+
"id": "ui-review",
|
|
28467
|
+
"path": "skills/ui-review",
|
|
28468
|
+
"category": "design",
|
|
28469
|
+
"name": "ui-review",
|
|
28470
|
+
"description": "Review UI code for StyleSeed design-system compliance, accessibility, mobile ergonomics, spacing discipline, and implementation quality.",
|
|
28471
|
+
"risk": "safe",
|
|
28472
|
+
"source": "community",
|
|
28473
|
+
"date_added": "2026-04-08",
|
|
28474
|
+
"plugin": {
|
|
28475
|
+
"targets": {
|
|
28476
|
+
"codex": "supported",
|
|
28477
|
+
"claude": "supported"
|
|
28478
|
+
},
|
|
28479
|
+
"setup": {
|
|
28480
|
+
"type": "none",
|
|
28481
|
+
"summary": "",
|
|
28482
|
+
"docs": null
|
|
28483
|
+
},
|
|
28484
|
+
"reasons": []
|
|
28485
|
+
}
|
|
28486
|
+
},
|
|
28487
|
+
{
|
|
28488
|
+
"id": "ui-setup",
|
|
28489
|
+
"path": "skills/ui-setup",
|
|
28490
|
+
"category": "design",
|
|
28491
|
+
"name": "ui-setup",
|
|
28492
|
+
"description": "Interactive StyleSeed setup wizard for choosing app type, brand color, visual style, typography, and the first screen scaffold.",
|
|
28493
|
+
"risk": "safe",
|
|
28494
|
+
"source": "community",
|
|
28495
|
+
"date_added": "2026-04-08",
|
|
28496
|
+
"plugin": {
|
|
28497
|
+
"targets": {
|
|
28498
|
+
"codex": "supported",
|
|
28499
|
+
"claude": "supported"
|
|
28500
|
+
},
|
|
28501
|
+
"setup": {
|
|
28502
|
+
"type": "none",
|
|
28503
|
+
"summary": "",
|
|
28504
|
+
"docs": null
|
|
28505
|
+
},
|
|
28506
|
+
"reasons": []
|
|
28507
|
+
}
|
|
28508
|
+
},
|
|
28177
28509
|
{
|
|
28178
28510
|
"id": "ui-skills",
|
|
28179
28511
|
"path": "skills/ui-skills",
|
|
@@ -28196,6 +28528,28 @@
|
|
|
28196
28528
|
"reasons": []
|
|
28197
28529
|
}
|
|
28198
28530
|
},
|
|
28531
|
+
{
|
|
28532
|
+
"id": "ui-tokens",
|
|
28533
|
+
"path": "skills/ui-tokens",
|
|
28534
|
+
"category": "design",
|
|
28535
|
+
"name": "ui-tokens",
|
|
28536
|
+
"description": "List, add, and update StyleSeed design tokens while keeping JSON sources, CSS variables, and dark-mode values in sync.",
|
|
28537
|
+
"risk": "safe",
|
|
28538
|
+
"source": "community",
|
|
28539
|
+
"date_added": "2026-04-08",
|
|
28540
|
+
"plugin": {
|
|
28541
|
+
"targets": {
|
|
28542
|
+
"codex": "supported",
|
|
28543
|
+
"claude": "supported"
|
|
28544
|
+
},
|
|
28545
|
+
"setup": {
|
|
28546
|
+
"type": "none",
|
|
28547
|
+
"summary": "",
|
|
28548
|
+
"docs": null
|
|
28549
|
+
},
|
|
28550
|
+
"reasons": []
|
|
28551
|
+
}
|
|
28552
|
+
},
|
|
28199
28553
|
{
|
|
28200
28554
|
"id": "ui-ux-designer",
|
|
28201
28555
|
"path": "skills/ui-ux-designer",
|
|
@@ -28443,7 +28797,7 @@
|
|
|
28443
28797
|
"path": "skills/upstash-qstash",
|
|
28444
28798
|
"category": "workflow",
|
|
28445
28799
|
"name": "upstash-qstash",
|
|
28446
|
-
"description": "
|
|
28800
|
+
"description": "Upstash QStash expert for serverless message queues, scheduled jobs, and reliable HTTP-based task delivery without managing infrastructure.",
|
|
28447
28801
|
"risk": "unknown",
|
|
28448
28802
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
28449
28803
|
"date_added": "2026-02-27",
|
|
@@ -28550,6 +28904,94 @@
|
|
|
28550
28904
|
"reasons": []
|
|
28551
28905
|
}
|
|
28552
28906
|
},
|
|
28907
|
+
{
|
|
28908
|
+
"id": "ux-audit",
|
|
28909
|
+
"path": "skills/ux-audit",
|
|
28910
|
+
"category": "design",
|
|
28911
|
+
"name": "ux-audit",
|
|
28912
|
+
"description": "Audit screens against Nielsen's heuristics and mobile UX best practices using the StyleSeed Toss design language as the implementation context.",
|
|
28913
|
+
"risk": "safe",
|
|
28914
|
+
"source": "community",
|
|
28915
|
+
"date_added": "2026-04-08",
|
|
28916
|
+
"plugin": {
|
|
28917
|
+
"targets": {
|
|
28918
|
+
"codex": "supported",
|
|
28919
|
+
"claude": "supported"
|
|
28920
|
+
},
|
|
28921
|
+
"setup": {
|
|
28922
|
+
"type": "none",
|
|
28923
|
+
"summary": "",
|
|
28924
|
+
"docs": null
|
|
28925
|
+
},
|
|
28926
|
+
"reasons": []
|
|
28927
|
+
}
|
|
28928
|
+
},
|
|
28929
|
+
{
|
|
28930
|
+
"id": "ux-copy",
|
|
28931
|
+
"path": "skills/ux-copy",
|
|
28932
|
+
"category": "design",
|
|
28933
|
+
"name": "ux-copy",
|
|
28934
|
+
"description": "Generate UX microcopy in StyleSeed's Toss-inspired voice for buttons, empty states, errors, toasts, confirmations, and form guidance.",
|
|
28935
|
+
"risk": "safe",
|
|
28936
|
+
"source": "community",
|
|
28937
|
+
"date_added": "2026-04-08",
|
|
28938
|
+
"plugin": {
|
|
28939
|
+
"targets": {
|
|
28940
|
+
"codex": "supported",
|
|
28941
|
+
"claude": "supported"
|
|
28942
|
+
},
|
|
28943
|
+
"setup": {
|
|
28944
|
+
"type": "none",
|
|
28945
|
+
"summary": "",
|
|
28946
|
+
"docs": null
|
|
28947
|
+
},
|
|
28948
|
+
"reasons": []
|
|
28949
|
+
}
|
|
28950
|
+
},
|
|
28951
|
+
{
|
|
28952
|
+
"id": "ux-feedback",
|
|
28953
|
+
"path": "skills/ux-feedback",
|
|
28954
|
+
"category": "design",
|
|
28955
|
+
"name": "ux-feedback",
|
|
28956
|
+
"description": "Add loading, empty, error, and success feedback states to StyleSeed components and pages with practical mobile-first rules.",
|
|
28957
|
+
"risk": "safe",
|
|
28958
|
+
"source": "community",
|
|
28959
|
+
"date_added": "2026-04-08",
|
|
28960
|
+
"plugin": {
|
|
28961
|
+
"targets": {
|
|
28962
|
+
"codex": "supported",
|
|
28963
|
+
"claude": "supported"
|
|
28964
|
+
},
|
|
28965
|
+
"setup": {
|
|
28966
|
+
"type": "none",
|
|
28967
|
+
"summary": "",
|
|
28968
|
+
"docs": null
|
|
28969
|
+
},
|
|
28970
|
+
"reasons": []
|
|
28971
|
+
}
|
|
28972
|
+
},
|
|
28973
|
+
{
|
|
28974
|
+
"id": "ux-flow",
|
|
28975
|
+
"path": "skills/ux-flow",
|
|
28976
|
+
"category": "design",
|
|
28977
|
+
"name": "ux-flow",
|
|
28978
|
+
"description": "Design user flows and screen structure using StyleSeed UX patterns such as progressive disclosure, hub-and-spoke navigation, and information pyramids.",
|
|
28979
|
+
"risk": "safe",
|
|
28980
|
+
"source": "community",
|
|
28981
|
+
"date_added": "2026-04-08",
|
|
28982
|
+
"plugin": {
|
|
28983
|
+
"targets": {
|
|
28984
|
+
"codex": "supported",
|
|
28985
|
+
"claude": "supported"
|
|
28986
|
+
},
|
|
28987
|
+
"setup": {
|
|
28988
|
+
"type": "none",
|
|
28989
|
+
"summary": "",
|
|
28990
|
+
"docs": null
|
|
28991
|
+
},
|
|
28992
|
+
"reasons": []
|
|
28993
|
+
}
|
|
28994
|
+
},
|
|
28553
28995
|
{
|
|
28554
28996
|
"id": "ux-persuasion-engineer",
|
|
28555
28997
|
"path": "skills/ux-persuasion-engineer",
|
|
@@ -28753,9 +29195,9 @@
|
|
|
28753
29195
|
{
|
|
28754
29196
|
"id": "vercel-deployment",
|
|
28755
29197
|
"path": "skills/vercel-deployment",
|
|
28756
|
-
"category": "
|
|
29198
|
+
"category": "uncategorized",
|
|
28757
29199
|
"name": "vercel-deployment",
|
|
28758
|
-
"description": "Expert knowledge for deploying to Vercel with Next.js
|
|
29200
|
+
"description": "Expert knowledge for deploying to Vercel with Next.js",
|
|
28759
29201
|
"risk": "safe",
|
|
28760
29202
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
28761
29203
|
"date_added": "2026-02-27",
|
|
@@ -28953,7 +29395,7 @@
|
|
|
28953
29395
|
"path": "skills/viral-generator-builder",
|
|
28954
29396
|
"category": "marketing",
|
|
28955
29397
|
"name": "viral-generator-builder",
|
|
28956
|
-
"description": "
|
|
29398
|
+
"description": "Expert in building shareable generator tools that go viral - name generators, quiz makers, avatar creators, personality tests, and calculator tools. Covers the psychology of sharing, viral mechanics, and building tools people can't resist sharing with friends.",
|
|
28957
29399
|
"risk": "unknown",
|
|
28958
29400
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
28959
29401
|
"date_added": "2026-02-27",
|
|
@@ -29019,7 +29461,7 @@
|
|
|
29019
29461
|
"path": "skills/voice-agents",
|
|
29020
29462
|
"category": "ai-ml",
|
|
29021
29463
|
"name": "voice-agents",
|
|
29022
|
-
"description": "
|
|
29464
|
+
"description": "Voice agents represent the frontier of AI interaction - humans speaking naturally with AI systems.",
|
|
29023
29465
|
"risk": "safe",
|
|
29024
29466
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
29025
29467
|
"date_added": "2026-02-27",
|
|
@@ -29041,7 +29483,7 @@
|
|
|
29041
29483
|
"path": "skills/voice-ai-development",
|
|
29042
29484
|
"category": "voice-agents",
|
|
29043
29485
|
"name": "voice-ai-development",
|
|
29044
|
-
"description": "
|
|
29486
|
+
"description": "Expert in building voice AI applications - from real-time voice agents to voice-enabled apps. Covers OpenAI Realtime API, Vapi for voice agents, Deepgram for transcription, ElevenLabs for synthesis, LiveKit for real-time infrastructure, and WebRTC fundamentals.",
|
|
29045
29487
|
"risk": "unknown",
|
|
29046
29488
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
29047
29489
|
"date_added": "2026-02-27",
|
|
@@ -29789,7 +30231,7 @@
|
|
|
29789
30231
|
"path": "skills/workflow-automation",
|
|
29790
30232
|
"category": "workflow",
|
|
29791
30233
|
"name": "workflow-automation",
|
|
29792
|
-
"description": "
|
|
30234
|
+
"description": "Workflow automation is the infrastructure that makes AI agents reliable. Without durable execution, a network hiccup during a 10-step payment flow means lost money and angry customers. With it, workflows resume exactly where they left off.",
|
|
29793
30235
|
"risk": "critical",
|
|
29794
30236
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
29795
30237
|
"date_added": "2026-02-27",
|
|
@@ -30207,7 +30649,7 @@
|
|
|
30207
30649
|
"path": "skills/zapier-make-patterns",
|
|
30208
30650
|
"category": "automation",
|
|
30209
30651
|
"name": "zapier-make-patterns",
|
|
30210
|
-
"description": "
|
|
30652
|
+
"description": "No-code automation democratizes workflow building. Zapier and Make (formerly Integromat) let non-developers automate business processes without writing code. But no-code doesn't mean no-complexity - these platforms have their own patterns, pitfalls, and breaking points.",
|
|
30211
30653
|
"risk": "unknown",
|
|
30212
30654
|
"source": "vibeship-spawner-skills (Apache 2.0)",
|
|
30213
30655
|
"date_added": "2026-02-27",
|
|
@@ -30356,4 +30798,4 @@
|
|
|
30356
30798
|
"reasons": []
|
|
30357
30799
|
}
|
|
30358
30800
|
}
|
|
30359
|
-
]
|
|
30801
|
+
]
|