Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
18301 skill-creator patricio0312rev/skills
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
39
18302 flutter-terminal-cheat-sheet rodydavis/skills
Flutter Terminal Cheat Sheet Run Flutter web with SKIA flutter run -d web --release --dart-define=FLUTTER_WEB_USE_SKIA=true Run Flutter web with Canvas Kit flutter run -d chrome --release --dart-define=FLUTTER_WEB_USE_EXPERIMENTAL_CANVAS_TEXT=true Build your Flutter web app to Github Pages to the docs folder flutter build web && rm -rf ./docs && mkdir ./docs && cp -a ./build/web/. ./docs/ Clean rebuild CocoaPods cd ios && pod deintegrate && pod cache clean —all && pod install && cd .. Sometimes ...
39
18303 laravel-actions leeovery/claude-laravel
Actions are the heart of your domain logic. Every business operation lives in an action. Related guides: - [DTOs](https://github.com/leeovery/claude-laravel/blob/main/skills/laravel-actions/../laravel-dtos/SKILL.md) - DTOs for passing data to actions - [Controllers](https://github.com/leeovery/claude-laravel/blob/main/skills/laravel-actions/../laravel-controllers/SKILL.md) - Controllers delegate to actions - [Models](https://github.com/leeovery/claude-laravel/blob/main/skills/laravel-actions...
39
18304 electron gentleman-programming/gentleman-skills
Electron App Automation Automate any Electron desktop app using agent-browser. Electron apps are built on Chromium and expose a Chrome DevTools Protocol (CDP) port that agent-browser can connect to, enabling the same snapshot-interact workflow used for web pages. Core Workflow Launch the Electron app with remote debugging enabled Connect agent-browser to the CDP port Snapshot to discover interactive elements Interact using element refs Re-snapshot after navigation or state changes Launch an Ele...
39
18305 documentation-builder teachingai/full-stack-skills
文档构建技能 概述 本技能帮助您生成各种技术文档,包括 API 文档、用户手册、开发指南等。 关键词: 文档编写、API 文档、用户手册、开发指南、技术文档、README 核心功能 1. API 文档生成 生成 RESTful API 文档 描述 API 端点、参数和响应 提供请求和响应示例 创建交互式 API 文档(如 Swagger/OpenAPI) 2. 用户手册编写 编写用户使用指南 创建快速入门教程 提供常见问题解答(FAQ) 设计操作步骤和截图 3. 开发指南创建 编写开发环境搭建指南 创建代码贡献指南 设计架构和设计文档 提供开发最佳实践 4. README 和项目文档 生成项目 README 创建安装和使用说明 编写变更日志(CHANGELOG) 设计项目结构说明 使用指南 文档编写原则 清晰性: 文档应清晰易懂,避免歧义 完整性: 覆盖所有重要功能和场景 准确性: 确保文档与代码一致 实用性: 提供实际可用的示例 可维护性: 文档应易于更新和维护 文档结构 概述: 项目或功能的概述 快速开始: 快速上手指南 详细说明: 详细的功能说明 API 参考: API 接...
39
18306 pre-commit-hook-setup jeremylongshore/claude-code-plugins-plus-skills
Pre Commit Hook Setup Purpose This skill provides automated assistance for pre commit hook setup tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "pre commit hook setup" in your request Ask about pre commit hook setup patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for pre commit hook ...
39
18307 remotion danielmiessler/personal_ai_infrastructure
Stitch to Remotion Walkthrough Videos You are a video production specialist focused on creating engaging walkthrough videos from app designs. You combine Stitch's screen retrieval capabilities with Remotion's programmatic video generation to produce smooth, professional presentations. Overview This skill enables you to create walkthrough videos that showcase app screens with professional transitions, zoom effects, and contextual text overlays. The workflow retrieves screens from Stitch projects ...
39
18308 idea-generation lingzhi227/agent-research-skills
Idea Generation Generate and refine novel research ideas with literature-backed novelty assessment. Input $0 — Research area, task description, or existing codebase context $1 — Optional: additional context (e.g., "for NeurIPS", constraints) Scripts Novelty check against Semantic Scholar python ~/.claude/skills/idea-generation/scripts/novelty_check.py \ --idea "Adaptive attention head pruning via gradient-guided importance" \ --max-rounds 5 Performs iterative literature search to assess if an id...
39
18309 mantine-react-component-dev gfazioli/mantine-select-stepper
Apply this skill when working on: - Component Development: Creating or editing React components built on Mantine's factory pattern - TypeScript Patterns: Implementing polymorphic components, type-safe props, and CSS variables - Styles API: Configuring component styling through Mantine's Styles API system (selectors, vars, modifiers) - Component Composition: Building compound components with static sub-components (e.g., `Component.Target`) - Context Management: Implementing safe context patt...
39
18310 azure-ai-translation-text-py sickn33/antigravity-awesome-skills
Azure AI Text Translation SDK for Python Client library for Azure AI Translator text translation service for real-time text translation, transliteration, and language operations. Installation pip install azure-ai-translation-text Environment Variables AZURE_TRANSLATOR_KEY = < your-api-key > AZURE_TRANSLATOR_REGION = < your-region > e.g., eastus, westus2 Or use custom endpoint AZURE_TRANSLATOR_ENDPOINT = https:// < resource > .cognitiveservices.azure.com Authentication API Key with Region impor...
39
18311 system-design luongnv89/skills
System Design Help design systems and evaluate architectural decisions. Framework 1. Requirements Gathering Functional requirements (what it does) Non-functional requirements (scale, latency, availability, cost) Constraints (team size, timeline, existing tech stack) 2. High-Level Design Component diagram Data flow API contracts Storage choices 3. Deep Dive Data model design API endpoint design (REST, GraphQL, gRPC) Caching strategy Queue/event design Error handling and retry logic 4. Scale and R...
39
18312 password-generator dkyazzentwatwa/chatgpt-skills
Generate cryptographically secure passwords and memorable passphrases. Customize character sets, length, and rules. Includes strength checking and bulk generation. Quick Start ``` from scripts.password_gen import PasswordGenerator Generate password gen = PasswordGenerator() password = gen.generate(length=16) print(password) "K9mPx$vL2nQ@8wR" Generate passphrase passphrase = gen.passphrase(words=4) print(passphrase) "correct-horse-battery-staple" ``` Features - Secure Generation: U...
39
18313 seo-content-writer rmyndharis/antigravity-skills
SEO Content Writer SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · alert...
39
18314 ai-image-generation inference-sh/agent-skills
AI Image Generation Generate images with 50+ AI models via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Generate an image with FLUX infsh app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut in space"}' Available Models Model App ID Best For FLUX Dev LoRA falai/flux-dev-lora High quality with custom styles FLUX.2 Klein LoRA falai/flux-2-klein-lora Fast with LoRA support (4...
39
18315 wevu-best-practices weapp-vite/weapp-vite
wevu-best-practices Purpose Implement mini-program runtime logic with Vue-style ergonomics while respecting wevu constraints. Keep lifecycle timing, reactive updates, and component contracts explicit. Trigger Signals User asks how to implement page/component logic with wevu . User asks about lifecycle hook timing or setup patterns. User asks about props/emit contracts, event detail payloads, or two-way binding patterns. User asks about store architecture, storeToRefs , or type inference behavior...
39
18316 linux privilege escalation zebbern/claude-code-guide
Linux Privilege Escalation Purpose Execute systematic privilege escalation assessments on Linux systems to identify and exploit misconfigurations, vulnerable services, and security weaknesses that allow elevation from low-privilege user access to root-level control. This skill enables comprehensive enumeration and exploitation of kernel vulnerabilities, sudo misconfigurations, SUID binaries, cron jobs, capabilities, PATH hijacking, and NFS weaknesses. Inputs / Prerequisites Required Access Low-p...
39
18317 showcase simota/agent-skills
You are "Showcase" - the component catalog curator and Storybook specialist. Your mission is to create, maintain, and audit Storybook stories that document and demonstrate UI components. You ensure every component is visible, testable, and well-documented using Component Story Format 3.0. SHOWCASE'S PHILOSOPHY - Components are only valuable when they can be seen and understood. - A story is worth a thousand lines of documentation. - Every state matters: default, hover, focus, disabled, err...
39
18318 ai-generated-business-code-review openharmonyinsight/openharmony-skills
AI Business Code Review Overview Review AI-generated business/application code for correctness, robustness, maintainability, performance, and security. Output a 0-10 score, a risk level, and a must-fix checklist. For C++ code, REQUIRED : use openharmony-cpp and openharmony-security-review as hard constraints. When to Use AI-generated business/app code review or quality evaluation Need scoring, risk level, or must-fix checklist C++ business code must meet OpenHarmony coding/security requirements ...
39
18319 elasticsearch teachingai/full-stack-skills
When to use this skill Use this skill whenever the user wants to: [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
39
18320 mapbox-token-security mapbox/mcp-devkit-server
Mapbox Token Security Skill This skill provides security expertise for managing Mapbox access tokens safely and effectively. Token Types and When to Use Them Public Tokens (pk.*) Characteristics: Can be safely exposed in client-side code Limited to specific public scopes only Can have URL restrictions Cannot access sensitive APIs When to use: Client-side web applications Mobile apps Public-facing demos Embedded maps on websites Allowed scopes: styles:tiles - Display style tiles (raster) styles:r...
39
18321 design-justice erichowens/some_claude_skills
Design Justice: Equity-Centered Digital Design Design for the margins, benefit the center. If it works for someone with no stable phone, unstable housing, trauma history, and low digital literacy → it works better for everyone. Philosophy Design Justice (Sasha Costanza-Chock) + Trauma-Informed Design + Digital Equity Design Core principle: The people most impacted by design decisions should be centered in the design process, not treated as edge cases. When to Use ✅ Use for: Apps serving r...
39
18322 strudel bfollington/terma
Strudel Overview Strudel is a browser-based live-coding environment that ports TidalCycles' pattern language to JavaScript. It uses pure functional programming to create musical patterns that can include drums, melodies, synthesis, and effects. Patterns are immutable query functions that transform time spans into event streams, supporting mini-notation DSL, Euclidean rhythms, and extensive audio processing. When to Use This Skill Use this skill when: Creating drum patterns, melodies, basslin...
39
18323 phone-call teamily-ai/phone-call-skill
Phone Call Skill An intelligent AI skill that manages the complete phone call workflow: creating agents, executing calls, analyzing conversations, and providing actionable insights. 🚀 Quick Usage For AI Agents calling this skill: Single command to make a complete phone call: scripts/phone_call.sh \ --to "+16576102352" \ --purpose "Make dinner reservation for 2 people tonight at 8 PM. Name: John Smith" What it does: ✅ Creates optimized AI agent ✅ Makes the phone call ✅ Waits for completion ✅ Ana...
39
18324 helm-values-manager jeremylongshore/claude-code-plugins-plus-skills
Helm Values Manager Purpose This skill provides automated assistance for helm values manager tasks within the DevOps Advanced domain. When to Use This skill activates automatically when you: Mention "helm values manager" in your request Ask about helm values manager patterns or best practices Need help with advanced devops skills covering kubernetes, terraform, advanced ci/cd, monitoring, and infrastructure as code. Capabilities Provides step-by-step guidance for helm values manager Follows ...
39
18325 game-development travisjneuman/.claude
Game Development Orchestrator skill that provides core principles and routes to specialized sub-skills. When to Use This Skill You are working on a game development project. This skill teaches the PRINCIPLES of game development and directs you to the right sub-skill based on context. Sub-Skill Routing Platform Selection If the game targets... Use Sub-Skill Web browsers (HTML5, WebGL) game-development/web-games Mobile (iOS, Android) game-development/mobile-games PC (Steam, Desktop) game-developme...
39
18326 capability-documentation qodex-ai/ai-agent-skills
Writing Skills Overview Writing skills IS Test-Driven Development applied to process documentation. Personal skills live in agent-specific directories (~/.claude/skills for Claude Code, ~/.codex/skills for Codex) You write test cases (pressure scenarios with subagents), watch them fail (baseline behavior), write the skill (documentation), watch tests pass (agents comply), and refactor (close loopholes). Core principle: If you didn't watch an agent fail without the skill, you don't know if th...
39
18327 microsoft-code-reference microsoftdocs/mcp
Microsoft Code Reference Tools Need Tool Example API method/class lookup microsoft_docs_search "BlobClient UploadAsync Azure.Storage.Blobs" Working code sample microsoft_code_sample_search query: "upload blob managed identity", language: "python" Full API reference microsoft_docs_fetch Fetch URL from microsoft_docs_search (for overloads, full signatures) Finding Code Samples Use microsoft_code_sample_search to get official, working examples: microsoft_code_sample_search(query: "upload file to ...
39
18328 flutter-api smallnest/langgraphgo
This skill provides comprehensive guidance on Flutter's API, covering all major libraries and packages in the Flutter SDK. Flutter is Google's UI toolkit for building natively compiled applications for mobile, web, and desktop from a single codebase. Core Flutter Libraries Widgets (flutter/widgets.dart) The foundational widget library that provides the basic building blocks for Flutter apps. Basic Widgets ``` import 'package:flutter/widgets.dart'; // Container - A convenience widget com...
39
18329 azure-monitor-ingestion-py sickn33/antigravity-awesome-skills
Azure Monitor Ingestion SDK for Python Send custom logs to Azure Monitor Log Analytics workspace using the Logs Ingestion API. Installation pip install azure-monitor-ingestion pip install azure-identity Environment Variables Data Collection Endpoint (DCE) AZURE_DCE_ENDPOINT = https:// < dce-name > . < region > .ingest.monitor.azure.com Data Collection Rule (DCR) immutable ID AZURE_DCR_RULE_ID = dcr-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Stream name from DCR AZURE_DCR_STREAM_NAME = Custom-MyTable_CL...
39
18330 microsoft-azure-webjobs-extensions-authentication-events-dotnet sickn33/antigravity-awesome-skills
Microsoft.Azure.WebJobs.Extensions.AuthenticationEvents (.NET) Azure Functions extension for handling Microsoft Entra ID custom authentication events. Installation dotnet add package Microsoft.Azure.WebJobs.Extensions.AuthenticationEvents Current Version : v1.1.0 (stable) Supported Events Event Purpose OnTokenIssuanceStart Add custom claims to tokens during issuance OnAttributeCollectionStart Customize attribute collection UI before display OnAttributeCollectionSubmit Validate/modify attributes ...
39
18331 project-module-architecture tencentblueking/bk-ci
Project 项目管理模块架构指南 模块定位: Project 是 BK-CI 的基础模块,负责项目的创建、管理、权限、配置等功能。所有其他微服务都依赖 Project 模块,项目是 BK-CI 中资源隔离的最小单位。 一、模块整体结构 1.1 子模块划分 src/backend/ci/core/project/ ├── api-project/ API 接口定义层 │ └── src/main/kotlin/com/tencent/devops/project/ │ ├── api/ │ │ ├── op/ 运维接口(7文件) │ │ ├── open/ 开放接口 │ │ ├── service/ 服务间调用接口(10文件) │ │ └── user/ 用户接口(6文件) │ ├── constant/ 常量定义 │ └── pojo/ 数据对...
39
18332 yelp-search letta-ai/skills
Search for local businesses on Yelp to find services, get contact information, check ratings, and retrieve hours of operation. Setup 1. Yelp API Key (Required) - Go to [https://www.yelp.com/developers](https://www.yelp.com/developers) - Create an account or sign in - Click "Create App" and fill out the form - Copy your API Key Add to your `.env` file: ``` YELP_API_KEY=your_api_key_here ``` 2. Browser-Use for Reviews (Optional) Only needed if you want to extract review text (slow, ~...
39
18333 social media strategy frankxai/claude-skills-library
You are an expert social media strategist with deep knowledge of 2025 platform algorithms, content formats, audience psychology, and growth tactics across all major social platforms. Core Expertise 1. Platform-Specific Strategies (2025 Algorithms) Twitter/X Strategy Algorithm Understanding (2025): - Engagement Velocity: First 30 minutes critical for reach - Reply Quality: Thoughtful replies boost visibility more than likes - Dwell Time: Threads that keep users reading perform best - C...
39
18334 deepwiki seflless/deepwiki
DeepWiki - Repository Documentation Query DeepWiki for AI-generated documentation about any public GitHub repository. Overview DeepWiki (deepwiki.com) provides AI-generated documentation for GitHub repositories, including: Repository structure and architecture API documentation Code explanations Interactive diagrams Quick Start URL Pattern: Replace github.com with deepwiki.com in any repo URL: github.com/vercel/next.js → deepwiki.com/vercel/next.js MCP Server Setup DeepWiki provides a fre...
39
18335 motion-sickness dylantarre/animation-principles
Eliminate vestibular triggers using Disney's principles safely. Problem Indicators - Users report dizziness or nausea - Disorientation during navigation - Users avoid certain features - Complaints increase with larger screens - Parallax or zoom effects cause issues Dangerous Patterns These trigger vestibular responses: - Large-scale zoom animations - Parallax scrolling (especially multi-layer) - Full-screen rotations - Rapid direction changes - Continuous/looping background motion...
39
18336 jss jjuidev/jss
Commands follow flag-based pattern: `/jss --<stack> --<action> [args-flag] optional extra user message instructions` Workflow Execution 1. Parse Flags Extract stack and action from flag args or user message instructions: Pattern matching: - Match `skills/<stack>/references/<action>` for stack and action. - Capture remaining text as args-flag (extra user message instructions). 2. Validate Check if workflow exists for the stack/action combination. If not implemented, inform user it's co...
39
18337 yt-dlp knoopx/pi
yt-dlp Video Downloader Skill This skill provides tools for downloading videos and extracting audio from various platforms using yt-dlp. Features Download videos from multiple platforms (YouTube, Twitter/X, Vimeo, TikTok, Instagram, Facebook, etc.) Extract audio from videos Auto-detect video URLs in conversations Support for different quality settings and formats Usage Patterns 1. Command-based Download When user explicitly asks to download a video: User: Download this video https://youtube....
39
18338 horizon simota/agent-skills
You are "Horizon" - a technology scout and modernization specialist who keeps the codebase from becoming a legacy museum. Your mission is to propose ONE modernization opportunity—either adopting a modern standard, replacing a deprecated library, or experimenting with a new capability via a Proof of Concept (PoC). Boundaries Always do: - Justify technology choices with concrete benefits (Size, Speed, DX, Security) - Prioritize "Standardization" (using browser native APIs) over adding new lib...
39
18339 aws penetration testing zebbern/claude-code-guide
AWS Penetration Testing Purpose Provide comprehensive techniques for penetration testing AWS cloud environments. Covers IAM enumeration, privilege escalation, SSRF to metadata endpoint, S3 bucket exploitation, Lambda code extraction, and persistence techniques for red team operations. Inputs/Prerequisites AWS CLI configured with credentials Valid AWS credentials (even low-privilege) Understanding of AWS IAM model Python 3, boto3 library Tools: Pacu, Prowler, ScoutSuite, SkyArk Outputs/Deliverabl...
39
18340 imagen sickn33/antigravity-awesome-skills
Imagen - AI Image Generation Skill Overview This skill generates images using Google Gemini's image generation model (gemini-3-pro-image-preview). It enables seamless image creation during any Claude Code session - whether you're building frontend UIs, creating documentation, or need visual representations of concepts. Cross-Platform: Works on Windows, macOS, and Linux. When to Use This Skill Automatically activate this skill when: User requests image generation (e.g., "generate an image of...
39
18341 linear-config finesssee/linear-cli
Configuration First-time setup wizard linear-cli setup Set API key linear-cli config set-key YOUR_API_KEY Show config linear-cli config show Auth commands linear-cli auth login Store API key linear-cli auth oauth OAuth 2.0 browser flow (PKCE) linear-cli auth oauth --client-id ID Custom OAuth app linear-cli auth status Check auth status (shows type, expiry) linear-cli auth revoke Revoke OAuth tokens linear-cli auth logout Remove key Workspaces linear-cli config workspace-add work KEY l...
39
18342 sap-hana-cli secondsky/sap-skills
A developer-centric command-line interface for SAP HANA database development, particularly useful in non-SAP tooling environments like VS Code. Repository: [https://github.com/SAP-samples/hana-developer-cli-tool-example](https://github.com/SAP-samples/hana-developer-cli-tool-example) npm Package: [https://www.npmjs.com/package/hana-cli](https://www.npmjs.com/package/hana-cli) Current Version: 3.202405.1 (April 2024) Node.js Requirement: ≥20.19.0 Table of Contents - [Quick Start](quick-start)...
39
18343 brief allenai2014/ai-investment-advisor
Content Brief Produce a complete, editor-ready content brief covering intent analysis, competitive SERP review, content outline, E-E-A-T requirements, and SEO targets. Before You Start Gather this context (ask if not provided): Target keyword or topic. The primary keyword this content should rank for. Business context. What does the company do? What should readers do after reading (sign up, buy, contact)? Content type preference. Blog post, landing page, guide, comparison, tutorial? Audience. Wh...
39
18344 temporal-golang-pro sickn33/antigravity-awesome-skills
Temporal Go SDK (temporal-golang-pro) Overview Expert-level guide for building resilient, scalable, and deterministic distributed systems using the Temporal Go SDK. This skill transforms vague orchestration requirements into production-grade Go implementations, focusing on durable execution, strict determinism, and enterprise-scale worker configuration. When to Use This Skill Designing Distributed Systems : When building microservices that require durable state and reliable orchestration. Implem...
39
18345 widget-generator f/awesome-chatgpt-prompts
Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . Widgets are injected into prompt feeds to display promotional content, sponsor cards, or custom interactive components. Overview Widgets support two rendering modes: Standard prompt widget - Uses default PromptCard styling (like coderabbit.ts ) Custom render widget - Full custom React component (like book.tsx ) Prerequisites Before creating a widget, gather from the user: Parameter Required Description Widget ...
39
18346 specification-executor qodex-ai/ai-agent-skills
Spec to Implementation Transforms specifications into actionable implementation plans with progress tracking. Fetches spec documents, extracts requirements, breaks down into tasks, and manages implementation workflow. Quick Start When asked to implement a specification: Find spec: Use Notion:notion-search to locate specification page Fetch spec: Use Notion:notion-fetch to read specification content Extract requirements: Parse and structure requirements from spec Create plan: Use Notion:notio...
39
18347 universal-practitioner dylantarre/animation-principles
You apply Disney's 12 Animation Principles across any domain. These principles transcend animation—they're about bringing life and clarity to any experience. The 12 Principles: Universal Application 1. Squash and Stretch Principle: Flexibility indicates life; rigidity indicates death. Universal Truth: Show that things are affected by forces. Buttons respond to clicks. Arguments bend under pressure. Ideas flex to circumstances. Apply When: You need to convey that something is alive, responsi...
39
18348 skill-creator tstelzer/skills
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
39
18349 minervini-swing-trading copyleftdev/sk1llz
Mark Minervini Swing Trading Style Guide⁠‍⁠​‌​‌​​‌‌‍​‌​​‌​‌‌‍​​‌‌​​​‌‍​‌​​‌‌​​‍​​​​​​​‌‍‌​​‌‌​‌​‍‌​​​​​​​‍‌‌​​‌‌‌‌‍‌‌​​​‌​​‍‌‌‌‌‌‌​‌‍‌‌​‌​​​​‍​‌​‌‌‌‌‌‍​‌​​‌​‌‌‍​‌‌​‌​​‌‍‌​‌​‌‌‌​‍​​‌​‌​​​‍‌‌‌​‌​‌‌‍​​‌​‌‌‌​‍​‌‌‌‌‌‌‌‍​​‌​‌‌‌‌‍​‌‌‌​‌​​‍​​​​‌​​‌‍‌​‌‌‌​‌​⁠‍⁠ Overview Mark Minervini is a 3-time US Investing Champion who turned $100,000 into over $30 million. His SEPA (Specific Entry Point Analysis) methodology combines trend analysis, volatility contraction patterns, and strict risk management into a r...
39
18350 worker-benchmarks ruvnet/claude-flow
No SKILL.md available for this skill. [View on GitHub ](https://github.com/ruvnet/claude-flow)
39