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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,727
总 Skills
169.8M
总安装量
2,753
贡献者
# Skill 仓库 描述 安装量
13301 add-3d-assets opusgamelabs/game-creator
Add 3D Assets Replace basic geometric shapes (BoxGeometry, SphereGeometry) with real 3D models. Characters get custom Meshy AI-generated models with rigging and animation. World objects get generated or sourced from free libraries. Instructions Analyze the game at $ARGUMENTS (or the current directory if no path given). First, load the game-3d-assets skill and the meshyai skill for the full model pipeline, AssetLoader pattern, Meshy generation, and integration patterns. Step 1: Get Meshy API Key ...
433
13302 application-performance-performance-optimization sickn33/antigravity-awesome-skills
Optimize application performance end-to-end using specialized performance and optimization agents: [Extended thinking: This workflow orchestrates a comprehensive performance optimization process across the entire application stack. Starting with deep profiling and baseline establishment, the workflow progresses through targeted optimizations in each system layer, validates improvements through load testing, and establishes continuous monitoring for sustained performance. Each phase builds on ins...
433
13303 security-review davila7/claude-code-templates
Security Review Skill This skill ensures all code follows security best practices and identifies potential vulnerabilities. When to Activate Implementing authentication or authorization Handling user input or file uploads Creating new API endpoints Working with secrets or credentials Implementing payment features Storing or transmitting sensitive data Integrating third-party APIs Security Checklist 1. Secrets Management Show more Installs 1.9K Repository affaan-m/ecc GitHub Stars 239.2K First Se...
432
13304 vercel-deployment davila7/claude-code-templates
Vercel Deployment You are a Vercel deployment expert. You understand the platform's capabilities, limitations, and best practices for deploying Next.js applications at scale. Your core principles: Environment variables - different for dev/preview/production Edge vs Serverless - choose the right runtime Build optimization - minimize cold starts and bundle size Preview deployments - use for testing before production Monitoring - set up analytics and error tracking Capabilities vercel deployment...
432
13305 product-hunt-launch-plan ognjengt/founder-skills
Product Hunt Launch Plan Purpose Generate a comprehensive, personalized Product Hunt launch plan with actionable steps from A-Z to help the user rank 1 Product of the Day. Execution Logic Check $ARGUMENTS first to determine execution mode: If $ARGUMENTS is empty or not provided: Respond with: "product-hunt-launch-plan loaded. I'll create a personalized Product Hunt launch strategy to help you rank 1. Let me gather some information about your product first." Then proceed to the Discovery Question...
432
13306 hooks parcadei/continuous-claude-v3
Hook Development Rules When working with files in .claude/hooks/: Pattern Shell wrapper (.sh) → TypeScript (.ts) via npx tsx Shell Wrapper Template !/bin/bash set -e cd "$CLAUDE_PROJECT_DIR/.claude/hooks" cat | npx tsx <handler>.ts TypeScript Handler Pattern interface HookInput { // Event-specific fields } async function main() { const input: HookInput = JSON.parse(await readStdin()); // Process input const output = { result: 'continue', // or 'block' message: 'Optional ...
431
13307 react-state-management sickn33/antigravity-awesome-skills
React State Management Comprehensive guide to modern React state management patterns, from local component state to global stores and server state synchronization. When to Use This Skill Setting up global state management in a React app Choosing between Redux Toolkit, Zustand, or Jotai Managing server state with React Query or SWR Implementing optimistic updates Debugging state-related issues Migrating from legacy Redux to modern patterns Core Concepts 1. State Categories Type Description Soluti...
431
13308 debugging-strategies sickn33/antigravity-awesome-skills
Debugging Strategies Transform debugging from frustrating guesswork into systematic problem-solving with proven strategies, powerful tools, and methodical approaches. When to Use This Skill Tracking down elusive bugs Investigating performance issues Understanding unfamiliar codebases Debugging production issues Analyzing crash dumps and stack traces Profiling application performance Investigating memory leaks Debugging distributed systems Core Principles 1. The Scientific Method 1. Observe : Wha...
431
13309 database-admin sickn33/antigravity-awesome-skills
Use this skill when Working on database admin tasks or workflows Needing guidance, best practices, or checklists for database admin Do not use this skill when The task is unrelated to database admin You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a...
431
13310 aicoin-trading aicoincom/coinos-skills
⚠️ 运行脚本: 所有 node scripts/... 命令必须以本 SKILL.md 所在目录为 workdir。 AiCoin Trading — 下单专用 ⛔ 铁律(违反任何一条都是严重错误) 禁止写代码下单。 不准写 import ccxt 、 new ccxt.okx() 、 fetch("https://...") 或任何自定义代码来下单。所有订单只能通过 node scripts/exchange.mjs create_order 执行。 禁止自动确认。 create_order 第一次调用返回预览(含风险提示),你必须把预览完整展示给用户,等用户回复"确认"或"yes"后,才能第二次调用加 "confirmed":"true" 执行。 禁止修改用户参数。 余额不够就告诉用户,不准自动调整数量或杠杆。 禁止主动平仓。 除非用户明确要求。 下单流程(两步,不可跳过) 步骤1: node scripts/exchange.mjs create_order '{"exchange":"okx","symbol":"BTC/USDT:USDT","type":"market",...
431
13311 transformers-huggingface mindrally/skills
Transformers and Hugging Face Development You are an expert in the Hugging Face ecosystem, including Transformers, Datasets, Tokenizers, and related libraries for machine learning. Key Principles Write concise, technical responses with accurate Python examples Prioritize clarity, efficiency, and best practices in transformer workflows Use the Hugging Face API consistently and idiomatically Implement proper model loading, fine-tuning, and inference patterns Use descriptive variable names that r...
431
13312 api-development mindrally/skills
API Development You are an expert in API development with Go and NestJS. Go API Development with Standard Library (1.22+) Core Principles Always use the latest stable version of Go (1.22 or newer) Use the net/http package for HTTP handling Leverage the standard library before reaching for external dependencies HTTP Handling Use http.NewServeMux() for routing (Go 1.22+ enhanced patterns) Implement proper HTTP method handling Return appropriate status codes for all responses Handle request body ...
431
13313 cold-outreach gtmagents/gtm-agents
Cold Outreach Mastery When to Use Building outbound sequences for new personas or segments Personalizing cold email / LinkedIn outreach at scale Diagnosing low open or reply rates in existing sequences Designing follow-up cadences for SDR/XDR or founder-led sales Framework Core Principles – pattern interruption, value before ask, authentic personalization, mobile-first formatting, single CTA. SPARK Flow – Subject hook → Personalized opening → Agitate problem → Relevant value → Kick-off CTA. Chan...
431
13314 git-workflow mindrally/skills
Git Workflow When to use this skill Creating meaningful commit messages Managing branches Merging code Resolving conflicts Collaborating with team Git best practices Instructions Step 1: Branch management Create feature branch : Create and switch to new branch git checkout -b feature/feature-name Or create from specific commit git checkout -b feature/feature-name < commit-hash > Naming conventions : feature/description : New features bugfix/description : Bug fixes hotfix/description : Urgent f...
431
13315 flask jezweb/claude-skills
Flask Skill Production-tested patterns for Flask with the application factory pattern, Blueprints, and Flask-SQLAlchemy. Latest Versions (verified January 2026): Flask: 3.1.2 Flask-SQLAlchemy: 3.1.1 Flask-Login: 0.6.3 Flask-WTF: 1.2.2 Werkzeug: 3.1.5 Python: 3.9+ required (3.8 dropped in Flask 3.1.0) Quick Start Project Setup with uv Create project uv init my-flask-app cd my-flask-app Add dependencies uv add flask flask-sqlalchemy flask-login flask-wtf python-dotenv Run development serve...
430
13316 orchestrating-swarms everyinc/compound-engineering-plugin
Claude Code Swarm Orchestration Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Primitives Primitive What It Is File Location Agent A Claude instance that can use tools. You are an agent. Subagents are agents you spawn. N/A (process) Team A named group of agents working together. One leader, multiple teammates. ~/.claude/teams/{name}/config.json Teammate An agent that joined a team. Has a name, color, inbox. Spawned via Task with team_name + name . Listed in te...
430
13317 agent-md-refactor davila7/claude-code-templates
Agent MD Refactor Refactor bloated agent instruction files (AGENTS.md, CLAUDE.md, COPILOT.md, etc.) to follow progressive disclosure principles - keeping essentials at root and organizing the rest into linked, categorized files. Triggers Use this skill when: "refactor my AGENTS.md" / "refactor my CLAUDE.md" "split my agent instructions" "organize my CLAUDE.md file" "my AGENTS.md is too long" "progressive disclosure for my instructions" "clean up my agent config" Quick Reference Phase Action Outp...
430
13318 nosql-expert sickn33/antigravity-awesome-skills
NoSQL Expert Patterns (Cassandra & DynamoDB) Overview This skill provides professional mental models and design patterns for distributed wide-column and key-value stores (specifically Apache Cassandra and Amazon DynamoDB). Unlike SQL (where you model data entities), or document stores (like MongoDB), these distributed systems require you to model your queries first. When to Use Designing for Scale: Moving beyond simple single-node databases to distributed clusters. Technology Selection: Evalu...
430
13319 android-gradle-logic new-silvermoon/awesome-android-agent-skills
No SKILL.md available for this skill. View on GitHub
430
13320 python-fastapi-development sickn33/antigravity-awesome-skills
Python/FastAPI Development Workflow Overview Specialized workflow for building production-ready Python backends with FastAPI, featuring async patterns, SQLAlchemy ORM, Pydantic validation, and comprehensive API patterns. When to Use This Workflow Use this workflow when: Building new REST APIs with FastAPI Creating async Python backends Implementing database integration with SQLAlchemy Setting up API authentication Developing microservices Workflow Phases Phase 1: Project Setup Skills to Invoke a...
430
13321 git:create-worktree neolabhq/context-engineering-kit
Claude Command: Create Worktree Your job is to create and setup git worktrees for parallel development, with automatic detection and installation of project dependencies. Instructions CRITICAL: Perform the following steps exactly as described: Current state check : Run git worktree list to show existing worktrees and git status to verify the repository state is clean (no uncommitted changes that might cause issues) Fetch latest remote branches : Run git fetch --all to ensure local has knowledge ...
429
13322 dotnet-testing-strategy wshaddix/dotnet-skills
dotnet-testing-strategy Decision framework for choosing the right test type, organizing test projects, and selecting test doubles in .NET applications. Covers unit vs integration vs E2E trade-offs with concrete criteria, naming conventions, and when to use mocks vs fakes vs stubs. Out of scope: Test project scaffolding (directory layout, xUnit project creation, coverlet setup, editorconfig overrides) is owned by [skill:dotnet-add-testing]. Code coverage tooling and mutation testing are covered b...
429
13323 tauri martinholovsky/claude-skills-generator
Tauri Desktop Framework Skill File Organization This skill uses a split structure for HIGH-RISK requirements: SKILL.md: Core principles, patterns, and essential security (this file) references/security-examples.md: Complete CVE details and OWASP implementations references/advanced-patterns.md: Advanced Tauri patterns and plugins references/threat-model.md: Attack scenarios and STRIDE analysis Validation Gates Gate 0.1: Domain Expertise Validation Status: PASSED Expertise Areas: IPC security, c...
429
13324 grepai-storage-qdrant yoanbernabeu/grepai-skills
This skill covers using Qdrant as the storage backend for GrepAI, offering high-performance vector search. When to Use This Skill - Need fastest possible search performance - Very large codebases (50K+ files) - Already using Qdrant infrastructure - Want advanced vector search features What is Qdrant? Qdrant is a purpose-built vector database offering: - ⚡ Extremely fast vector similarity search - 📏 Excellent scalability - 🔧 Advanced filtering capabilities - 🐳 Easy Docker deployment ...
429
13325 git commit helper davila7/claude-code-templates
Git Commit Helper Quick start Analyze staged changes and generate commit message: View staged changes git diff --staged Generate commit message based on changes (Claude will analyze the diff and suggest a message) Commit message format Follow conventional commits format: <type>(<scope>): <description> [optional body] [optional footer] Types feat : New feature fix : Bug fix docs : Documentation changes style : Code style changes (formatting, missing semicolons) refactor : Code refactoring test...
429
13326 story-consistency-monitor wordflowlab/novel-writer-skills
故事一致性监控 自动检查系统 本技能监控什么 角色一致性 物理特征:眼睛颜色、身高、年龄、疤痕 性格:行动符合已建立的角色 知识:角色只知道他们应该知道的 成长:变化与角色弧线一致 世界规则 魔法/科技系统:力量的使用一致 地理:距离和地点保持稳定 社会规则:文化和习俗不矛盾 物理法则:已建立的规则不随机打破 时间线逻辑 事件顺序:A 在逻辑上发生在 B 之前 时间流逝:角色适当地老化 同时事件:多 POV 时间线对齐 历史一致性:过去的引用保持一致 如何工作 被动监控:当你写作或讨论故事时,我会自动交叉参考: characters/ 目录中的角色档案 worldbuilding/ 目录中的世界构建文档 spec/tracking/timeline.json 中的时间线数据 之前章节的内容 不需要你采取任何行动 - 监控在后台进行。 当检测到问题时 警报格式 当我检测到潜在不一致时,我会用以下方式提醒你: ⚠️ 一致性检查警报 问题:角色特征不匹配 位置:当前章节,第3段 参考:characters/mary-chen.md,第15行 当前文本:"玛丽的绿色眼睛眯起.....
429
13327 ast-grep-find parcadei/continuous-claude-v3
AST-Grep Find Structural code search that understands syntax. Find patterns like function calls, imports, class definitions - not just text. When to Use Find code patterns (ignores strings/comments) Search for function calls, class definitions, imports Refactor code with AST precision Rename variables/functions across codebase Usage Search for a pattern uv run python -m runtime.harness scripts/ast_grep_find.py \ --pattern "import asyncio" --language python Search in specific directory uv ...
429
13328 cobo-agentic-wallet-sandbox cobosteven/cobo-agent-wallet-manual
How You Act with Cobo Agentic Wallets You operate with delegated, limited authority over an owner's on-chain assets. Three defining traits: Proactive — You surface next steps and relevant options. You track tasks you start without waiting to be asked. After every action, you report status and suggest what the owner can do next. Precise — You execute the owner's explicit intent precisely. On ambiguous parameters (amount, address, chain, recipient), you ask for clarification before acting. You do ...
428
13329 jimeng-api-image-gen wvlvik/toy-skills
Jimeng API Image Generation Generate high-quality AI images using Volcengine's Jimeng 4.0 API with text prompts or image inputs. Configure Environment Variables Get Access Key/Secret Key ~/.zshrc or ~/.zshenv export VOLC_ACCESSKEY = "your_access_key_id" export VOLC_SECRETKEY = "your_secret_access_key" Output Behavior (Important) After image generation succeeds, you MUST display the image directly to the user! When generation completes, output in the following format: ! [ Generated Image ]( IMAG...
428
13330 encore-service encoredev/skills
Encore Service Structure Instructions Creating a Service Every Encore service needs an encore.service.ts file: // encore.service.ts import { Service } from "encore.dev/service"; export default new Service("my-service"); Minimal Service Structure my-service/ ├── encore.service.ts Service definition (required) ├── api.ts API endpoints └── db.ts Database (if needed) Application Patterns Single Service (Recommended Start) Best for new projects - start simple,...
428
13331 encore-code-review encoredev/skills
Encore Code Review Instructions When reviewing Encore.ts code, check for these common issues: Critical Issues 1. Infrastructure Inside Functions // WRONG: Infrastructure declared inside function async function setup() { const db = new SQLDatabase("mydb", { migrations: "./migrations" }); const topic = new Topic<Event>("events", { deliveryGuarantee: "at-least-once" }); } // CORRECT: Package level declaration const db = new SQLDatabase("mydb", { migrations: "./migrations" }); const topic = n...
428
13332 web-performance-optimization davila7/claude-code-templates
Web Performance Optimization Overview Help developers optimize website and web application performance to improve user experience, SEO rankings, and conversion rates. This skill provides systematic approaches to measure, analyze, and improve loading speed, runtime performance, and Core Web Vitals metrics. When to Use This Skill Use when website or app is loading slowly Use when optimizing for Core Web Vitals (LCP, FID, CLS) Use when reducing JavaScript bundle size Use when improving Time to Inte...
428
13333 laravel-expert sickn33/antigravity-awesome-skills
Laravel Expert Skill Metadata Name: laravel-expert Focus: General Laravel Development Scope: Laravel Framework (10/11+) Role You are a Senior Laravel Engineer. You provide production-grade, maintainable, and idiomatic Laravel solutions. You prioritize: Clean architecture Readability Testability Security best practices Performance awareness Convention over configuration You follow modern Laravel standards and avoid legacy patterns unless explicitly required. Use This Skill When Building new Larav...
428
13334 env-vars vercel/vercel-plugin
Vercel Environment Variables You are an expert in Vercel environment variable management — .env file conventions, the vercel env CLI, OIDC token lifecycle, and environment-specific configuration. .env File Hierarchy Vercel and Next.js load environment variables in a specific order. Later files override earlier ones: File Purpose Git-tracked? .env Default values for all environments Yes .env.local Local overrides and secrets No (gitignored) .env.development Development-specific defaults Yes .env....
428
13335 skyline-worklet wechat-miniprogram/skyline-skills
Worklet 动画系统 适用场景 实现手势跟随、拖拽等交互动画 使用 timing/spring/decay 创建动画效果 通过 SharedValue 驱动节点样式变化 组合多段动画(序列、重复、延迟) 在 UI 线程和 JS 线程间传递数据 核心概念 双线程架构与 Worklet 的意义 小程序双线程架构中,UI 事件需跨线程传递到 JS 线程再回传, 交互动画会有明显延迟 。Worklet 动画让动画逻辑直接运行在 UI 线程,实现类原生动画体验。 三大核心概念 Show more Installs 411 Repository wechat-miniprog…e-skills GitHub Stars 31 First Seen Mar 6, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
428
13336 web-performance-audit aj-geddes/useful-ai-prompts
Web Performance Audit Overview Web performance audits measure load times, identify bottlenecks, and guide optimization efforts to create faster, better user experiences. When to Use Regular performance monitoring After major changes User complaints about slowness SEO optimization Mobile optimization Performance baseline setting Instructions 1. Performance Metrics Core Web Vitals (Google): Largest Contentful Paint (LCP): Measure: Time to load largest visible element Good: <2.5 seconds Po...
427
13337 memory-optimization aj-geddes/useful-ai-prompts
Memory Optimization Overview Memory optimization improves application performance, stability, and reduces infrastructure costs. Efficient memory usage is critical for scalability. When to Use High memory usage Memory leaks suspected Slow performance Out of memory crashes Scaling challenges Instructions 1. Memory Profiling // Browser memory profiling // Check memory usage performance.memory: { jsHeapSizeLimit: 2190000000, // Max available totalJSHeapSize: 1300000000, // Total allocat...
427
13338 figma-integration mindrally/skills
Figma Integration Guidelines You are an expert in integrating Figma designs with development workflows. Apply these guidelines when working with Figma designs and implementing them in code. Design-to-Code Workflow Extracting Design Information Identify component structure and hierarchy from Figma layers Extract color values, typography settings, and spacing values Note responsive behavior and breakpoint variations Document interactive states (hover, active, focus, disabled) Capture animation a...
427
13339 shopify mindrally/skills
Shopify Theme Development You are an expert in Shopify theme development, Liquid templating, Online Store 2.0, and e-commerce best practices. Core Principles Write clean, maintainable Liquid code Follow Online Store 2.0 architecture patterns Optimize for performance and Core Web Vitals Ensure accessibility compliance Implement responsive, mobile-first designs Liquid Templating Best Practices Show more
427
13340 three-js mindrally/skills
Three.js Development You are an expert in React, Vite, Tailwind CSS, Three.js, React Three Fiber, and Next UI. Key Principles Write concise, technical responses with accurate React examples Use functional, declarative programming; avoid classes Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., isLoading, hasRendered) Use lowercase with dashes for directories (e.g., components/auth-wizard) Favor named exports for components JavaSc...
427
13341 mcp-builder mcp-use/skills
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint coverag...
427
13342 office jezweb/claude-skills
Office Document Generation Status: Production Ready Last Updated: 2026-01-12 Dependencies: None (pure JavaScript libraries) Latest Versions: docx@9.5.0, xlsx@0.18.5, pdf-lib@1.17.1, pptxgenjs@4.0.1 Overview Generate Microsoft Office documents and PDFs programmatically with TypeScript. All libraries are pure JavaScript with zero native dependencies, enabling universal runtime support: Format Library Workers Browser Node.js DOCX docx ✅ ✅ ✅ XLSX xlsx (SheetJS) ✅ ✅ ✅ PDF pdf-lib ✅ ✅ ✅ PPTX pptxg...
426
13343 review parcadei/continuous-claude-v3
Review Two-axis review of the diff between HEAD and a fixed point the user supplies: Standards — does the code conform to this repo's documented coding standards? Spec — does the code faithfully implement the originating issue / PRD / spec? Both axes run as parallel sub-agents so they don't pollute each other's context, then this skill aggregates their findings. The issue tracker should have been provided to you — run /setup-matt-pocock-skills if docs/agents/issue-tracker.md is missing. Process ...
426
13344 remember parcadei/continuous-claude-v3
The user wants to save this to long-term memory: $ARGUMENTS Quick start memory_save { "content" : "We rotate JWT refresh tokens on every use; the old token is revoked server-side in auth/refresh.ts." , "concepts" : "jwt-refresh-rotation, token-revocation, auth-flow" , "files" : "src/auth/refresh.ts" } Expected output: Saved memory abc12345 with 3 concepts: jwt-refresh-rotation, token-revocation, auth-flow. Why Show more Installs 9.2K Repository rohitg00/agentmemory GitHub Stars 26.5K First Seen ...
426
13345 qa-testing-playwright vasilyu1983/ai-agents-public
QA Testing (Playwright) High-signal, cost-aware E2E testing for web applications. Core docs: https://playwright.dev/docs/best-practices https://playwright.dev/docs/locators https://playwright.dev/docs/test-retries https://playwright.dev/docs/trace-viewer https://playwright.dev/docs/test-sharding https://playwright.dev/docs/ci Defaults (2026) Keep E2E thin: protect critical user journeys only; push coverage down (unit/integration/contract). Locator priority: getByRole → getByLabel/getByText → ...
426
13346 android-development dpconde/claude-android-skill
No SKILL.md available for this skill. View on GitHub
426
13347 cc-skill-backend-patterns sickn33/antigravity-awesome-skills
Backend Development Patterns Backend architecture patterns and best practices for scalable server-side applications. API Design Patterns RESTful API Structure // ✅ Resource-based URLs GET / api / markets List resources GET / api / markets / : id Get single resource POST / api / markets Create resource PUT / api / markets / : id Replace resource PATCH / api / markets / : id Update resource DELETE / api / markets / : id ...
426
13348 business-central-development mindrally/skills
Microsoft Dynamics 365 Business Central Development You are an expert in AL programming and Microsoft Dynamics 365 Business Central development, emphasizing clarity, modularity, and performance optimization. Key Principles Write clear, technical responses with precise AL examples Leverage built-in features and tools for maximum capability Follow AL naming conventions (PascalCase for public members, camelCase for private) Implement modular architecture using Business Central's object-based desi...
426
13349 kaizen:why neolabhq/context-engineering-kit
Five Whys Analysis Apply Five Whys root cause analysis to investigate issues by iteratively asking "why" to drill from symptoms to root causes. Description Iteratively ask "why" to move from surface symptoms to fundamental causes. Identifies systemic issues rather than quick fixes. Usage /why [issue_description] Variables ISSUE: Problem or symptom to analyze (default: prompt for input) DEPTH: Number of "why" iterations (default: 5, adjust as needed) Steps State the problem clearly Ask "Why did t...
425
13350 mlflow davila7/claude-code-templates
MLflow: ML Lifecycle Management Platform When to Use This Skill Use MLflow when you need to: Track ML experiments with parameters, metrics, and artifacts Manage model registry with versioning and stage transitions Deploy models to various platforms (local, cloud, serving) Reproduce experiments with project configurations Compare model versions and performance metrics Collaborate on ML projects with team workflows Integrate with any ML framework (framework-agnostic) Users: 20,000+ organization...
425