Browse Skills
7431 skills found
qc-backtest-runner.md
0
1
export
qc-backtest-runner
2
from
"vinamra2013/ai_trading_backtesting"
from
"vinamra2013/ai_trading_backtesting"
3
Automate QuantConnect cloud backtesting workflow with GitHub integration. Push strategies to QuantConnect cloud, execute backtests, wait for completion, and retrieve performance metrics. This skill should be used when running backtests on QuantConnect cloud or testing trading strategies.
2025-11-13
repo-manager.md
0
1
export
repo-manager
2
from
"jhillbht/hackathon-clipper-program"
from
"jhillbht/hackathon-clipper-program"
3
TypeScript CLI for managing Whop-powered clipper programs with CPM payouts
2025-12-16
wp-headless-backend.md
0
1
export
wp-headless-backend
2
from
"cdryampi/wordpress_headless"
from
"cdryampi/wordpress_headless"
3
Build and bootstrap WordPress headless (PHP-FPM) with an idempotent wp-cli entrypoint and WPGraphQL enabled, using MariaDB/MySQL from docker-compose. Use when asked to implement or fix docker/wp/Dockerfile and docker/wp/entrypoint.sh for WordPress in this repo.
2026-01-06
build-and-deploy.md
0
1
export
build-and-deploy
2
from
"Eng0AI/vite-vue-template"
from
"Eng0AI/vite-vue-template"
3
Build and deploy this Vue + Vite application. Use when building, deploying, or preparing the project for production.
2026-01-15
ruby-testing.md
0
1
export
ruby-testing
2
from
"arowinski/dotfiles"
from
"arowinski/dotfiles"
3
Configuration files
2026-05-17
initialize-new-python-project.md
0
1
export
initialize-new-python-project
2
from
"boetro/dotclaude"
from
"boetro/dotclaude"
3
Setup a new python project in this directory.
2026-02-24
ui-consistency.md
0
1
export
ui-consistency
2
from
"infiniV/secret-ingredients"
from
"infiniV/secret-ingredients"
3
Use when auditing or fixing UI consistency issues like mismatched spacing, hardcoded colors, theme violations, or elements that look off - provides systematic checklist for theme, spacing, typography audits and proper techniques for canvas/SVG theming with reactivity
2025-12-01
agente-cientifico-ia.md
0
1
export
agente-cientifico-ia
2
from
"mroaromero/Skill-Anthropic"
from
"mroaromero/Skill-Anthropic"
3
Asistente especializado en investigación académica, redacción científica, ACD, metodología cualitativa y análisis de datos con prevención de plagio
2025-11-05
philsquare-permissions.md
0
1
export
philsquare-permissions
2
from
"philsquare/permissions"
from
"philsquare/permissions"
3
This skill should be used when the user asks to "add permissions to a policy", "create a policy with roles", "set up role permissions", "configure rolePermissions", "use BasePolicy", or when working with Laravel policies that need role-based permission management. Also activate when creating or modifying policies in a project using philsquare/permissions.
2025-12-12
athena-pr-reviewer-lite.md
0
1
export
athena-pr-reviewer-lite
2
from
"emiperez95/claude-agents"
from
"emiperez95/claude-agents"
3
Specialized Claude Code agents for automating information gathering from Jira, GitHub, and Notion
2026-06-02
currency-skill.md
0
1
export
currency-skill
2
from
"thruthesky/currency-skill"
from
"thruthesky/currency-skill"
3
Frankfurter API를 사용한 환율 정보 조회 및 통화 변환 스킬. 무료 오픈소스 환율 API로 유럽중앙은행(ECB) 데이터 기반. API 키 불필요, 사용량 제한 없음. 사용 시점: (1) 최신/과거 환율 조회 (2) 통화 변환 계산 (3) 기간별 환율 시계열 데이터 분석 (4) 지원 통화 목록 확인 (5) Flutter/웹 앱에서 환율 기능 구현 (6) 자동화/AI 도구에서 환율 데이터 활용. 키워드: 환율, exchange rate, 통화 변환, currency conversion, ECB, 유럽중앙은행, USD, KRW, EUR, 시계열 데이터, API
2026-02-26
coding-standards.md
0
1
export
coding-standards
2
from
"5MinFutures/futures-arena"
from
"5MinFutures/futures-arena"
3
Track real time performance of trading algorithms on futures markets.
2026-03-15
implement.md
0
1
export
implement
2
from
"matthew-plusprogramming/monorepo"
from
"matthew-plusprogramming/monorepo"
3
Opinionated AI-native, TypeScript monorepo. Express 5 server (optionally packaged for AWS Lambda) and CDK for Terraform (CDKTF) infra
2026-05-25
typescript.md
0
1
export
typescript
2
from
"kevincrabbe/wrapkit"
from
"kevincrabbe/wrapkit"
3
TypeScript guidelines covering type safety, RORO pattern, complexity limits, and error handling patterns. Use when writing TypeScript code.
2026-01-05
git-release.md
0
1
export
git-release
2
from
"chogng/Skills"
from
"chogng/Skills"
3
Git 项目版本发布自动化工具。执行完整的发布流程:提交所有修改、更新版本号、生成 CHANGELOG、创建 git tag 并推送到远程仓库。基于语义化版本 (major/minor/patch)。**核心理解(极其重要)**:当用户说"更新一下版本"、"更新版本"或任何类似表达时,**默认意味着执行完整的发布流程**:1. ✅ 提交所有当前的修改(包括未追踪的新文件)2. ✅ 更新版本号(package.json 和 server/package.json)3. ✅ 创建 git tag(vX.Y.Z)4. ✅ 推送所有内容到远程仓库(commit + tags)5. 📝 可选:生成/更新 CHANGELOG**不要**只更新 package.json 中的版本号!那是错误的理解!**必须**执行完整的发布流程,包括提交和推送!触发关键词(任何一个都触发完整流程):- 通用发布词:"更新一下版本"、"更新版本"、"升级版本"、"发布版本"、"版本发布"、"发新版"- 英文表达:"bump version"、"release"、"new release"- Git操作:"打tag"、"创建发布"、"创建tag"- 版本类型(隐含发布):"大版本更新"、"小版本更新"、"补丁版本"、"major release"、"minor release"、"patch release"
2025-12-22
council-consultation.md
0
1
export
council-consultation
2
from
"princespaghetti/claude-marketplace"
from
"princespaghetti/claude-marketplace"
3
My claude marketplace for claude plugins
2026-01-04
worldbuilding.md
0
1
export
worldbuilding
2
from
"kodexArg/syv"
from
"kodexArg/syv"
3
Experto en el universo "Subordinación y Valor" (SyV) - cronología, facciones, personajes, geografía y coherencia narrativa post-apocalíptica (2020-2178)
2026-05-25
content-marketing.md
0
1
export
content-marketing
2
from
"junhua/forth-ai-homepage"
from
"junhua/forth-ai-homepage"
3
Generate content for Forth AI company marketing. Use for product announcements, company blog posts, case studies, and company LinkedIn content.
2026-01-26
go-clean-architecture.md
0
1
export
go-clean-architecture
2
from
"zskulcsar/code-stats"
from
"zskulcsar/code-stats"
3
Statistical analysis of source code (Go & Python)
2025-12-08
vibe-coding.md
0
1
export
vibe-coding
2
from
"bhska/shopify-laravel"
from
"bhska/shopify-laravel"
3
Rapidly prototype and build modern, responsive web applications from scratch using current frameworks and libraries. Use when you want to quickly create a new web app with full local control, creative flow, and modern best practices. Local alternative to Lovable, Bolt, and v0.
2026-01-03
skill-creating.md
0
1
export
skill-creating
2
from
"gzbomerif-sketch/man"
from
"gzbomerif-sketch/man"
3
Used to create a new skill. Used when a user wants to create a new skill
2025-11-17
newsflow-architecture.md
0
1
export
newsflow-architecture
2
from
"kei-1111/newsflow-library"
from
"kei-1111/newsflow-library"
3
newsflow-libraryのモジュール依存関係とファイル配置規約を適用します。新規モジュール作成、build.gradle.kts編集、settings.gradle.kts編集、パッケージ構造変更時に使用してください。
2025-12-19
rust-language.md
0
1
export
rust-language
2
from
"JohnnyVicious/copilot-cli-examples"
from
"JohnnyVicious/copilot-cli-examples"
3
Github Copilot examples for Business licenses
2026-01-04
pydantic-model-generator.md
0
1
export
pydantic-model-generator
2
from
"gptprojectmanager/liquidations"
from
"gptprojectmanager/liquidations"
3
Auto-generate Pydantic models from schema descriptions with type hints, validation rules, examples, and JSON schema export. 75% token savings (2,000→500).
2026-06-05