opencode-skills-collection 4.0.69 → 4.0.70
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 +39 -1
- package/bundled-skills/api-integration-architect/SKILL.md +241 -0
- package/bundled-skills/apify-generate-output-schema/SKILL.md +438 -0
- package/bundled-skills/apify-integration-development/SKILL.md +168 -0
- package/bundled-skills/apify-integration-development/references/ai-framework-package.md +158 -0
- package/bundled-skills/apify-integration-development/references/ai-harness-plugin.md +192 -0
- package/bundled-skills/apify-integration-development/references/sdk-integration.md +236 -0
- package/bundled-skills/apify-integration-development/references/workflow-automation.md +163 -0
- package/bundled-skills/architecture-review/README.md +42 -0
- package/bundled-skills/architecture-review/SKILL.md +77 -0
- package/bundled-skills/architecture-review/examples.md +11 -0
- package/bundled-skills/architecture-review/reference/best-practices.md +7 -0
- package/bundled-skills/architecture-review/reference/capabilities.md +20 -0
- package/bundled-skills/architecture-review/reference/fallbacks.md +11 -0
- package/bundled-skills/architecture-review/reference/graph.md +15 -0
- package/bundled-skills/architecture-review/reference/mcp.md +14 -0
- package/bundled-skills/architecture-review/reference/workflow.md +15 -0
- package/bundled-skills/architecture-review/templates/architecture-review.md +21 -0
- package/bundled-skills/code-review-sensei/SKILL.md +177 -0
- package/bundled-skills/codebase-onboarding/README.md +42 -0
- package/bundled-skills/codebase-onboarding/SKILL.md +77 -0
- package/bundled-skills/codebase-onboarding/examples.md +11 -0
- package/bundled-skills/codebase-onboarding/reference/best-practices.md +7 -0
- package/bundled-skills/codebase-onboarding/reference/capabilities.md +20 -0
- package/bundled-skills/codebase-onboarding/reference/fallbacks.md +11 -0
- package/bundled-skills/codebase-onboarding/reference/graph.md +15 -0
- package/bundled-skills/codebase-onboarding/reference/mcp.md +14 -0
- package/bundled-skills/codebase-onboarding/reference/workflow.md +15 -0
- package/bundled-skills/codebase-onboarding/templates/repository-onboarding.md +21 -0
- package/bundled-skills/connection-auth-rules/SKILL.md +199 -0
- package/bundled-skills/connection-auth-rules/fetch_schema.py +320 -0
- package/bundled-skills/dependency-analysis/README.md +42 -0
- package/bundled-skills/dependency-analysis/SKILL.md +76 -0
- package/bundled-skills/dependency-analysis/examples.md +11 -0
- package/bundled-skills/dependency-analysis/reference/best-practices.md +7 -0
- package/bundled-skills/dependency-analysis/reference/capabilities.md +20 -0
- package/bundled-skills/dependency-analysis/reference/fallbacks.md +11 -0
- package/bundled-skills/dependency-analysis/reference/graph.md +15 -0
- package/bundled-skills/dependency-analysis/reference/mcp.md +14 -0
- package/bundled-skills/dependency-analysis/reference/workflow.md +15 -0
- package/bundled-skills/dependency-analysis/templates/dependency-review.md +21 -0
- package/bundled-skills/devops-pipeline-builder/SKILL.md +200 -0
- package/bundled-skills/eas-app-stores/SKILL.md +197 -0
- package/bundled-skills/eas-app-stores/agents/openai.yaml +4 -0
- package/bundled-skills/eas-app-stores/references/app-store-metadata.md +497 -0
- package/bundled-skills/eas-app-stores/references/ios-app-store.md +376 -0
- package/bundled-skills/eas-app-stores/references/native-ios.md +167 -0
- package/bundled-skills/eas-app-stores/references/play-store.md +244 -0
- package/bundled-skills/eas-app-stores/references/testflight.md +62 -0
- package/bundled-skills/eas-app-stores/references/workflows.md +120 -0
- package/bundled-skills/eas-hosting/SKILL.md +448 -0
- package/bundled-skills/eas-hosting/agents/openai.yaml +4 -0
- package/bundled-skills/eas-observe/SKILL.md +75 -0
- package/bundled-skills/eas-observe/agents/openai.yaml +4 -0
- package/bundled-skills/eas-observe/references/metrics.md +98 -0
- package/bundled-skills/eas-observe/references/queries.md +403 -0
- package/bundled-skills/eas-observe/references/setup.md +476 -0
- package/bundled-skills/eas-observe/references/third-party.md +136 -0
- package/bundled-skills/eas-simulator/SKILL.md +251 -0
- package/bundled-skills/eas-simulator/agents/openai.yaml +4 -0
- package/bundled-skills/eas-simulator/references/controllers.md +135 -0
- package/bundled-skills/eas-simulator/references/run-your-app.md +240 -0
- package/bundled-skills/eas-simulator/references/troubleshooting.md +47 -0
- package/bundled-skills/eas-workflows/SKILL.md +119 -0
- package/bundled-skills/eas-workflows/agents/openai.yaml +4 -0
- package/bundled-skills/eas-workflows/scripts/fetch.js +109 -0
- package/bundled-skills/expo-animation/LICENSE +21 -0
- package/bundled-skills/expo-animation/RECIPES.md +385 -0
- package/bundled-skills/expo-animation/SKILL.md +295 -0
- package/bundled-skills/expo-animation/agents/openai.yaml +4 -0
- package/bundled-skills/fact-check-x-unified/SKILL.md +178 -0
- package/bundled-skills/fact-check-x-unified/agents/openai.yaml +4 -0
- package/bundled-skills/fact-check-x-unified/references/acceptance-criteria.md +44 -0
- package/bundled-skills/fact-check-x-unified/references/contracts.md +39 -0
- package/bundled-skills/fact-check-x-unified/scripts/common.py +31 -0
- package/bundled-skills/fact-check-x-unified/scripts/fact_check_x.py +1832 -0
- package/bundled-skills/fact-check-x-unified/scripts/trusted_search_config.py +324 -0
- package/bundled-skills/fact-check-x-unified/tests/anchor_downgrade_test.py +90 -0
- package/bundled-skills/fact-check-x-unified/tests/multi_platform_test.py +369 -0
- package/bundled-skills/fact-check-x-unified/tests/smoke_test.py +740 -0
- package/bundled-skills/fact-check-x-unified/tests/stage_checkpoint_test.py +103 -0
- package/bundled-skills/fact-check-x-unified/tests/trusted_search_config_test.py +156 -0
- package/bundled-skills/gpt-taste/SKILL.md +8 -1
- package/bundled-skills/hf-cli/SKILL.md +263 -0
- package/bundled-skills/huggingface-community-evals/SKILL.md +228 -0
- package/bundled-skills/huggingface-community-evals/examples/.env.example +3 -0
- package/bundled-skills/huggingface-community-evals/examples/USAGE_EXAMPLES.md +101 -0
- package/bundled-skills/huggingface-community-evals/scripts/inspect_eval_uv.py +104 -0
- package/bundled-skills/huggingface-community-evals/scripts/inspect_vllm_uv.py +306 -0
- package/bundled-skills/huggingface-community-evals/scripts/lighteval_vllm_uv.py +297 -0
- package/bundled-skills/huggingface-datasets/SKILL.md +130 -0
- package/bundled-skills/jev-social/SKILL.md +182 -0
- package/bundled-skills/longbridge-derivatives/SKILL.md +117 -0
- package/bundled-skills/longbridge-derivatives/references/option.md +36 -0
- package/bundled-skills/longbridge-derivatives/references/options-advanced.md +101 -0
- package/bundled-skills/longbridge-derivatives/references/options-pnl.md +74 -0
- package/bundled-skills/longbridge-derivatives/references/options-strategy.md +82 -0
- package/bundled-skills/longbridge-derivatives/references/options-volatility.md +70 -0
- package/bundled-skills/longbridge-derivatives/references/warrant.md +12 -0
- package/bundled-skills/longbridge-quant/SKILL.md +151 -0
- package/bundled-skills/longbridge-quant/references/correlation.md +51 -0
- package/bundled-skills/longbridge-quant/references/execution-model.md +68 -0
- package/bundled-skills/longbridge-quant/references/factor-research.md +95 -0
- package/bundled-skills/longbridge-quant/references/factor-screen.md +101 -0
- package/bundled-skills/longbridge-quant/references/hedging.md +136 -0
- package/bundled-skills/longbridge-quant/references/ml-strategy.md +77 -0
- package/bundled-skills/longbridge-quant/references/multifactor.md +68 -0
- package/bundled-skills/longbridge-quant/references/pairs-trading.md +61 -0
- package/bundled-skills/longbridge-quant/references/quant-cli.md +133 -0
- package/bundled-skills/longbridge-quant/references/quant-stats.md +150 -0
- package/bundled-skills/longbridge-quant/references/seasonality.md +50 -0
- package/bundled-skills/longbridge-quant/references/strategy-optimizer.md +68 -0
- package/bundled-skills/longbridge-quant/references/volatility-strategy.md +52 -0
- package/bundled-skills/longbridge-research/SKILL.md +187 -0
- package/bundled-skills/longbridge-research/references/company-profile.md +96 -0
- package/bundled-skills/longbridge-research/references/company-tearsheet.md +82 -0
- package/bundled-skills/longbridge-research/references/competitive-analysis.md +81 -0
- package/bundled-skills/longbridge-research/references/consensus.md +92 -0
- package/bundled-skills/longbridge-research/references/coverage-initiation.md +76 -0
- package/bundled-skills/longbridge-research/references/defi-yield.md +60 -0
- package/bundled-skills/longbridge-research/references/finance-calendar.md +165 -0
- package/bundled-skills/longbridge-research/references/financial-planning.md +77 -0
- package/bundled-skills/longbridge-research/references/forecast-eps.md +39 -0
- package/bundled-skills/longbridge-research/references/fund-holder.md +44 -0
- package/bundled-skills/longbridge-research/references/hkipo-analysis.md +101 -0
- package/bundled-skills/longbridge-research/references/industry-peers.md +46 -0
- package/bundled-skills/longbridge-research/references/industry-rank.md +62 -0
- package/bundled-skills/longbridge-research/references/insider-trades.md +48 -0
- package/bundled-skills/longbridge-research/references/institution-rating.md +62 -0
- package/bundled-skills/longbridge-research/references/investment-ideas.md +69 -0
- package/bundled-skills/longbridge-research/references/investment-proposal.md +95 -0
- package/bundled-skills/longbridge-research/references/investors.md +87 -0
- package/bundled-skills/longbridge-research/references/onchain.md +70 -0
- package/bundled-skills/longbridge-research/references/post-investment.md +76 -0
- package/bundled-skills/longbridge-research/references/shareholder.md +72 -0
- package/bundled-skills/longbridge-research/references/short-positions.md +50 -0
- package/bundled-skills/longbridge-research/references/short-trades.md +50 -0
- package/bundled-skills/longbridge-research/references/stock-research.md +61 -0
- package/bundled-skills/longbridge-research/references/thesis-tracker.md +64 -0
- package/bundled-skills/makepad-2-0-animation/SKILL.md +318 -0
- package/bundled-skills/makepad-2-0-animation/references/animator-reference.md +433 -0
- package/bundled-skills/makepad-2-0-dsl/SKILL.md +492 -0
- package/bundled-skills/makepad-2-0-dsl/references/dsl-syntax-reference.md +511 -0
- package/bundled-skills/makepad-2-0-dsl/references/extended-guide.md +56 -0
- package/bundled-skills/makepad-2-0-dsl/references/property-system.md +757 -0
- package/bundled-skills/makepad-2-0-events/SKILL.md +497 -0
- package/bundled-skills/makepad-2-0-events/references/event-patterns.md +802 -0
- package/bundled-skills/makepad-2-0-events/references/extended-guide.md +590 -0
- package/bundled-skills/makepad-2-0-layout/SKILL.md +499 -0
- package/bundled-skills/makepad-2-0-layout/references/extended-guide.md +243 -0
- package/bundled-skills/makepad-2-0-layout/references/layout-patterns.md +881 -0
- package/bundled-skills/makepad-2-0-widgets/SKILL.md +261 -0
- package/bundled-skills/makepad-2-0-widgets/references/widget-advanced.md +648 -0
- package/bundled-skills/makepad-2-0-widgets/references/widget-catalog.md +547 -0
- package/bundled-skills/meeting-distiller-pro/SKILL.md +120 -0
- package/bundled-skills/monte-carlo-analyze-root-cause/SKILL.md +12 -1
- package/bundled-skills/monte-carlo-asset-health/SKILL.md +12 -1
- package/bundled-skills/monte-carlo-context-detection/SKILL.md +170 -0
- package/bundled-skills/monte-carlo-context-detection/references/signal-definitions.md +46 -0
- package/bundled-skills/remotion-captions/SKILL.md +57 -0
- package/bundled-skills/remotion-captions/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-captions/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-captions/display-captions.md +190 -0
- package/bundled-skills/remotion-captions/import-srt-captions.md +73 -0
- package/bundled-skills/remotion-captions/transcribe-captions.md +70 -0
- package/bundled-skills/remotion-create/SKILL.md +106 -0
- package/bundled-skills/remotion-create/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-create/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-create/tailwind.md +11 -0
- package/bundled-skills/remotion-create/video-layout.md +9 -0
- package/bundled-skills/remotion-docs/SKILL.md +67 -0
- package/bundled-skills/remotion-docs/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-docs/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-interactivity/SKILL.md +270 -0
- package/bundled-skills/remotion-interactivity/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-interactivity/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-render/SKILL.md +48 -0
- package/bundled-skills/remotion-render/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-render/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-render/transparent-videos.md +106 -0
- package/bundled-skills/saas-pricing-strategist/SKILL.md +169 -0
- package/bundled-skills/score-eval/SKILL.md +35 -0
- package/bundled-skills/writing-guidelines/SKILL.md +60 -0
- package/package.json +1 -1
- package/skills_index.json +980 -3
package/skills_index.json
CHANGED
|
@@ -3387,6 +3387,39 @@
|
|
|
3387
3387
|
"license": "MIT",
|
|
3388
3388
|
"license_source": "https://github.com/LambdaTest/agent-skills/blob/main/LICENSE"
|
|
3389
3389
|
},
|
|
3390
|
+
{
|
|
3391
|
+
"id": "api-integration-architect",
|
|
3392
|
+
"path": "skills/api-integration-architect",
|
|
3393
|
+
"category": "backend",
|
|
3394
|
+
"name": "api-integration-architect",
|
|
3395
|
+
"description": "Design, implement, debug, and optimize API integrations with expert-level patterns for REST, GraphQL, webhooks, and authentication flows.",
|
|
3396
|
+
"risk": "unknown",
|
|
3397
|
+
"source": "community",
|
|
3398
|
+
"date_added": "2026-09-21",
|
|
3399
|
+
"plugin": {
|
|
3400
|
+
"targets": {
|
|
3401
|
+
"codex": "supported",
|
|
3402
|
+
"claude": "supported"
|
|
3403
|
+
},
|
|
3404
|
+
"setup": {
|
|
3405
|
+
"type": "none",
|
|
3406
|
+
"summary": "",
|
|
3407
|
+
"docs": null
|
|
3408
|
+
},
|
|
3409
|
+
"reasons": []
|
|
3410
|
+
},
|
|
3411
|
+
"source_type": "community",
|
|
3412
|
+
"source_repo": "demo112/yunqu-ai-skills",
|
|
3413
|
+
"tags": [
|
|
3414
|
+
"api",
|
|
3415
|
+
"integration",
|
|
3416
|
+
"rest",
|
|
3417
|
+
"graphql",
|
|
3418
|
+
"webhooks",
|
|
3419
|
+
"authentication",
|
|
3420
|
+
"debugging"
|
|
3421
|
+
]
|
|
3422
|
+
},
|
|
3390
3423
|
{
|
|
3391
3424
|
"id": "api-onboarding",
|
|
3392
3425
|
"path": "skills/api-onboarding",
|
|
@@ -3742,6 +3775,30 @@
|
|
|
3742
3775
|
]
|
|
3743
3776
|
}
|
|
3744
3777
|
},
|
|
3778
|
+
{
|
|
3779
|
+
"id": "apify-generate-output-schema",
|
|
3780
|
+
"path": "skills/apify-generate-output-schema",
|
|
3781
|
+
"category": "automation",
|
|
3782
|
+
"name": "apify-generate-output-schema",
|
|
3783
|
+
"description": "Generate output schemas (dataset_schema.json, output_schema.json, key_value_store_schema.json) for an Apify Actor by analyzing its source code. Use when creating or updating Actor output schemas.",
|
|
3784
|
+
"risk": "unknown",
|
|
3785
|
+
"source": "apify",
|
|
3786
|
+
"date_added": "2026-09-21",
|
|
3787
|
+
"plugin": {
|
|
3788
|
+
"targets": {
|
|
3789
|
+
"codex": "supported",
|
|
3790
|
+
"claude": "supported"
|
|
3791
|
+
},
|
|
3792
|
+
"setup": {
|
|
3793
|
+
"type": "none",
|
|
3794
|
+
"summary": "",
|
|
3795
|
+
"docs": null
|
|
3796
|
+
},
|
|
3797
|
+
"reasons": []
|
|
3798
|
+
},
|
|
3799
|
+
"source_type": "official",
|
|
3800
|
+
"source_repo": "apify/agent-skills"
|
|
3801
|
+
},
|
|
3745
3802
|
{
|
|
3746
3803
|
"id": "apify-influencer-discovery",
|
|
3747
3804
|
"path": "skills/apify-influencer-discovery",
|
|
@@ -3764,6 +3821,30 @@
|
|
|
3764
3821
|
"reasons": []
|
|
3765
3822
|
}
|
|
3766
3823
|
},
|
|
3824
|
+
{
|
|
3825
|
+
"id": "apify-integration-development",
|
|
3826
|
+
"path": "skills/apify-integration-development",
|
|
3827
|
+
"category": "automation",
|
|
3828
|
+
"name": "apify-integration-development",
|
|
3829
|
+
"description": "Curated upstream guidance for Apify Integration Development; use when the workflow matches the user goal.",
|
|
3830
|
+
"risk": "unknown",
|
|
3831
|
+
"source": "apify",
|
|
3832
|
+
"date_added": "2026-09-21",
|
|
3833
|
+
"plugin": {
|
|
3834
|
+
"targets": {
|
|
3835
|
+
"codex": "supported",
|
|
3836
|
+
"claude": "supported"
|
|
3837
|
+
},
|
|
3838
|
+
"setup": {
|
|
3839
|
+
"type": "none",
|
|
3840
|
+
"summary": "",
|
|
3841
|
+
"docs": null
|
|
3842
|
+
},
|
|
3843
|
+
"reasons": []
|
|
3844
|
+
},
|
|
3845
|
+
"source_type": "official",
|
|
3846
|
+
"source_repo": "apify/agent-skills"
|
|
3847
|
+
},
|
|
3767
3848
|
{
|
|
3768
3849
|
"id": "apify-lead-generation",
|
|
3769
3850
|
"path": "skills/apify-lead-generation",
|
|
@@ -4223,6 +4304,31 @@
|
|
|
4223
4304
|
"reasons": []
|
|
4224
4305
|
}
|
|
4225
4306
|
},
|
|
4307
|
+
{
|
|
4308
|
+
"id": "architecture-review",
|
|
4309
|
+
"path": "skills/architecture-review",
|
|
4310
|
+
"category": "uncategorized",
|
|
4311
|
+
"name": "architecture-review",
|
|
4312
|
+
"description": "Review repository architecture using Ontoly Software Graph and MCP capabilities. Use when asked to explain architecture, module boundaries, package topology, service ownership, or architectural risk.",
|
|
4313
|
+
"risk": "unknown",
|
|
4314
|
+
"source": "community",
|
|
4315
|
+
"date_added": "2026-09-21",
|
|
4316
|
+
"plugin": {
|
|
4317
|
+
"targets": {
|
|
4318
|
+
"codex": "supported",
|
|
4319
|
+
"claude": "supported"
|
|
4320
|
+
},
|
|
4321
|
+
"setup": {
|
|
4322
|
+
"type": "none",
|
|
4323
|
+
"summary": "",
|
|
4324
|
+
"docs": null
|
|
4325
|
+
},
|
|
4326
|
+
"reasons": []
|
|
4327
|
+
},
|
|
4328
|
+
"source_type": "community",
|
|
4329
|
+
"source_repo": "0xsarwagya/ontoly",
|
|
4330
|
+
"license": "AGPL-3.0-only"
|
|
4331
|
+
},
|
|
4226
4332
|
{
|
|
4227
4333
|
"id": "argocd-gitops",
|
|
4228
4334
|
"path": "skills/argocd-gitops",
|
|
@@ -12995,6 +13101,37 @@
|
|
|
12995
13101
|
"reasons": []
|
|
12996
13102
|
}
|
|
12997
13103
|
},
|
|
13104
|
+
{
|
|
13105
|
+
"id": "code-review-sensei",
|
|
13106
|
+
"path": "skills/code-review-sensei",
|
|
13107
|
+
"category": "development",
|
|
13108
|
+
"name": "code-review-sensei",
|
|
13109
|
+
"description": "Expert code reviewer that catches bugs, security issues, performance problems, and design flaws with actionable fix suggestions.",
|
|
13110
|
+
"risk": "unknown",
|
|
13111
|
+
"source": "community",
|
|
13112
|
+
"date_added": "2026-09-21",
|
|
13113
|
+
"plugin": {
|
|
13114
|
+
"targets": {
|
|
13115
|
+
"codex": "supported",
|
|
13116
|
+
"claude": "supported"
|
|
13117
|
+
},
|
|
13118
|
+
"setup": {
|
|
13119
|
+
"type": "none",
|
|
13120
|
+
"summary": "",
|
|
13121
|
+
"docs": null
|
|
13122
|
+
},
|
|
13123
|
+
"reasons": []
|
|
13124
|
+
},
|
|
13125
|
+
"source_type": "community",
|
|
13126
|
+
"source_repo": "demo112/yunqu-ai-skills",
|
|
13127
|
+
"tags": [
|
|
13128
|
+
"code-review",
|
|
13129
|
+
"security",
|
|
13130
|
+
"performance",
|
|
13131
|
+
"quality",
|
|
13132
|
+
"debugging"
|
|
13133
|
+
]
|
|
13134
|
+
},
|
|
12998
13135
|
{
|
|
12999
13136
|
"id": "code-reviewer",
|
|
13000
13137
|
"path": "skills/code-reviewer",
|
|
@@ -13288,6 +13425,31 @@
|
|
|
13288
13425
|
"coding-agents"
|
|
13289
13426
|
]
|
|
13290
13427
|
},
|
|
13428
|
+
{
|
|
13429
|
+
"id": "codebase-onboarding",
|
|
13430
|
+
"path": "skills/codebase-onboarding",
|
|
13431
|
+
"category": "development",
|
|
13432
|
+
"name": "codebase-onboarding",
|
|
13433
|
+
"description": "Onboard a developer to a repository using Ontoly graph summaries. Use when asked to explain a new codebase, identify entrypoints, map packages, or suggest first files to inspect.",
|
|
13434
|
+
"risk": "unknown",
|
|
13435
|
+
"source": "community",
|
|
13436
|
+
"date_added": "2026-09-21",
|
|
13437
|
+
"plugin": {
|
|
13438
|
+
"targets": {
|
|
13439
|
+
"codex": "supported",
|
|
13440
|
+
"claude": "supported"
|
|
13441
|
+
},
|
|
13442
|
+
"setup": {
|
|
13443
|
+
"type": "none",
|
|
13444
|
+
"summary": "",
|
|
13445
|
+
"docs": null
|
|
13446
|
+
},
|
|
13447
|
+
"reasons": []
|
|
13448
|
+
},
|
|
13449
|
+
"source_type": "community",
|
|
13450
|
+
"source_repo": "0xsarwagya/ontoly",
|
|
13451
|
+
"license": "AGPL-3.0-only"
|
|
13452
|
+
},
|
|
13291
13453
|
{
|
|
13292
13454
|
"id": "codebase-to-wordpress-converter",
|
|
13293
13455
|
"path": "skills/codebase-to-wordpress-converter",
|
|
@@ -14201,6 +14363,30 @@
|
|
|
14201
14363
|
"reasons": []
|
|
14202
14364
|
}
|
|
14203
14365
|
},
|
|
14366
|
+
{
|
|
14367
|
+
"id": "connection-auth-rules",
|
|
14368
|
+
"path": "skills/connection-auth-rules",
|
|
14369
|
+
"category": "uncategorized",
|
|
14370
|
+
"name": "connection-auth-rules",
|
|
14371
|
+
"description": "Build a Connection Auth Rules for a Monte Carlo connection type. Fetches live connector schemas and transform steps from the apollo-agent repo.",
|
|
14372
|
+
"risk": "unknown",
|
|
14373
|
+
"source": "community",
|
|
14374
|
+
"date_added": "2026-09-21",
|
|
14375
|
+
"plugin": {
|
|
14376
|
+
"targets": {
|
|
14377
|
+
"codex": "supported",
|
|
14378
|
+
"claude": "supported"
|
|
14379
|
+
},
|
|
14380
|
+
"setup": {
|
|
14381
|
+
"type": "none",
|
|
14382
|
+
"summary": "",
|
|
14383
|
+
"docs": null
|
|
14384
|
+
},
|
|
14385
|
+
"reasons": []
|
|
14386
|
+
},
|
|
14387
|
+
"source_type": "community",
|
|
14388
|
+
"source_repo": "monte-carlo-data/mc-agent-toolkit"
|
|
14389
|
+
},
|
|
14204
14390
|
{
|
|
14205
14391
|
"id": "constant-time-analysis",
|
|
14206
14392
|
"path": "skills/constant-time-analysis",
|
|
@@ -17299,6 +17485,31 @@
|
|
|
17299
17485
|
"reasons": []
|
|
17300
17486
|
}
|
|
17301
17487
|
},
|
|
17488
|
+
{
|
|
17489
|
+
"id": "dependency-analysis",
|
|
17490
|
+
"path": "skills/dependency-analysis",
|
|
17491
|
+
"category": "uncategorized",
|
|
17492
|
+
"name": "dependency-analysis",
|
|
17493
|
+
"description": "Analyze internal and package dependencies using Ontoly graph traversal. Use when asked which modules, packages, services, or files depend on each other.",
|
|
17494
|
+
"risk": "unknown",
|
|
17495
|
+
"source": "community",
|
|
17496
|
+
"date_added": "2026-09-21",
|
|
17497
|
+
"plugin": {
|
|
17498
|
+
"targets": {
|
|
17499
|
+
"codex": "supported",
|
|
17500
|
+
"claude": "supported"
|
|
17501
|
+
},
|
|
17502
|
+
"setup": {
|
|
17503
|
+
"type": "none",
|
|
17504
|
+
"summary": "",
|
|
17505
|
+
"docs": null
|
|
17506
|
+
},
|
|
17507
|
+
"reasons": []
|
|
17508
|
+
},
|
|
17509
|
+
"source_type": "community",
|
|
17510
|
+
"source_repo": "0xsarwagya/ontoly",
|
|
17511
|
+
"license": "AGPL-3.0-only"
|
|
17512
|
+
},
|
|
17302
17513
|
{
|
|
17303
17514
|
"id": "dependency-management-deps-audit",
|
|
17304
17515
|
"path": "skills/dependency-management-deps-audit",
|
|
@@ -18188,6 +18399,38 @@
|
|
|
18188
18399
|
"github-actions"
|
|
18189
18400
|
]
|
|
18190
18401
|
},
|
|
18402
|
+
{
|
|
18403
|
+
"id": "devops-pipeline-builder",
|
|
18404
|
+
"path": "skills/devops-pipeline-builder",
|
|
18405
|
+
"category": "devops",
|
|
18406
|
+
"name": "devops-pipeline-builder",
|
|
18407
|
+
"description": "Design and implement CI/CD pipelines, Docker configurations, deployment strategies, and infrastructure automation with production-ready patterns.",
|
|
18408
|
+
"risk": "unknown",
|
|
18409
|
+
"source": "community",
|
|
18410
|
+
"date_added": "2026-09-21",
|
|
18411
|
+
"plugin": {
|
|
18412
|
+
"targets": {
|
|
18413
|
+
"codex": "supported",
|
|
18414
|
+
"claude": "supported"
|
|
18415
|
+
},
|
|
18416
|
+
"setup": {
|
|
18417
|
+
"type": "none",
|
|
18418
|
+
"summary": "",
|
|
18419
|
+
"docs": null
|
|
18420
|
+
},
|
|
18421
|
+
"reasons": []
|
|
18422
|
+
},
|
|
18423
|
+
"source_type": "community",
|
|
18424
|
+
"source_repo": "demo112/yunqu-ai-skills",
|
|
18425
|
+
"tags": [
|
|
18426
|
+
"devops",
|
|
18427
|
+
"ci-cd",
|
|
18428
|
+
"docker",
|
|
18429
|
+
"kubernetes",
|
|
18430
|
+
"deployment",
|
|
18431
|
+
"automation"
|
|
18432
|
+
]
|
|
18433
|
+
},
|
|
18191
18434
|
{
|
|
18192
18435
|
"id": "devops-troubleshooter",
|
|
18193
18436
|
"path": "skills/devops-troubleshooter",
|
|
@@ -19591,6 +19834,106 @@
|
|
|
19591
19834
|
"voice"
|
|
19592
19835
|
]
|
|
19593
19836
|
},
|
|
19837
|
+
{
|
|
19838
|
+
"id": "eas-app-stores",
|
|
19839
|
+
"path": "skills/eas-app-stores",
|
|
19840
|
+
"category": "uncategorized",
|
|
19841
|
+
"name": "eas-app-stores",
|
|
19842
|
+
"description": "Curated upstream guidance for Eas App Stores; use when the workflow matches the user goal.",
|
|
19843
|
+
"risk": "unknown",
|
|
19844
|
+
"source": "expo",
|
|
19845
|
+
"date_added": "2026-09-21",
|
|
19846
|
+
"plugin": {
|
|
19847
|
+
"targets": {
|
|
19848
|
+
"codex": "supported",
|
|
19849
|
+
"claude": "supported"
|
|
19850
|
+
},
|
|
19851
|
+
"setup": {
|
|
19852
|
+
"type": "none",
|
|
19853
|
+
"summary": "",
|
|
19854
|
+
"docs": null
|
|
19855
|
+
},
|
|
19856
|
+
"reasons": []
|
|
19857
|
+
},
|
|
19858
|
+
"source_type": "official",
|
|
19859
|
+
"source_repo": "expo/skills",
|
|
19860
|
+
"license": "MIT"
|
|
19861
|
+
},
|
|
19862
|
+
{
|
|
19863
|
+
"id": "eas-hosting",
|
|
19864
|
+
"path": "skills/eas-hosting",
|
|
19865
|
+
"category": "uncategorized",
|
|
19866
|
+
"name": "eas-hosting",
|
|
19867
|
+
"description": "Curated upstream guidance for Eas Hosting; use when the workflow matches the user goal.",
|
|
19868
|
+
"risk": "unknown",
|
|
19869
|
+
"source": "expo",
|
|
19870
|
+
"date_added": "2026-09-21",
|
|
19871
|
+
"plugin": {
|
|
19872
|
+
"targets": {
|
|
19873
|
+
"codex": "supported",
|
|
19874
|
+
"claude": "supported"
|
|
19875
|
+
},
|
|
19876
|
+
"setup": {
|
|
19877
|
+
"type": "none",
|
|
19878
|
+
"summary": "",
|
|
19879
|
+
"docs": null
|
|
19880
|
+
},
|
|
19881
|
+
"reasons": []
|
|
19882
|
+
},
|
|
19883
|
+
"source_type": "official",
|
|
19884
|
+
"source_repo": "expo/skills",
|
|
19885
|
+
"license": "MIT"
|
|
19886
|
+
},
|
|
19887
|
+
{
|
|
19888
|
+
"id": "eas-observe",
|
|
19889
|
+
"path": "skills/eas-observe",
|
|
19890
|
+
"category": "uncategorized",
|
|
19891
|
+
"name": "eas-observe",
|
|
19892
|
+
"description": "Curated upstream guidance for Eas Observe; use when the workflow matches the user goal.",
|
|
19893
|
+
"risk": "unknown",
|
|
19894
|
+
"source": "expo",
|
|
19895
|
+
"date_added": "2026-09-21",
|
|
19896
|
+
"plugin": {
|
|
19897
|
+
"targets": {
|
|
19898
|
+
"codex": "supported",
|
|
19899
|
+
"claude": "supported"
|
|
19900
|
+
},
|
|
19901
|
+
"setup": {
|
|
19902
|
+
"type": "none",
|
|
19903
|
+
"summary": "",
|
|
19904
|
+
"docs": null
|
|
19905
|
+
},
|
|
19906
|
+
"reasons": []
|
|
19907
|
+
},
|
|
19908
|
+
"source_type": "official",
|
|
19909
|
+
"source_repo": "expo/skills",
|
|
19910
|
+
"license": "MIT"
|
|
19911
|
+
},
|
|
19912
|
+
{
|
|
19913
|
+
"id": "eas-simulator",
|
|
19914
|
+
"path": "skills/eas-simulator",
|
|
19915
|
+
"category": "uncategorized",
|
|
19916
|
+
"name": "eas-simulator",
|
|
19917
|
+
"description": "Curated upstream guidance for Eas Simulator; use when the workflow matches the user goal.",
|
|
19918
|
+
"risk": "unknown",
|
|
19919
|
+
"source": "expo",
|
|
19920
|
+
"date_added": "2026-09-21",
|
|
19921
|
+
"plugin": {
|
|
19922
|
+
"targets": {
|
|
19923
|
+
"codex": "supported",
|
|
19924
|
+
"claude": "supported"
|
|
19925
|
+
},
|
|
19926
|
+
"setup": {
|
|
19927
|
+
"type": "none",
|
|
19928
|
+
"summary": "",
|
|
19929
|
+
"docs": null
|
|
19930
|
+
},
|
|
19931
|
+
"reasons": []
|
|
19932
|
+
},
|
|
19933
|
+
"source_type": "official",
|
|
19934
|
+
"source_repo": "expo/skills",
|
|
19935
|
+
"license": "MIT"
|
|
19936
|
+
},
|
|
19594
19937
|
{
|
|
19595
19938
|
"id": "eas-update-insights",
|
|
19596
19939
|
"path": "skills/eas-update-insights",
|
|
@@ -19617,6 +19960,30 @@
|
|
|
19617
19960
|
"license": "MIT",
|
|
19618
19961
|
"license_source": "https://github.com/expo/skills/blob/main/LICENSE"
|
|
19619
19962
|
},
|
|
19963
|
+
{
|
|
19964
|
+
"id": "eas-workflows",
|
|
19965
|
+
"path": "skills/eas-workflows",
|
|
19966
|
+
"category": "uncategorized",
|
|
19967
|
+
"name": "eas-workflows",
|
|
19968
|
+
"description": "Curated upstream guidance for Eas Workflows; use when the workflow matches the user goal.",
|
|
19969
|
+
"risk": "unknown",
|
|
19970
|
+
"source": "expo",
|
|
19971
|
+
"date_added": "2026-09-21",
|
|
19972
|
+
"plugin": {
|
|
19973
|
+
"targets": {
|
|
19974
|
+
"codex": "supported",
|
|
19975
|
+
"claude": "supported"
|
|
19976
|
+
},
|
|
19977
|
+
"setup": {
|
|
19978
|
+
"type": "none",
|
|
19979
|
+
"summary": "",
|
|
19980
|
+
"docs": null
|
|
19981
|
+
},
|
|
19982
|
+
"reasons": []
|
|
19983
|
+
},
|
|
19984
|
+
"source_type": "official",
|
|
19985
|
+
"source_repo": "expo/skills"
|
|
19986
|
+
},
|
|
19620
19987
|
{
|
|
19621
19988
|
"id": "ebpf-observability",
|
|
19622
19989
|
"path": "skills/ebpf-observability",
|
|
@@ -20768,6 +21135,31 @@
|
|
|
20768
21135
|
"reasons": []
|
|
20769
21136
|
}
|
|
20770
21137
|
},
|
|
21138
|
+
{
|
|
21139
|
+
"id": "expo-animation",
|
|
21140
|
+
"path": "skills/expo-animation",
|
|
21141
|
+
"category": "mobile",
|
|
21142
|
+
"name": "expo-animation",
|
|
21143
|
+
"description": "Curated upstream guidance for Expo Animation; use when the workflow matches the user goal.",
|
|
21144
|
+
"risk": "unknown",
|
|
21145
|
+
"source": "expo",
|
|
21146
|
+
"date_added": "2026-09-21",
|
|
21147
|
+
"plugin": {
|
|
21148
|
+
"targets": {
|
|
21149
|
+
"codex": "supported",
|
|
21150
|
+
"claude": "supported"
|
|
21151
|
+
},
|
|
21152
|
+
"setup": {
|
|
21153
|
+
"type": "none",
|
|
21154
|
+
"summary": "",
|
|
21155
|
+
"docs": null
|
|
21156
|
+
},
|
|
21157
|
+
"reasons": []
|
|
21158
|
+
},
|
|
21159
|
+
"source_type": "official",
|
|
21160
|
+
"source_repo": "expo/skills",
|
|
21161
|
+
"license": "MIT"
|
|
21162
|
+
},
|
|
20771
21163
|
{
|
|
20772
21164
|
"id": "expo-api-routes",
|
|
20773
21165
|
"path": "skills/expo-api-routes",
|
|
@@ -21167,6 +21559,31 @@
|
|
|
21167
21559
|
"source-verification"
|
|
21168
21560
|
]
|
|
21169
21561
|
},
|
|
21562
|
+
{
|
|
21563
|
+
"id": "fact-check-x-unified",
|
|
21564
|
+
"path": "skills/fact-check-x-unified",
|
|
21565
|
+
"category": "uncategorized",
|
|
21566
|
+
"name": "fact-check-x-unified",
|
|
21567
|
+
"description": "Fact-Check-X 流程编排能力,依次组织各方答案汇总、各方答案聚合(未核验)、权威核验后的最终答案和各方答案测评,生成可打开、可审计、可迁移的阶段产物与完整报告包。",
|
|
21568
|
+
"risk": "unknown",
|
|
21569
|
+
"source": "asi2030",
|
|
21570
|
+
"date_added": "2026-09-21",
|
|
21571
|
+
"plugin": {
|
|
21572
|
+
"targets": {
|
|
21573
|
+
"codex": "supported",
|
|
21574
|
+
"claude": "supported"
|
|
21575
|
+
},
|
|
21576
|
+
"setup": {
|
|
21577
|
+
"type": "none",
|
|
21578
|
+
"summary": "",
|
|
21579
|
+
"docs": null
|
|
21580
|
+
},
|
|
21581
|
+
"reasons": []
|
|
21582
|
+
},
|
|
21583
|
+
"source_type": "official",
|
|
21584
|
+
"source_repo": "asi2030/fact-check-x",
|
|
21585
|
+
"license": "Apache-2.0"
|
|
21586
|
+
},
|
|
21170
21587
|
{
|
|
21171
21588
|
"id": "faf-context",
|
|
21172
21589
|
"path": "skills/faf-context",
|
|
@@ -26649,6 +27066,30 @@
|
|
|
26649
27066
|
"reasons": []
|
|
26650
27067
|
}
|
|
26651
27068
|
},
|
|
27069
|
+
{
|
|
27070
|
+
"id": "hf-cli",
|
|
27071
|
+
"path": "skills/hf-cli",
|
|
27072
|
+
"category": "uncategorized",
|
|
27073
|
+
"name": "hf-cli",
|
|
27074
|
+
"description": "Curated upstream guidance for Hf Cli; use when the workflow matches the user goal.",
|
|
27075
|
+
"risk": "unknown",
|
|
27076
|
+
"source": "huggingface",
|
|
27077
|
+
"date_added": "2026-09-21",
|
|
27078
|
+
"plugin": {
|
|
27079
|
+
"targets": {
|
|
27080
|
+
"codex": "supported",
|
|
27081
|
+
"claude": "supported"
|
|
27082
|
+
},
|
|
27083
|
+
"setup": {
|
|
27084
|
+
"type": "none",
|
|
27085
|
+
"summary": "",
|
|
27086
|
+
"docs": null
|
|
27087
|
+
},
|
|
27088
|
+
"reasons": []
|
|
27089
|
+
},
|
|
27090
|
+
"source_type": "official",
|
|
27091
|
+
"source_repo": "huggingface/skills"
|
|
27092
|
+
},
|
|
26652
27093
|
{
|
|
26653
27094
|
"id": "hf-cloud-aws-context-discovery",
|
|
26654
27095
|
"path": "skills/hf-cloud-aws-context-discovery",
|
|
@@ -27683,6 +28124,56 @@
|
|
|
27683
28124
|
"license": "Apache-2.0",
|
|
27684
28125
|
"license_source": "https://github.com/huggingface/skills/blob/main/LICENSE"
|
|
27685
28126
|
},
|
|
28127
|
+
{
|
|
28128
|
+
"id": "huggingface-community-evals",
|
|
28129
|
+
"path": "skills/huggingface-community-evals",
|
|
28130
|
+
"category": "uncategorized",
|
|
28131
|
+
"name": "huggingface-community-evals",
|
|
28132
|
+
"description": "Curated upstream guidance for Huggingface Community Evals; use when the workflow matches the user goal.",
|
|
28133
|
+
"risk": "unknown",
|
|
28134
|
+
"source": "huggingface",
|
|
28135
|
+
"date_added": "2026-09-21",
|
|
28136
|
+
"plugin": {
|
|
28137
|
+
"targets": {
|
|
28138
|
+
"codex": "supported",
|
|
28139
|
+
"claude": "supported"
|
|
28140
|
+
},
|
|
28141
|
+
"setup": {
|
|
28142
|
+
"type": "none",
|
|
28143
|
+
"summary": "",
|
|
28144
|
+
"docs": null
|
|
28145
|
+
},
|
|
28146
|
+
"reasons": []
|
|
28147
|
+
},
|
|
28148
|
+
"source_type": "official",
|
|
28149
|
+
"source_repo": "huggingface/skills"
|
|
28150
|
+
},
|
|
28151
|
+
{
|
|
28152
|
+
"id": "huggingface-datasets",
|
|
28153
|
+
"path": "skills/huggingface-datasets",
|
|
28154
|
+
"category": "uncategorized",
|
|
28155
|
+
"name": "huggingface-datasets",
|
|
28156
|
+
"description": "Use this skill for Hugging Face Dataset Viewer API workflows that fetch subset/split metadata, paginate rows, search text, apply filters, download parquet URLs, and read size or statistics.",
|
|
28157
|
+
"risk": "unknown",
|
|
28158
|
+
"source": "huggingface",
|
|
28159
|
+
"date_added": "2026-09-21",
|
|
28160
|
+
"plugin": {
|
|
28161
|
+
"targets": {
|
|
28162
|
+
"codex": "blocked",
|
|
28163
|
+
"claude": "blocked"
|
|
28164
|
+
},
|
|
28165
|
+
"setup": {
|
|
28166
|
+
"type": "none",
|
|
28167
|
+
"summary": "",
|
|
28168
|
+
"docs": null
|
|
28169
|
+
},
|
|
28170
|
+
"reasons": [
|
|
28171
|
+
"target_specific_home_path"
|
|
28172
|
+
]
|
|
28173
|
+
},
|
|
28174
|
+
"source_type": "official",
|
|
28175
|
+
"source_repo": "huggingface/skills"
|
|
28176
|
+
},
|
|
27686
28177
|
{
|
|
27687
28178
|
"id": "huggingface-local-models",
|
|
27688
28179
|
"path": "skills/huggingface-local-models",
|
|
@@ -30927,6 +31418,41 @@
|
|
|
30927
31418
|
"license": "MIT",
|
|
30928
31419
|
"license_source": "https://github.com/LambdaTest/agent-skills/blob/main/LICENSE"
|
|
30929
31420
|
},
|
|
31421
|
+
{
|
|
31422
|
+
"id": "jev-social",
|
|
31423
|
+
"path": "skills/jev-social",
|
|
31424
|
+
"category": "research",
|
|
31425
|
+
"name": "jev-social",
|
|
31426
|
+
"description": "Run read-only, browser-grounded Instagram, TikTok, or LinkedIn research through Jev routing and socai CLI, returning source-linked evidence and reports.",
|
|
31427
|
+
"risk": "critical",
|
|
31428
|
+
"source": "community",
|
|
31429
|
+
"date_added": "2026-09-21",
|
|
31430
|
+
"plugin": {
|
|
31431
|
+
"targets": {
|
|
31432
|
+
"codex": "supported",
|
|
31433
|
+
"claude": "supported"
|
|
31434
|
+
},
|
|
31435
|
+
"setup": {
|
|
31436
|
+
"type": "none",
|
|
31437
|
+
"summary": "",
|
|
31438
|
+
"docs": null
|
|
31439
|
+
},
|
|
31440
|
+
"reasons": []
|
|
31441
|
+
},
|
|
31442
|
+
"source_type": "community",
|
|
31443
|
+
"source_repo": "socai-io/jev-social",
|
|
31444
|
+
"license": "MIT",
|
|
31445
|
+
"license_source": "https://github.com/socai-io/jev-social/blob/794aac59dbef0929ec57f2650504f4231fef598e/LICENSE",
|
|
31446
|
+
"tags": [
|
|
31447
|
+
"social-media",
|
|
31448
|
+
"research",
|
|
31449
|
+
"instagram",
|
|
31450
|
+
"tiktok",
|
|
31451
|
+
"linkedin",
|
|
31452
|
+
"browser-automation",
|
|
31453
|
+
"jev"
|
|
31454
|
+
]
|
|
31455
|
+
},
|
|
30930
31456
|
{
|
|
30931
31457
|
"id": "jev-use",
|
|
30932
31458
|
"path": "skills/jev-use",
|
|
@@ -33560,6 +34086,31 @@
|
|
|
33560
34086
|
"license": "MIT",
|
|
33561
34087
|
"license_source": "https://github.com/longbridge/skills/blob/main/LICENSE"
|
|
33562
34088
|
},
|
|
34089
|
+
{
|
|
34090
|
+
"id": "longbridge-derivatives",
|
|
34091
|
+
"path": "skills/longbridge-derivatives",
|
|
34092
|
+
"category": "uncategorized",
|
|
34093
|
+
"name": "longbridge-derivatives",
|
|
34094
|
+
"description": "Curated upstream guidance for Longbridge Derivatives; use when the workflow matches the user goal.",
|
|
34095
|
+
"risk": "unknown",
|
|
34096
|
+
"source": "longbridge",
|
|
34097
|
+
"date_added": "2026-09-21",
|
|
34098
|
+
"plugin": {
|
|
34099
|
+
"targets": {
|
|
34100
|
+
"codex": "supported",
|
|
34101
|
+
"claude": "supported"
|
|
34102
|
+
},
|
|
34103
|
+
"setup": {
|
|
34104
|
+
"type": "none",
|
|
34105
|
+
"summary": "",
|
|
34106
|
+
"docs": null
|
|
34107
|
+
},
|
|
34108
|
+
"reasons": []
|
|
34109
|
+
},
|
|
34110
|
+
"source_type": "official",
|
|
34111
|
+
"source_repo": "longbridge/skills",
|
|
34112
|
+
"license": "MIT"
|
|
34113
|
+
},
|
|
33563
34114
|
{
|
|
33564
34115
|
"id": "longbridge-fundamentals",
|
|
33565
34116
|
"path": "skills/longbridge-fundamentals",
|
|
@@ -33612,6 +34163,56 @@
|
|
|
33612
34163
|
"license": "MIT",
|
|
33613
34164
|
"license_source": "https://github.com/longbridge/skills/blob/main/LICENSE"
|
|
33614
34165
|
},
|
|
34166
|
+
{
|
|
34167
|
+
"id": "longbridge-quant",
|
|
34168
|
+
"path": "skills/longbridge-quant",
|
|
34169
|
+
"category": "uncategorized",
|
|
34170
|
+
"name": "longbridge-quant",
|
|
34171
|
+
"description": "Curated upstream guidance for Longbridge Quant; use when the workflow matches the user goal.",
|
|
34172
|
+
"risk": "unknown",
|
|
34173
|
+
"source": "longbridge",
|
|
34174
|
+
"date_added": "2026-09-21",
|
|
34175
|
+
"plugin": {
|
|
34176
|
+
"targets": {
|
|
34177
|
+
"codex": "supported",
|
|
34178
|
+
"claude": "supported"
|
|
34179
|
+
},
|
|
34180
|
+
"setup": {
|
|
34181
|
+
"type": "none",
|
|
34182
|
+
"summary": "",
|
|
34183
|
+
"docs": null
|
|
34184
|
+
},
|
|
34185
|
+
"reasons": []
|
|
34186
|
+
},
|
|
34187
|
+
"source_type": "official",
|
|
34188
|
+
"source_repo": "longbridge/skills",
|
|
34189
|
+
"license": "MIT"
|
|
34190
|
+
},
|
|
34191
|
+
{
|
|
34192
|
+
"id": "longbridge-research",
|
|
34193
|
+
"path": "skills/longbridge-research",
|
|
34194
|
+
"category": "uncategorized",
|
|
34195
|
+
"name": "longbridge-research",
|
|
34196
|
+
"description": "Curated upstream guidance for Longbridge Research; use when the workflow matches the user goal.",
|
|
34197
|
+
"risk": "unknown",
|
|
34198
|
+
"source": "longbridge",
|
|
34199
|
+
"date_added": "2026-09-21",
|
|
34200
|
+
"plugin": {
|
|
34201
|
+
"targets": {
|
|
34202
|
+
"codex": "supported",
|
|
34203
|
+
"claude": "supported"
|
|
34204
|
+
},
|
|
34205
|
+
"setup": {
|
|
34206
|
+
"type": "none",
|
|
34207
|
+
"summary": "",
|
|
34208
|
+
"docs": null
|
|
34209
|
+
},
|
|
34210
|
+
"reasons": []
|
|
34211
|
+
},
|
|
34212
|
+
"source_type": "official",
|
|
34213
|
+
"source_repo": "longbridge/skills",
|
|
34214
|
+
"license": "MIT"
|
|
34215
|
+
},
|
|
33615
34216
|
{
|
|
33616
34217
|
"id": "lookdev",
|
|
33617
34218
|
"path": "skills/lookdev",
|
|
@@ -34305,6 +34906,126 @@
|
|
|
34305
34906
|
"reasons": []
|
|
34306
34907
|
}
|
|
34307
34908
|
},
|
|
34909
|
+
{
|
|
34910
|
+
"id": "makepad-2-0-animation",
|
|
34911
|
+
"path": "skills/makepad-2-0-animation",
|
|
34912
|
+
"category": "development",
|
|
34913
|
+
"name": "makepad-2-0-animation",
|
|
34914
|
+
"description": "Makepad 2.0 guidance for animation; use when building or debugging Makepad UI code.",
|
|
34915
|
+
"risk": "unknown",
|
|
34916
|
+
"source": "community",
|
|
34917
|
+
"date_added": "2026-09-21",
|
|
34918
|
+
"plugin": {
|
|
34919
|
+
"targets": {
|
|
34920
|
+
"codex": "supported",
|
|
34921
|
+
"claude": "supported"
|
|
34922
|
+
},
|
|
34923
|
+
"setup": {
|
|
34924
|
+
"type": "none",
|
|
34925
|
+
"summary": "",
|
|
34926
|
+
"docs": null
|
|
34927
|
+
},
|
|
34928
|
+
"reasons": []
|
|
34929
|
+
},
|
|
34930
|
+
"source_type": "community",
|
|
34931
|
+
"source_repo": "zhanghandong/makepad-skills"
|
|
34932
|
+
},
|
|
34933
|
+
{
|
|
34934
|
+
"id": "makepad-2-0-dsl",
|
|
34935
|
+
"path": "skills/makepad-2-0-dsl",
|
|
34936
|
+
"category": "development",
|
|
34937
|
+
"name": "makepad-2-0-dsl",
|
|
34938
|
+
"description": "Makepad 2.0 guidance for dsl; use when building or debugging Makepad UI code.",
|
|
34939
|
+
"risk": "unknown",
|
|
34940
|
+
"source": "community",
|
|
34941
|
+
"date_added": "2026-09-21",
|
|
34942
|
+
"plugin": {
|
|
34943
|
+
"targets": {
|
|
34944
|
+
"codex": "supported",
|
|
34945
|
+
"claude": "supported"
|
|
34946
|
+
},
|
|
34947
|
+
"setup": {
|
|
34948
|
+
"type": "none",
|
|
34949
|
+
"summary": "",
|
|
34950
|
+
"docs": null
|
|
34951
|
+
},
|
|
34952
|
+
"reasons": []
|
|
34953
|
+
},
|
|
34954
|
+
"source_type": "community",
|
|
34955
|
+
"source_repo": "zhanghandong/makepad-skills"
|
|
34956
|
+
},
|
|
34957
|
+
{
|
|
34958
|
+
"id": "makepad-2-0-events",
|
|
34959
|
+
"path": "skills/makepad-2-0-events",
|
|
34960
|
+
"category": "development",
|
|
34961
|
+
"name": "makepad-2-0-events",
|
|
34962
|
+
"description": "Makepad 2.0 guidance for events; use when building or debugging Makepad UI code.",
|
|
34963
|
+
"risk": "unknown",
|
|
34964
|
+
"source": "community",
|
|
34965
|
+
"date_added": "2026-09-21",
|
|
34966
|
+
"plugin": {
|
|
34967
|
+
"targets": {
|
|
34968
|
+
"codex": "supported",
|
|
34969
|
+
"claude": "supported"
|
|
34970
|
+
},
|
|
34971
|
+
"setup": {
|
|
34972
|
+
"type": "none",
|
|
34973
|
+
"summary": "",
|
|
34974
|
+
"docs": null
|
|
34975
|
+
},
|
|
34976
|
+
"reasons": []
|
|
34977
|
+
},
|
|
34978
|
+
"source_type": "community",
|
|
34979
|
+
"source_repo": "zhanghandong/makepad-skills"
|
|
34980
|
+
},
|
|
34981
|
+
{
|
|
34982
|
+
"id": "makepad-2-0-layout",
|
|
34983
|
+
"path": "skills/makepad-2-0-layout",
|
|
34984
|
+
"category": "development",
|
|
34985
|
+
"name": "makepad-2-0-layout",
|
|
34986
|
+
"description": "Makepad 2.0 guidance for layout; use when building or debugging Makepad UI code.",
|
|
34987
|
+
"risk": "unknown",
|
|
34988
|
+
"source": "community",
|
|
34989
|
+
"date_added": "2026-09-21",
|
|
34990
|
+
"plugin": {
|
|
34991
|
+
"targets": {
|
|
34992
|
+
"codex": "supported",
|
|
34993
|
+
"claude": "supported"
|
|
34994
|
+
},
|
|
34995
|
+
"setup": {
|
|
34996
|
+
"type": "none",
|
|
34997
|
+
"summary": "",
|
|
34998
|
+
"docs": null
|
|
34999
|
+
},
|
|
35000
|
+
"reasons": []
|
|
35001
|
+
},
|
|
35002
|
+
"source_type": "community",
|
|
35003
|
+
"source_repo": "zhanghandong/makepad-skills"
|
|
35004
|
+
},
|
|
35005
|
+
{
|
|
35006
|
+
"id": "makepad-2-0-widgets",
|
|
35007
|
+
"path": "skills/makepad-2-0-widgets",
|
|
35008
|
+
"category": "development",
|
|
35009
|
+
"name": "makepad-2-0-widgets",
|
|
35010
|
+
"description": "Makepad 2.0 guidance for widgets; use when building or debugging Makepad UI code.",
|
|
35011
|
+
"risk": "unknown",
|
|
35012
|
+
"source": "community",
|
|
35013
|
+
"date_added": "2026-09-21",
|
|
35014
|
+
"plugin": {
|
|
35015
|
+
"targets": {
|
|
35016
|
+
"codex": "supported",
|
|
35017
|
+
"claude": "supported"
|
|
35018
|
+
},
|
|
35019
|
+
"setup": {
|
|
35020
|
+
"type": "none",
|
|
35021
|
+
"summary": "",
|
|
35022
|
+
"docs": null
|
|
35023
|
+
},
|
|
35024
|
+
"reasons": []
|
|
35025
|
+
},
|
|
35026
|
+
"source_type": "community",
|
|
35027
|
+
"source_repo": "zhanghandong/makepad-skills"
|
|
35028
|
+
},
|
|
34308
35029
|
{
|
|
34309
35030
|
"id": "makepad-animation",
|
|
34310
35031
|
"path": "skills/makepad-animation",
|
|
@@ -35615,6 +36336,38 @@
|
|
|
35615
36336
|
"agent-hints"
|
|
35616
36337
|
]
|
|
35617
36338
|
},
|
|
36339
|
+
{
|
|
36340
|
+
"id": "meeting-distiller-pro",
|
|
36341
|
+
"path": "skills/meeting-distiller-pro",
|
|
36342
|
+
"category": "uncategorized",
|
|
36343
|
+
"name": "meeting-distiller-pro",
|
|
36344
|
+
"description": "Transform messy meeting notes and transcripts into structured action items, decisions, and follow-ups. Never lose a meeting insight again.",
|
|
36345
|
+
"risk": "unknown",
|
|
36346
|
+
"source": "community",
|
|
36347
|
+
"date_added": "2026-09-21",
|
|
36348
|
+
"plugin": {
|
|
36349
|
+
"targets": {
|
|
36350
|
+
"codex": "supported",
|
|
36351
|
+
"claude": "supported"
|
|
36352
|
+
},
|
|
36353
|
+
"setup": {
|
|
36354
|
+
"type": "none",
|
|
36355
|
+
"summary": "",
|
|
36356
|
+
"docs": null
|
|
36357
|
+
},
|
|
36358
|
+
"reasons": []
|
|
36359
|
+
},
|
|
36360
|
+
"source_type": "community",
|
|
36361
|
+
"source_repo": "demo112/yunqu-ai-skills",
|
|
36362
|
+
"tags": [
|
|
36363
|
+
"meeting",
|
|
36364
|
+
"productivity",
|
|
36365
|
+
"notes",
|
|
36366
|
+
"action-items",
|
|
36367
|
+
"summary",
|
|
36368
|
+
"corporate"
|
|
36369
|
+
]
|
|
36370
|
+
},
|
|
35618
36371
|
{
|
|
35619
36372
|
"id": "meme-coin-audit",
|
|
35620
36373
|
"path": "skills/meme-coin-audit",
|
|
@@ -36700,9 +37453,9 @@
|
|
|
36700
37453
|
{
|
|
36701
37454
|
"id": "monte-carlo-analyze-root-cause",
|
|
36702
37455
|
"path": "skills/monte-carlo-analyze-root-cause",
|
|
36703
|
-
"category": "
|
|
37456
|
+
"category": "uncategorized",
|
|
36704
37457
|
"name": "monte-carlo-analyze-root-cause",
|
|
36705
|
-
"description": "
|
|
37458
|
+
"description": "Curated upstream guidance for Monte Carlo Analyze Root Cause; use when the workflow matches the user goal.",
|
|
36706
37459
|
"risk": "critical",
|
|
36707
37460
|
"source": "https://github.com/monte-carlo-data/mc-agent-toolkit/tree/main/skills/analyze-root-cause",
|
|
36708
37461
|
"date_added": "2026-07-01",
|
|
@@ -36728,7 +37481,7 @@
|
|
|
36728
37481
|
"path": "skills/monte-carlo-asset-health",
|
|
36729
37482
|
"category": "uncategorized",
|
|
36730
37483
|
"name": "monte-carlo-asset-health",
|
|
36731
|
-
"description": "
|
|
37484
|
+
"description": "Curated upstream guidance for Monte Carlo Asset Health; use when the workflow matches the user goal.",
|
|
36732
37485
|
"risk": "critical",
|
|
36733
37486
|
"source": "https://github.com/monte-carlo-data/mc-agent-toolkit/tree/main/skills/asset-health",
|
|
36734
37487
|
"date_added": "2026-07-01",
|
|
@@ -36749,6 +37502,30 @@
|
|
|
36749
37502
|
"license": "Apache-2.0",
|
|
36750
37503
|
"license_source": "https://github.com/monte-carlo-data/mc-agent-toolkit/blob/main/LICENSE"
|
|
36751
37504
|
},
|
|
37505
|
+
{
|
|
37506
|
+
"id": "monte-carlo-context-detection",
|
|
37507
|
+
"path": "skills/monte-carlo-context-detection",
|
|
37508
|
+
"category": "uncategorized",
|
|
37509
|
+
"name": "monte-carlo-context-detection",
|
|
37510
|
+
"description": "Route data-related requests to the right Monte Carlo skill or workflow. USE WHEN alerts, incidents, data broken, stale, coverage gaps, data quality, or any ambiguous data observability request.",
|
|
37511
|
+
"risk": "unknown",
|
|
37512
|
+
"source": "community",
|
|
37513
|
+
"date_added": "2026-09-21",
|
|
37514
|
+
"plugin": {
|
|
37515
|
+
"targets": {
|
|
37516
|
+
"codex": "supported",
|
|
37517
|
+
"claude": "supported"
|
|
37518
|
+
},
|
|
37519
|
+
"setup": {
|
|
37520
|
+
"type": "none",
|
|
37521
|
+
"summary": "",
|
|
37522
|
+
"docs": null
|
|
37523
|
+
},
|
|
37524
|
+
"reasons": []
|
|
37525
|
+
},
|
|
37526
|
+
"source_type": "community",
|
|
37527
|
+
"source_repo": "monte-carlo-data/mc-agent-toolkit"
|
|
37528
|
+
},
|
|
36752
37529
|
{
|
|
36753
37530
|
"id": "monte-carlo-monitor-creation",
|
|
36754
37531
|
"path": "skills/monte-carlo-monitor-creation",
|
|
@@ -45043,6 +45820,126 @@
|
|
|
45043
45820
|
"composition"
|
|
45044
45821
|
]
|
|
45045
45822
|
},
|
|
45823
|
+
{
|
|
45824
|
+
"id": "remotion-captions",
|
|
45825
|
+
"path": "skills/remotion-captions",
|
|
45826
|
+
"category": "uncategorized",
|
|
45827
|
+
"name": "remotion-captions",
|
|
45828
|
+
"description": "Transcribing, displaying and animating captions",
|
|
45829
|
+
"risk": "unknown",
|
|
45830
|
+
"source": "remotion-dev",
|
|
45831
|
+
"date_added": "2026-09-21",
|
|
45832
|
+
"plugin": {
|
|
45833
|
+
"targets": {
|
|
45834
|
+
"codex": "supported",
|
|
45835
|
+
"claude": "supported"
|
|
45836
|
+
},
|
|
45837
|
+
"setup": {
|
|
45838
|
+
"type": "none",
|
|
45839
|
+
"summary": "",
|
|
45840
|
+
"docs": null
|
|
45841
|
+
},
|
|
45842
|
+
"reasons": []
|
|
45843
|
+
},
|
|
45844
|
+
"source_type": "official",
|
|
45845
|
+
"source_repo": "remotion-dev/skills"
|
|
45846
|
+
},
|
|
45847
|
+
{
|
|
45848
|
+
"id": "remotion-create",
|
|
45849
|
+
"path": "skills/remotion-create",
|
|
45850
|
+
"category": "uncategorized",
|
|
45851
|
+
"name": "remotion-create",
|
|
45852
|
+
"description": "Create a new Remotion video",
|
|
45853
|
+
"risk": "unknown",
|
|
45854
|
+
"source": "remotion-dev",
|
|
45855
|
+
"date_added": "2026-09-21",
|
|
45856
|
+
"plugin": {
|
|
45857
|
+
"targets": {
|
|
45858
|
+
"codex": "supported",
|
|
45859
|
+
"claude": "supported"
|
|
45860
|
+
},
|
|
45861
|
+
"setup": {
|
|
45862
|
+
"type": "none",
|
|
45863
|
+
"summary": "",
|
|
45864
|
+
"docs": null
|
|
45865
|
+
},
|
|
45866
|
+
"reasons": []
|
|
45867
|
+
},
|
|
45868
|
+
"source_type": "official",
|
|
45869
|
+
"source_repo": "remotion-dev/skills"
|
|
45870
|
+
},
|
|
45871
|
+
{
|
|
45872
|
+
"id": "remotion-docs",
|
|
45873
|
+
"path": "skills/remotion-docs",
|
|
45874
|
+
"category": "uncategorized",
|
|
45875
|
+
"name": "remotion-docs",
|
|
45876
|
+
"description": "Search Remotion documentation",
|
|
45877
|
+
"risk": "unknown",
|
|
45878
|
+
"source": "remotion-dev",
|
|
45879
|
+
"date_added": "2026-09-21",
|
|
45880
|
+
"plugin": {
|
|
45881
|
+
"targets": {
|
|
45882
|
+
"codex": "supported",
|
|
45883
|
+
"claude": "supported"
|
|
45884
|
+
},
|
|
45885
|
+
"setup": {
|
|
45886
|
+
"type": "none",
|
|
45887
|
+
"summary": "",
|
|
45888
|
+
"docs": null
|
|
45889
|
+
},
|
|
45890
|
+
"reasons": []
|
|
45891
|
+
},
|
|
45892
|
+
"source_type": "official",
|
|
45893
|
+
"source_repo": "remotion-dev/skills"
|
|
45894
|
+
},
|
|
45895
|
+
{
|
|
45896
|
+
"id": "remotion-interactivity",
|
|
45897
|
+
"path": "skills/remotion-interactivity",
|
|
45898
|
+
"category": "uncategorized",
|
|
45899
|
+
"name": "remotion-interactivity",
|
|
45900
|
+
"description": "Structure Remotion markup for interactivity",
|
|
45901
|
+
"risk": "unknown",
|
|
45902
|
+
"source": "remotion-dev",
|
|
45903
|
+
"date_added": "2026-09-21",
|
|
45904
|
+
"plugin": {
|
|
45905
|
+
"targets": {
|
|
45906
|
+
"codex": "supported",
|
|
45907
|
+
"claude": "supported"
|
|
45908
|
+
},
|
|
45909
|
+
"setup": {
|
|
45910
|
+
"type": "none",
|
|
45911
|
+
"summary": "",
|
|
45912
|
+
"docs": null
|
|
45913
|
+
},
|
|
45914
|
+
"reasons": []
|
|
45915
|
+
},
|
|
45916
|
+
"source_type": "official",
|
|
45917
|
+
"source_repo": "remotion-dev/skills"
|
|
45918
|
+
},
|
|
45919
|
+
{
|
|
45920
|
+
"id": "remotion-render",
|
|
45921
|
+
"path": "skills/remotion-render",
|
|
45922
|
+
"category": "uncategorized",
|
|
45923
|
+
"name": "remotion-render",
|
|
45924
|
+
"description": "Export a Remotion video",
|
|
45925
|
+
"risk": "unknown",
|
|
45926
|
+
"source": "remotion-dev",
|
|
45927
|
+
"date_added": "2026-09-21",
|
|
45928
|
+
"plugin": {
|
|
45929
|
+
"targets": {
|
|
45930
|
+
"codex": "supported",
|
|
45931
|
+
"claude": "supported"
|
|
45932
|
+
},
|
|
45933
|
+
"setup": {
|
|
45934
|
+
"type": "none",
|
|
45935
|
+
"summary": "",
|
|
45936
|
+
"docs": null
|
|
45937
|
+
},
|
|
45938
|
+
"reasons": []
|
|
45939
|
+
},
|
|
45940
|
+
"source_type": "official",
|
|
45941
|
+
"source_repo": "remotion-dev/skills"
|
|
45942
|
+
},
|
|
45046
45943
|
{
|
|
45047
45944
|
"id": "render-automation",
|
|
45048
45945
|
"path": "skills/render-automation",
|
|
@@ -46113,6 +47010,38 @@
|
|
|
46113
47010
|
"reasons": []
|
|
46114
47011
|
}
|
|
46115
47012
|
},
|
|
47013
|
+
{
|
|
47014
|
+
"id": "saas-pricing-strategist",
|
|
47015
|
+
"path": "skills/saas-pricing-strategist",
|
|
47016
|
+
"category": "business",
|
|
47017
|
+
"name": "saas-pricing-strategist",
|
|
47018
|
+
"description": "Design, optimize, and test pricing strategies for SaaS products using data-driven frameworks, competitive analysis, and psychological pricing principles.",
|
|
47019
|
+
"risk": "unknown",
|
|
47020
|
+
"source": "community",
|
|
47021
|
+
"date_added": "2026-09-21",
|
|
47022
|
+
"plugin": {
|
|
47023
|
+
"targets": {
|
|
47024
|
+
"codex": "supported",
|
|
47025
|
+
"claude": "supported"
|
|
47026
|
+
},
|
|
47027
|
+
"setup": {
|
|
47028
|
+
"type": "none",
|
|
47029
|
+
"summary": "",
|
|
47030
|
+
"docs": null
|
|
47031
|
+
},
|
|
47032
|
+
"reasons": []
|
|
47033
|
+
},
|
|
47034
|
+
"source_type": "community",
|
|
47035
|
+
"source_repo": "demo112/yunqu-ai-skills",
|
|
47036
|
+
"tags": [
|
|
47037
|
+
"saas",
|
|
47038
|
+
"pricing",
|
|
47039
|
+
"strategy",
|
|
47040
|
+
"monetization",
|
|
47041
|
+
"business",
|
|
47042
|
+
"analytics"
|
|
47043
|
+
]
|
|
47044
|
+
},
|
|
46116
47045
|
{
|
|
46117
47046
|
"id": "saas-security-posture",
|
|
46118
47047
|
"path": "skills/saas-security-posture",
|
|
@@ -46705,6 +47634,30 @@
|
|
|
46705
47634
|
},
|
|
46706
47635
|
"license": "BSD-3-Clause license"
|
|
46707
47636
|
},
|
|
47637
|
+
{
|
|
47638
|
+
"id": "score-eval",
|
|
47639
|
+
"path": "skills/score-eval",
|
|
47640
|
+
"category": "uncategorized",
|
|
47641
|
+
"name": "score-eval",
|
|
47642
|
+
"description": "Imported skill `score-eval` from upstream source.",
|
|
47643
|
+
"risk": "unknown",
|
|
47644
|
+
"source": "neondatabase",
|
|
47645
|
+
"date_added": "2026-09-21",
|
|
47646
|
+
"plugin": {
|
|
47647
|
+
"targets": {
|
|
47648
|
+
"codex": "supported",
|
|
47649
|
+
"claude": "supported"
|
|
47650
|
+
},
|
|
47651
|
+
"setup": {
|
|
47652
|
+
"type": "none",
|
|
47653
|
+
"summary": "",
|
|
47654
|
+
"docs": null
|
|
47655
|
+
},
|
|
47656
|
+
"reasons": []
|
|
47657
|
+
},
|
|
47658
|
+
"source_type": "official",
|
|
47659
|
+
"source_repo": "neondatabase/agent-skills"
|
|
47660
|
+
},
|
|
46708
47661
|
{
|
|
46709
47662
|
"id": "screen-adverse-media",
|
|
46710
47663
|
"path": "skills/screen-adverse-media",
|
|
@@ -58470,6 +59423,30 @@
|
|
|
58470
59423
|
"coding-agents"
|
|
58471
59424
|
]
|
|
58472
59425
|
},
|
|
59426
|
+
{
|
|
59427
|
+
"id": "writing-guidelines",
|
|
59428
|
+
"path": "skills/writing-guidelines",
|
|
59429
|
+
"category": "uncategorized",
|
|
59430
|
+
"name": "writing-guidelines",
|
|
59431
|
+
"description": "Curated upstream guidance for Writing Guidelines; use when the workflow matches the user goal.",
|
|
59432
|
+
"risk": "unknown",
|
|
59433
|
+
"source": "vercel-labs",
|
|
59434
|
+
"date_added": "2026-09-21",
|
|
59435
|
+
"plugin": {
|
|
59436
|
+
"targets": {
|
|
59437
|
+
"codex": "supported",
|
|
59438
|
+
"claude": "supported"
|
|
59439
|
+
},
|
|
59440
|
+
"setup": {
|
|
59441
|
+
"type": "none",
|
|
59442
|
+
"summary": "",
|
|
59443
|
+
"docs": null
|
|
59444
|
+
},
|
|
59445
|
+
"reasons": []
|
|
59446
|
+
},
|
|
59447
|
+
"source_type": "official",
|
|
59448
|
+
"source_repo": "vercel-labs/agent-skills"
|
|
59449
|
+
},
|
|
58473
59450
|
{
|
|
58474
59451
|
"id": "writing-plans",
|
|
58475
59452
|
"path": "skills/writing-plans",
|