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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
10151 elixir mindrally/skills
Elixir You are an expert in Elixir and Phoenix development with deep knowledge of functional programming and concurrent systems. Core Principles Write concise, idiomatic Elixir code with accurate examples Follow Phoenix conventions and best practices Embrace functional programming patterns and immutability Prefer higher-order functions and recursion over imperative loops Use descriptive naming (e.g., user_signed_in?, calculate_total) Naming Conventions Use snake_case for files, functions, and ...
77
10152 alicloud-platform-devops-test cinience/alicloud-skills
Category: test PLATFORM DEVOPS Smoke Test Prerequisites Target skill: skills/platform/devops/alicloud-platform-devops/ . Optional online SDK test dependency: python -m pip install -U alibabacloud_devops20210625 alibabacloud_tea_openapi Test Steps Run offline script compilation check: python3 tests/common/compile_skill_scripts.py \ --skill-path skills/platform/devops/alicloud-platform-devops \ --output output/alicloud-platform-devops-test/compile-check.json Run metadata API discovery script: pyth...
77
10153 research-analyst 404kidwiz/claude-supercode-skills
Research Analyst Purpose Provides systematic research capabilities for complex investigations requiring multi-source information gathering, critical analysis, and knowledge synthesis. Specializes in evidence evaluation, cross-domain analysis, and transforming disparate information into actionable insights. When to Use Conducting comprehensive market or technology research Synthesizing information from multiple sources into coherent reports Evaluating competing claims or technologies Building k...
77
10154 smart-test rysweet/amplihack
Optimizes test execution by intelligently selecting which tests to run based on code changes. Instead of running the full test suite every time, this skill: - Maps code changes to affected test files using import dependency analysis - Provides tiered testing strategies for different feedback loop needs - Tracks test reliability to prioritize stable tests in fast runs When I Activate I automatically load when you mention: - "run affected tests" or "run impacted tests" - "smart test" or "i...
77
10155 fastapi pluginagentmarketplace/custom-plugin-python
FastAPI Skill Production-tested patterns for FastAPI with Pydantic v2, SQLAlchemy 2.0 async, and JWT authentication. Latest Versions (verified January 2026): FastAPI: 0.128.0 Pydantic: 2.11.7 SQLAlchemy: 2.0.30 Uvicorn: 0.35.0 python-jose: 3.3.0 Requirements : Python 3.9+ (Python 3.8 support dropped in FastAPI 0.125.0) Pydantic v2.7.0+ (Pydantic v1 support completely removed in FastAPI 0.128.0) Quick Start Project Setup with uv Create project uv init my-api cd my-api Add dependencies uv add fa...
77
10156 component-library shipshitdev/library
Component Library Standards Skill Expert React/Next.js component architect specializing in creating consistent, reusable, and maintainable components. When to Use This Skill Use when you're: Creating new UI components Refactoring existing components for reusability Reviewing component architecture Setting up shared component patterns Optimizing component performance Quick Reference Naming Files: PascalCase (Button.tsx) Props: ComponentNameProps interface Hooks: use- prefix (use-auth.ts) Stru...
77
10157 testing-expert shipshitdev/library
Testing Expert Skill Expert in testing strategies for React, Next.js, and NestJS applications. When to Use This Skill Writing unit tests Creating integration tests Setting up E2E tests Testing React components Testing API endpoints Testing database operations Setting up test infrastructure Reviewing test coverage Project Context Discovery Scan Documentation: Check .agent/SYSTEM/ARCHITECTURE.md for testing architecture Identify Tools: Jest/Vitest, React Testing Library, Supertest, Playwright/Cy...
77
10158 performance-monitor 404kidwiz/claude-supercode-skills
Provides expertise in monitoring, benchmarking, and optimizing AI agent performance. Specializes in token usage tracking, latency analysis, cost optimization, and implementing quality evaluation metrics (evals) for AI systems. When to Use - Tracking token usage and costs for AI agents - Measuring and optimizing agent latency - Implementing evaluation metrics (evals) - Benchmarking agent quality and accuracy - Optimizing agent cost efficiency - Building observability for AI pipelines - A...
77
10159 pdf-text-extractor willoscar/research-units-pipeline-skills
Optionally collect full-text snippets to deepen evidence beyond abstracts. This skill is intentionally conservative: in many survey runs, abstract/snippet mode is enough and avoids heavy downloads. Inputs - `papers/core_set.csv` (expects `paper_id`, `title`, and ideally `pdf_url`/`arxiv_id`/`url`) - Optional: `outline/mapping.tsv` (to prioritize mapped papers) Outputs - `papers/fulltext_index.jsonl` (one record per attempted paper) - Side artifacts: `papers/pdfs/<paper_id>.pdf` (cached...
77
10160 automate-whatsapp sickn33/antigravity-awesome-skills
Use this skill to build and run WhatsApp automations: workflow CRUD, graph edits, triggers, executions, function management, app integrations, and D1 database operations. Setup Env vars: - `KAPSO_API_BASE_URL` (host only, no `/platform/v1`) - `KAPSO_API_KEY` How to Edit a workflow graph - Fetch graph: `node scripts/get-graph.js <workflow_id>` (note the `lock_version`) - Edit the JSON (see graph rules below) - Validate: `node scripts/validate-graph.js --definition-file <path>` - Upda...
77
10161 react-server-components-framework yonatangross/orchestkit
React Server Components Framework Overview React Server Components (RSC) enable server-first rendering with client-side interactivity. This skill covers Next.js 16 App Router patterns, Server Components, Server Actions, and streaming. When to use this skill: Building Next.js 16+ applications with the App Router Designing component boundaries (Server vs Client Components) Implementing data fetching with caching and revalidation Creating mutations with Server Actions Optimizing performance with st...
77
10162 alicloud-media-video-translation-test cinience/alicloud-skills
Category: test MEDIA VIDEO TRANSLATION Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/media/video/alicloud-media-video-translation/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/media/video/alicloud-media-video-translation \ --output output/alicloud-media-video-translation-test...
77
10163 tech-design-doc bahayonghang/my-claude-code-settings
Technical Design Document Skill Execution Flow 1. Assess Complexity Level Scope Sections Required Small Single component, <100 LOC TL;DR, Design, Implementation Medium Cross-component, API changes + Background, Solution Analysis Large System-level, new service Full template 2. Gather Context Explore the codebase before writing: Identify affected components using Glob and Grep for related code. Read existing implementations and patterns. Note dependencies and potential side effects. Check for sim...
77
10164 svelte mindrally/skills
Svelte Guidelines $derived Value Mapping: Use satisfies Record , Not Ternaries When a $derived expression maps a finite union to output values, use a satisfies Record lookup. Never use nested ternaries. Never use $derived.by() with a switch just to map values. <!-- Bad: nested ternary in $derived --> <!-- Bad: $derived.by with switch for a pure value lookup --> <!-- Good: $derived with satisfies Record --> Why satisfies Record wins: Compile-time exhaustiveness: add a value to the union and Ty...
77
10165 dial-your-context sanity-io/agent-context
Dial Your Context Help a user create the Instructions field content for their Sanity Agent Context MCP. The goal is a concise set of pure deltas — only information the agent can't figure out from the auto-generated schema. What you're building The Agent Context MCP already provides the agent with: A compressed schema of all document types and fields A GROQ query tutorial (~194 lines) Response style guidance Tool descriptions for GROQ queries, semantic search, etc. The Instructions field you're c...
77
10166 ml-ops-engineer borghei/claude-skills
MLOps Engineer The agent operates as a senior MLOps engineer, deploying models to production, orchestrating training pipelines, monitoring model health, managing feature stores, and automating ML CI/CD. Workflow Assess ML maturity -- Determine the current level (manual notebooks vs. automated pipelines vs. full CI/CD). Identify the highest-impact gap to close first. Build or extend training pipeline -- Define fetch-data, validate, preprocess, train, evaluate stages. Use Kubeflow, Airflow, or equ...
77
10167 swift-testing-code-review existential-birds/beagle
Swift Testing Code Review Quick Reference Issue Type Reference expect vs require, expression capture, error testing references/expect-macro.md @Test with arguments, traits, zip() pitfalls references/parameterized.md confirmation, async sequences, completion handlers references/async-testing.md @Suite, tags, parallel execution, .serialized references/organization.md Review Checklist Expressions embedded directly in expect (not pre-computed booleans) require used only for preconditions, expect for...
77
10168 alicloud-ai-recommend-airec-test cinience/alicloud-skills
Category: test AI RECOMMEND AIREC Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/ai/recommendation/alicloud-ai-recommend-airec/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/ai/recommendation/alicloud-ai-recommend-airec \ --output output/alicloud-ai-recommend-airec-test/compile...
77
10169 breadboarding rjs/shaping-skills
No SKILL.md available for this skill. View on GitHub
77
10170 microservices mindrally/skills
Microservices Development You are an expert in microservices architecture with FastAPI/Python and Go. Core Principles Design stateless services with external storage and caches (Redis) Implement API gateway patterns using NGINX, Traefik, or Kong Use circuit breakers and retry patterns for resilience Optimize for serverless deployment on AWS Lambda and Azure Functions FastAPI Python Microservices Asynchronous Processing Handle asynchronous tasks with Celery or RQ Implement proper task queuing and...
77
10171 owasp-llm-top10 mastepanoski/claude-skills
OWASP Top 10 for LLM Applications Security Audit This skill enables AI agents to perform a comprehensive security assessment of Large Language Model (LLM) and Generative AI applications using the OWASP Top 10 for LLM Applications 2025 , published by the OWASP GenAI Security Project. The OWASP Top 10 for LLM Applications identifies the most critical security risks in systems that integrate large language models, covering vulnerabilities from prompt injection to unbounded resource consumption. Thi...
77
10172 agent-skills-creator mblode/agent-skills
Agent Skills Creator Create skills that follow the Agent Skills open format. Covers the full lifecycle from pattern selection through validation and README update. Reference Files File Read When references/format-specification.md Default: frontmatter constraints, directory structure, naming rules references/skill-patterns.md Choosing a pattern or need a structural template for a specific skill type references/quality-checklist.md Final validation before shipping Choose a Skill Pattern Pattern Wh...
77
10173 performance-review anthropics/knowledge-work-plugins
/performance-review If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Generate performance review templates and help structure feedback. Usage /performance-review $ARGUMENTS Modes /performance-review self-assessment Generate self-assessment template /performance-review manager [employee] Manager review template for a specific person /performance-review calibration Calibration prep document If no mode is specified, ask what ty...
77
10174 errors yonatangross/orchestkit
Error Pattern Analysis Analyze errors captured from Claude Code sessions to identify patterns and get actionable insights. Quick Start /errors Batch analysis of historical error patterns /debug CC 2.1.30 real-time debug for current session When to Use Which Command Purpose Scope /errors Batch analysis of error patterns (last 24h/7d) Historical patterns /debug Real-time debug of current session state Current session /ork:fix-issue Full RCA workflow for specific bug Single issue Quick Analysis ...
77
10175 tensorrt-llm orchestra-research/ai-research-skills
TensorRT-LLM NVIDIA's open-source library for optimizing LLM inference with state-of-the-art performance on NVIDIA GPUs. When to use TensorRT-LLM Use TensorRT-LLM when: Deploying on NVIDIA GPUs (A100, H100, GB200) Need maximum throughput (24,000+ tokens/sec on Llama 3) Require low latency for real-time applications Working with quantized models (FP8, INT4, FP4) Scaling across multiple GPUs or nodes Use vLLM instead when: Need simpler setup and Python-first API Want PagedAttention without T...
77
10176 project-astrology-vedic vasilyu1983/ai-agents-public
Vedic Astrology (Jyotish) — Expert Advisor Defaults (State These Up Front) Use the sidereal zodiac. Default ayanamsa: Lahiri (unless the user requests Raman/KP/other). Default houses: Whole Sign (unless the user requests another tradition). Default nodes: mean Rahu/Ketu (unless the user requests true nodes). Default timing: Vimshottari Dasha + transits (Jupiter/Saturn emphasis). If any of these defaults materially affect the answer, ask the user to confirm them. Intake (Ask Only What You Need)...
77
10177 alicloud-ai-content-aicontent-test cinience/alicloud-skills
Category: test AI CONTENT AICONTENT Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/ai/content/alicloud-ai-content-aicontent/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/ai/content/alicloud-ai-content-aicontent \ --output output/alicloud-ai-content-aicontent-test/compile-check...
77
10178 alicloud-database-analyticdb-mysql-test cinience/alicloud-skills
Category: test DATABASE ANALYTICDB MYSQL Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/database/analyticdb/alicloud-database-analyticdb-mysql/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/database/analyticdb/alicloud-database-analyticdb-mysql \ --output output/alicloud-databa...
77
10179 doctor yonatangross/orchestkit
OrchestKit Health Diagnostics Argument Resolution FLAGS = "$ARGUMENTS" Full argument string, e.g., "--verbose" or "--json" FLAG = "$ARGUMENTS[0]" First token: -v, --verbose, --json, --category=X $ARGUMENTS[0], $ARGUMENTS[1] for indexed access (CC 2.1.59) Overview The /ork:doctor command performs comprehensive health checks on your OrchestKit installation. It auto-detects installed plugins and validates 12 categories: Installed Plugins - Detects ork plugin Skills Validation - Frontmatter, refe...
77
10180 url-state-management andrelandgraf/fullstackrecipes
URL State Management Sync React state to URL query parameters for shareable filters, search, and deep-linkable dialogs with nuqs. Prerequisites Complete these recipes first (in order): Next.js on Vercel Create a Next.js app running on Bun, configure the development environment, and deploy to Vercel with automatic deployments on push. curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/nextjs-on-vercel Cookbook - Complete These Recipes in Order URL State with nuqs Syn...
77
10181 webflow-automation sickn33/antigravity-awesome-skills
Webflow Automation via Rube MCP Automate Webflow operations including CMS collection management, site publishing, page inspection, asset uploads, and ecommerce order retrieval through Composio's Webflow toolkit. Toolkit docs : composio.dev/toolkits/webflow Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Webflow connection via RUBE_MANAGE_CONNECTIONS with toolkit webflow Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://...
77
10182 notion-automation sickn33/antigravity-awesome-skills
Notion Automation Automate Notion databases and workflows with cross-platform integrations, templates, and intelligent triggers. Based on n8n's Notion workflow templates. Overview This skill covers: Database automation and triggers Template and page creation Cross-platform sync (Slack, Calendar, CRM) Content management workflows Team collaboration automation Core Workflows 1. Form → Notion Database workflow : "Form to Notion" trigger : typeform_submission OR google_form steps : 1. capture_data :...
77
10183 create-skill launchdarkly/agent-skills
Create Skill Guide for creating effective skills that extend agent capabilities with specialized knowledge, workflows, and tool integrations. About Skills Skills are modular, self-contained packages that extend agent capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks. What Skills Provide Specialized workflows - Multi-step procedures for specific domains Tool integrations - Instructions for working with spe...
77
10184 oracle-codex paulrberg/agent-skills
Codex Oracle Use OpenAI Codex CLI as a read-only oracle — planning, review, and analysis only. Codex provides its perspective; you synthesize and present results to the user. Sandbox is always read-only . Codex must never implement changes. Arguments Parse $ARGUMENTS for: query — the main question or task (everything not a flag). Required — if empty, tell the user to provide a query and stop. --reasoning <level> — override reasoning effort ( low , medium , high , xhigh ). Optional; default is au...
77
10185 flexlayout-react bobmatnyc/claude-mpm-skills
FlexLayout-React - Professional Docking Layouts Overview FlexLayout-React provides IDE-quality docking layouts with drag-and-drop, tabs, splitters, and complex window management. Perfect for dashboards, IDEs, admin panels, and any interface requiring flexible, user-customizable layouts. Key Features: Drag-and-drop panel repositioning Tabbed interfaces with close, maximize, minimize Splitters for resizable panes Border docking areas Layout persistence (save/restore) Programmatic layout control...
77
10186 c-sharp mindrally/skills
C Development Guidelines You are an expert in C development with deep knowledge of .NET, Blazor, Unity, and modern C language features. Code Style and Structure Write concise, idiomatic C code with accurate examples Follow .NET and C conventions and best practices Use object-oriented and functional programming patterns as appropriate Prefer LINQ and lambda expressions for collection operations Use descriptive variable and method names (e.g., IsUserLoggedIn, GetUserById) Structure files accordi...
77
10187 schema-builder get-convex/convex-agent-plugins
Convex Schema Builder Build well-structured Convex schemas following best practices for relationships, indexes, and validators. When to Use Creating a new convex/schema.ts file Adding tables to existing schema Designing data model relationships Adding or optimizing indexes Converting nested data to relational structure Schema Design Principles Document-Relational : Use flat documents with ID references, not deep nesting Index Foreign Keys : Always index fields used in lookups (userId, teamId, et...
77
10188 enterprise-architecture-patterns manutej/luxor-claude-marketplace
Enterprise Architecture Patterns A comprehensive skill for mastering enterprise architecture patterns, distributed systems design, and scalable application development. This skill covers strategic and tactical patterns for building robust, maintainable, and scalable enterprise systems. When to Use This Skill Use this skill when: Designing microservices architectures for distributed systems Implementing domain-driven design (DDD) in complex business domains Building event-driven architectures...
77
10189 devcontainer-setup shipshitdev/library
Devcontainer Setup Skill Creates a pre-configured devcontainer with Claude Code and language-specific tooling. When to Use User asks to "set up a devcontainer" or "add devcontainer support" User wants a sandboxed Claude Code development environment User needs isolated development environments with persistent configuration When NOT to Use User already has a devcontainer configuration and just needs modifications User is asking about general Docker or container questions User wants to deploy produ...
77
10190 nansen-perp-trader nansen-ai/nansen-cli
Perp Trader Answers: "What is this perp trader doing? What are their positions and track record?" ADDR = < address > nansen research profiler labels --address $ADDR --chain ethereum → label, category (identity, SM labels) nansen research profiler perp-positions --address $ADDR → asset_positions, margin_summary_account_value_usd, margin_summary_total_margin_used_usd nansen research profiler perp-trades --address $ADDR --days 7 --limit 20 → timestamp, token_symbol, side, action (Open/Close/Redu...
77
10191 vhs pproenca/dot-skills
Comprehensive best practices guide for VHS terminal recordings, maintained by Charmbracelet. Contains 47 rules across 8 categories, prioritized by impact to guide creation of professional, portable, and optimized terminal demos. When to Apply Reference these guidelines when: - Writing new VHS tape files - Creating terminal demos for documentation - Setting up CI/CD for automated GIF generation - Optimizing recording file size and quality - Troubleshooting tape file issues - Reviewing ta...
76
10192 browser-tools yonatangross/orchestkit
Browser Tools OrchestKit orchestration wrapper for browser automation. Delegates command documentation to the upstream agent-browser skill and adds security rules, rate limiting, and ethical scraping guardrails. Decision Tree Fallback decision tree for web content 1. Try WebFetch first (fast, no browser overhead) 2. If empty/partial -> Try Tavily extract/crawl 3. If SPA or interactive -> use agent-browser 4. If login required -> authentication flow + state save 5. If dynamic -> wait @eleme...
76
10193 bash-master josiahsiegel/claude-plugin-marketplace
Bash Scripting Mastery 🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new docu...
76
10194 openwork-debug different-ai/openwork
Credential check Set these before running the HTTP checks: OPENWORK_SERVER_URL OPENWORK_SERVER_TOKEN OPENWORK_WORKSPACE_ID (optional; use /workspaces to discover) Quick usage (read-only) curl -s " $OPENWORK_SERVER_URL /health" curl -s " $OPENWORK_SERVER_URL /capabilities" \ -H "Authorization: Bearer $OPENWORK_SERVER_TOKEN " curl -s " $OPENWORK_SERVER_URL /workspaces" \ -H "Authorization: Bearer $OPENWORK_SERVER_TOKEN " Workspace config snapshot curl -s " $OPENWORK_SERVER_URL /workspace/ $OPENWOR...
76
10195 miniqmt-skills nnquant/miniqmt-skills
XtQuant (迅投量化) 技能文档 XtQuant 是基于迅投 MiniQMT 的完善 Python 策略运行框架,提供量化交易所需的行情和交易 API 接口。 何时使用此技能 在以下场景中应该使用此技能: 量化交易开发 开发 A 股量化交易策略 实现自动化交易系统 构建回测框架 编写交易信号生成逻辑 行情数据处理 获取历史 K 线数据(日线、分钟线等) 订阅实时行情推送 下载财务数据和板块信息 处理分笔成交数据 交易执行 程序化下单(限价单、市价单等) 批量撤单操作 查询账户资产、持仓、委托 接收交易回报推送 问题排查 调试 XtQuant 连接问题 解决数据订阅失败 处理交易接口报错 优化策略性能 核心概念 两大核心模块 xtdata - 行情数据模块 提供历史和实时的 K 线、分笔数据 财务数据、合约基础信息 板块和行业分类信息 需要先启动 MiniQMT 客户端 xttrader - 交易执行模块 报单、撤单操作 查询资产、委托、成交、持仓 接收资金、委托、成交等主推消息 支持回调机制处理交易事件 运行环境要求 Python 版本:3.6 - 3.12(64位) 必须先启动...
76
10196 implementing-figma-designs onekeyhq/app-monorepo
Implementing Figma Designs This skill helps you implement Figma designs 1:1 using the OneKey component library. Core Principles Focus on UI First, Data Later When implementing Figma designs, prioritize pixel-perfect UI over data integration: Use mock data - Hardcode data that matches the design exactly Skip i18n - Use plain strings directly from the design, no intl.formatMessage Skip API calls - No need to fetch real data at this stage Match the design - Focus on visual accuracy, spacing, colors...
76
10197 mutation-testing jwilger/agent-skills
Mutation Testing Overview Mutation testing assesses test suite quality by introducing small changes (mutations) to source code and verifying that tests fail. If tests don't catch a mutation, it indicates gaps in test coverage or test quality. This technique helps identify weak or ineffective tests. When to Use Evaluating test suite effectiveness Finding untested code paths Improving test quality metrics Validating critical business logic is well-tested Identifying redundant or weak tests Measu...
76
10198 performance-report anthropics/knowledge-work-plugins
Performance Report If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Generate a marketing performance report with key metrics, trend analysis, insights, and optimization recommendations. Trigger User runs /performance-report or asks for a marketing report, performance analysis, campaign results, or metrics summary. Inputs Report type — determine which type of report the user needs: Campaign report — performance of a specific campaign Channel repor...
76
10199 pydantic-ai-model-integration existential-birds/beagle
PydanticAI Model Integration Provider Model Strings Format: provider:model-name from pydantic_ai import Agent OpenAI Agent('openai:gpt-4o') Agent('openai:gpt-4o-mini') Agent('openai:o1-preview') Anthropic Agent('anthropic:claude-sonnet-4-5') Agent('anthropic:claude-haiku-4-5') Google (API Key) Agent('google-gla:gemini-2.0-flash') Agent('google-gla:gemini-2.0-pro') Google (Vertex AI) Agent('google-vertex:gemini-2.0-flash') Groq Agent('groq:llama-3.3-70b-versatile') Agent('groq:mixtral...
76
10200 dotnet-install rysweet/amplihack
.NET Installation Skill Automated .NET SDK and runtime installation with intelligent platform detection, version management, and troubleshooting guidance. Quick Start Check Current Installation dotnet --version Output: 8.0.100 dotnet --list-sdks Output: 8.0.100 [/usr/local/share/dotnet/sdk] dotnet --list-runtimes Output: Microsoft.NETCore.App 8.0.0 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Platform Detection The skill automatically detects your operating system and recommen...
76