███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 2151 | notion-cli | makenotion/skills |
Notion CLI Look things up before answering The CLI is self-documenting. Always prefer running these commands over guessing syntax or relying on memorized knowledge: ntn api ls — list every public API endpoint. ntn api <path> --help — show methods, doc links, and usage for an endpoint. ntn api <path> --docs — print the full official docs for an endpoint. ntn api <path> --spec — print a reduced OpenAPI fragment (useful for understanding request/response schemas). ntn <command> --help — help for an...
|
3.5K |
| 2152 | docx-manipulation | claude-office-skills/skills |
DOCX Manipulation Skill Overview This skill enables programmatic creation, editing, and manipulation of Microsoft Word (.docx) documents using the python-docx library. Create professional documents with proper formatting, styles, tables, and images without manual editing. How to Use Describe what you want to create or modify in a Word document Provide any source content (text, data, images) I'll generate python-docx code and execute it Example prompts: "Create a professional report with title, h...
|
3.5K |
| 2153 | seo-aeo-best-practices | sanity-io/agent-toolkit |
SEO & AEO Best Practices Principles for optimizing content for both traditional search engines (SEO) and AI-powered answer engines (AEO). Includes Google's EEAT guidelines and structured data implementation. When to Apply Reference these guidelines when: Implementing metadata and Open Graph tags Creating sitemaps and robots.txt Adding JSON-LD structured data Optimizing content for featured snippets Preparing content for AI assistants (ChatGPT, Perplexity, etc.) Evaluating content quality usi...
|
3.5K |
| 2154 | golang-samber-ro | samber/cc-skills-golang |
Persona: You are a Go engineer who reaches for reactive streams when data flows asynchronously or infinitely. You use samber/ro to build declarative pipelines instead of manual goroutine/channel wiring, but you know when a simple slice + samber/lo is enough. Thinking mode: Use ultrathink when designing advanced reactive pipelines or choosing between cold/hot observables, subjects, and combining operators. Wrong architecture leads to resource leaks or missed events. samber/ro — Reactive Streams f...
|
3.5K |
| 2155 | golang-samber-mo | samber/cc-skills-golang |
Persona: You are a Go engineer bringing functional programming safety to Go. You use monads to make impossible states unrepresentable — nil checks become type constraints, error handling becomes composable pipelines. Thinking mode: Use ultrathink when designing multi-step Option/Result/Either pipelines. Wrong type choice creates unnecessary wrapping/unwrapping that defeats the purpose of monads. samber/mo — Monads and Functional Abstractions for Go Go 1.18+ library providing type-safe monadic ty...
|
3.5K |
| 2156 | clerk-chrome-extension-patterns | clerk/skills |
Chrome Extension Patterns CRITICAL RULES OAuth (Google, GitHub, etc.) and SAML are NOT supported in popups or side panels -- use syncHost to delegate auth to your web app Email links (magic links) don't work in popups -- the popup closes when the user clicks outside, resetting sign-in state Side panels don't auto-refresh auth state -- users must close and reopen the side panel after signing in via the web app Service workers and content scripts have NO access to Clerk React hooks -- use createCl...
|
3.5K |
| 2157 | healthcare-emr-patterns | affaan-m/everything-claude-code |
Healthcare EMR Development Patterns Patterns for building Electronic Medical Record (EMR) and Electronic Health Record (EHR) systems. Prioritizes patient safety, clinical accuracy, and practitioner efficiency. When to Use Building patient encounter workflows (complaint, exam, diagnosis, prescription) Implementing clinical note-taking (structured + free text + voice-to-text) Designing prescription/medication modules with drug interaction checking Integrating Clinical Decision Support Systems (CDS...
|
3.5K |
| 2158 | browser-automation | web-infra-dev/midscene-skills |
Browser Automation You are a browser automation expert who has debugged thousands of flaky tests and built scrapers that run for years without breaking. You've seen the evolution from Selenium to Puppeteer to Playwright and understand exactly when each tool shines. Your core insight: Most automation failures come from three sources - bad selectors, missing waits, and detection systems. You teach people to think like the browser, use the right selectors, and let Playwright's auto-wait do its job....
|
3.5K |
| 2159 | ljg-word | lijigang/ljg-skills |
Usage Instructions 目标不是翻译,而是让用户掌握这个词的深层含义和用法。 针对输入的 word (转换为小写,首字母大写),进行以下分析,直接在对话中用 Markdown 输出: 输出结构 1. 标题行 {Word} /{音标}/ {中文翻译} 2. 核心语义 原始画面 : 用一句话描述该词源头最物理的画面(例如 Incubate: 母鸡趴在蛋上)。 核心意象 : 提炼公式(例如:温暖 + 时间 + 保护 = 孕育)。 解释 : 用充满洞见的语言阐述其深层含义与现代用法。分段清晰, 加粗 关键词。要有穿透力,展现词源、多领域含义之间的内在联系。 3. 一语道破 一句中英双语的金句,必须具有哲学高度,总结该词的灵魂。用引用格式: > "English sentence. 中文金句。"
|
3.5K |
| 2160 | golang-samber-hot | samber/cc-skills-golang |
Persona: You are a Go engineer who treats caching as a system design decision. You choose eviction algorithms based on measured access patterns, size caches from working-set data, and always plan for expiration, loader failures, and monitoring. Using samber/hot for In-Memory Caching in Go Generic, type-safe in-memory caching library for Go 1.22+ with 9 eviction algorithms, TTL, loader chains with singleflight deduplication, sharding, stale-while-revalidate, and Prometheus metrics. Official Resou...
|
3.5K |
| 2161 | threejs-textures | cloudai-x/threejs-skills |
Three.js Textures Quick Start import * as THREE from "three"; // Load texture const loader = new THREE.TextureLoader(); const texture = loader.load("texture.jpg"); // Apply to material const material = new THREE.MeshStandardMaterial({ map: texture, }); Texture Loading Basic Loading const loader = new THREE.TextureLoader(); // Async with callbacks loader.load( "texture.jpg", (texture) => console.log("Loaded"), (progress) => console.log("Progress"), (error) => console.error("Error"),...
|
3.5K |
| 2162 | testing-strategy | anthropics/knowledge-work-plugins |
Testing Strategy Design effective testing strategies balancing coverage, speed, and maintenance. Testing Pyramid / E2E \ Few, slow, high confidence / Integration \ Some, medium speed / Unit Tests \ Many, fast, focused Strategy by Component Type API endpoints : Unit tests for business logic, integration tests for HTTP layer, contract tests for consumers Data pipelines : Input validation, transformation correctness, idempotency tests Frontend : Component tests, interaction test...
|
3.5K |
| 2163 | do | thedotmack/claude-mem |
Do Plan You are an ORCHESTRATOR. Deploy subagents to execute all work. Do not do the work yourself except to coordinate, route context, and verify that each subagent completed its assigned checklist. Execution Protocol Rules Each phase uses fresh subagents where noted (or when context is large/unclear) Assign one clear objective per subagent and require evidence (commands run, outputs, files changed) Do not advance to the next step until the assigned subagent reports completion and the orchestra...
|
3.5K |
| 2164 | video-production | supercent-io/skills-template |
Remotion Video Production Programmable video production skill using Remotion. Generate automated videos from text instructions and produce consistent, brand-aligned videos at scale. When to use this skill Automated video generation : Generate videos from text instructions Brand video production : High-volume videos with consistent style Programmable content : Combine narration, visuals, and animation Marketing content : Product intros, onboarding, promo videos Instructions Step 1: Define the Vid...
|
3.4K |
| 2165 | marketing-automation | supercent-io/skills-template |
Marketing Skills Collection A collection of 23 sub-skills for marketing deliverables. Generates repeatable, high-quality outputs across CRO, copywriting, SEO, analytics, and growth. When to use this skill Marketing Deliverables Needed : CRO, copy, SEO, analytics, growth outputs Repeatable High-Quality Outputs : Generate assets tuned to a single KPI Business Goal → Skill Mapping : Convert goals to specific marketing sub-skills 23 Sub-Skills Overview CRO (Conversion Rate Optimization) Sub-Skill De...
|
3.4K |
| 2166 | apify-market-research | apify/agent-skills |
Conduct market research using Apify Actors to extract data from multiple platforms. Prerequisites (No need to check it upfront) - `.env` file with `APIFY_TOKEN` - Node.js 20.6+ (for native `--env-file` support) - `mcpc` CLI tool (for fetching Actor schemas) Workflow Copy this checklist and track progress: ``` Task Progress: - [ ] Step 1: Identify market research type (select Actor) - [ ] Step 2: Fetch Actor schema via mcpc - [ ] Step 3: Ask user preferences (format, filename) - [ ] Ste...
|
3.4K |
| 2167 | nano-banana-pro-prompts-recommend-skill | youmind-openlab/nano-banana-pro-prompts-recommend-skill |
Nano Banana Pro Prompts Recommendation You are an expert at recommending image generation prompts from the Nano Banana Pro prompt library (6000+ prompts). Quick Start User provides image generation need → You recommend matching prompts with sample images → User selects a prompt → (If content provided) Remix to create customized prompt. Two Usage Modes Direct Generation: User describes what image they want → Recommend prompts → Done Content Illustration: User provides content (article/video s...
|
3.4K |
| 2168 | logging-best-practices | boristane/agent-skills |
Logging Best Practices Skill Version: 1.0.0 Purpose This skill provides guidelines for implementing effective logging in applications. It focuses on wide events (also called canonical log lines) - a pattern where you emit a single, context-rich event per request per service, enabling powerful debugging and analytics. When to Apply Apply these guidelines when: Writing or reviewing logging code Adding console.log, logger.info, or similar Designing logging strategy for new services Setting up...
|
3.4K |
| 2169 | laravel-plugin-discovery | affaan-m/everything-claude-code |
Laravel Plugin Discovery Find, evaluate, and choose healthy Laravel packages using the LaraPlugins.io MCP server. When to Use User wants to find Laravel packages for a specific feature (e.g. "auth", "permissions", "admin panel") User asks "what package should I use for..." or "is there a Laravel package for..." User wants to check if a package is actively maintained User needs to verify Laravel version compatibility User wants to assess package health before adding to a project MCP Requirement L...
|
3.4K |
| 2170 | nano-pdf | steipete/clawdis |
nano-pdf Use nano-pdf to apply edits to a specific page in a PDF using a natural-language instruction. Quick start nano-pdf edit deck.pdf 1 "Change the title to 'Q3 Results' and fix the typo in the subtitle" Notes: Page numbers are 0-based or 1-based depending on the tool’s version/config; if the result looks off by one, retry with the other. Always sanity-check the output PDF before sending it out.
|
3.4K |
| 2171 | autonomous-agent-harness | affaan-m/everything-claude-code |
Autonomous Agent Harness Turn Claude Code into a persistent, self-directing agent system using only native features and MCP servers. When to Activate User wants an agent that runs continuously or on a schedule Setting up automated workflows that trigger periodically Building a personal AI assistant that remembers context across sessions User says "run this every day", "check on this regularly", "keep monitoring" Wants to replicate functionality from Hermes, AutoGPT, or similar autonomous agent f...
|
3.4K |
| 2172 | brand-voice | affaan-m/everything-claude-code |
Brand Voice Build a durable voice profile from real source material, then use that profile everywhere instead of re-deriving style from scratch or defaulting to generic AI copy. When to Activate the user wants content or outreach in a specific voice writing for X, LinkedIn, email, launch posts, threads, or product updates adapting a known author's tone across channels the existing content lane needs a reusable style system instead of one-off mimicry Source Priority Use the strongest real source ...
|
3.4K |
| 2173 | ck | affaan-m/everything-claude-code |
ck — Context Keeper You are the Context Keeper assistant. When the user invokes any /ck:* command, run the corresponding Node.js script and present its stdout to the user verbatim. Scripts live at: ~/.claude/skills/ck/commands/ (expand ~ with $HOME ). Data Layout ~/.claude/ck/ ├── projects.json ← path → {name, contextDir, lastUpdated} └── contexts/<name>/ ├── context.json ← SOURCE OF TRUTH (structured JSON, v2) └── CONTEXT.md ← generated view — do not hand-edit...
|
3.4K |
| 2174 | agent-payment-x402 | affaan-m/everything-claude-code |
Agent Payment Execution (x402) Enable AI agents to make autonomous payments with built-in spending controls. Uses the x402 HTTP payment protocol and MCP tools so agents can pay for external services, APIs, or other agents without custodial risk. When to Use Use when: your agent needs to pay for an API call, purchase a service, settle with another agent, enforce per-task spending limits, or manage a non-custodial wallet. Pairs naturally with cost-aware-llm-pipeline and security-review skills. How...
|
3.4K |
| 2175 | data-analyst | shubhamsaboo/awesome-llm-apps |
Data Analyst You are an expert data analyst with expertise in SQL, Python (pandas), and statistical analysis. When to Apply Use this skill when: Writing SQL queries for data extraction Analyzing datasets with pandas Performing statistical analysis Creating data transformations Identifying data patterns and insights Data cleaning and preparation Core Competencies SQL Complex queries with JOINs, subqueries, CTEs Window functions and aggregations Query optimization Database design understanding pan...
|
3.4K |
| 2176 | token-budget-advisor | affaan-m/everything-claude-code |
Token Budget Advisor (TBA) Intercept the response flow to offer the user a choice about response depth before Claude answers. When to Use User wants to control how long or detailed a response is User mentions tokens, budget, depth, or response length User says "short version", "tldr", "brief", "al 25%", "exhaustive", etc. Any time the user wants to choose depth/detail level upfront Do not trigger when: user already set a level this session (maintain it silently), or the answer is trivially one l...
|
3.4K |
| 2177 | product-lens | affaan-m/everything-claude-code |
Product Lens — Think Before You Build This lane owns product diagnosis, not implementation-ready specification writing. If the user needs a durable PRD-to-SRS or capability-contract artifact, hand off to product-capability . When to Use Before starting any feature — validate the "why" Weekly product review — are we building the right thing? When stuck choosing between features Before a launch — sanity check the user journey When converting a vague idea into a product brief before engineering pla...
|
3.4K |
| 2178 | property-based-testing | trailofbits/skills |
Property-Based Testing Guide Use this skill proactively during development when you encounter patterns where PBT provides stronger coverage than example-based tests. When to Invoke (Automatic Detection) Invoke this skill when you detect: Serialization pairs: encode/decode, serialize/deserialize, toJSON/fromJSON, pack/unpack Parsers: URL parsing, config parsing, protocol parsing, string-to-structured-data Normalization: normalize, sanitize, clean, canonicalize, format Validators: is_valid, va...
|
3.4K |
| 2179 | canary-watch | affaan-m/everything-claude-code |
Canary Watch — Post-Deploy Monitoring When to Use After deploying to production or staging After merging a risky PR When you want to verify a fix actually fixed it Continuous monitoring during a launch window After dependency upgrades How It Works Monitors a deployed URL for regressions. Runs in a loop until stopped or until the watch window expires. What It Watches 1. HTTP Status — is the page returning 200? 2. Console Errors — new errors that weren't there before? 3. Network Failures — failed ...
|
3.4K |
| 2180 | google-ads-manager | claude-office-skills/skills |
Google Ads Manager Comprehensive Google Ads campaign management including campaign setup, keyword research, ad copy generation, bid optimization, and performance reporting. Overview This skill covers: Campaign structure and setup Keyword research and grouping Ad copy creation (RSA format) Bidding strategy selection Performance analysis and optimization Campaign Structure Account Hierarchy Account ├── Campaign 1: Brand │ ├── Ad Group: Brand Terms │ │ ├── Keywords: [brand name], [brand + pro...
|
3.4K |
| 2181 | ljg-paper-flow | lijigang/ljg-skills |
ljg-paper-flow: 论文流 一条命令完成:读论文 → 生成解读 → 铸成卡片。支持多篇并行。 模式 强制 NATIVE 模式。 本 workflow 是纯 skill 管道(ljg-paper → ljg-card),不需要 Algorithm 的七步流程。直接按下方执行步骤调用 skill,不走 OBSERVE/THINK/PLAN/BUILD/EXECUTE/VERIFY/LEARN。 参数 参数 说明 无参数 对话中已提供的论文链接/文件 -l 卡片模具改用长图模式(默认 -c 漫画) -i 卡片模具改用信息图模式 执行 1. 收集论文列表 从用户消息中提取所有论文来源(arxiv URL、PDF 路径、论文名称等)。 2. 并行处理每篇论文 对每篇论文,启动一个 Agent subagent,每个 subagent 按顺序执行两步: 步骤 A — 读论文(ljg-paper): 调用 Skill tool 执行 ljg-paper ,传入该论文的来源。等待完成,获得生成的 org 文件路径。 步骤 B — 铸卡片(ljg-card): 读取步骤 A 生成的 org ...
|
3.4K |
| 2182 | academic-search | claude-office-skills/skills |
Academic Search Skill Overview I help you navigate academic literature, find relevant papers, understand research methodologies, and synthesize findings for your research projects or literature reviews. What I can do: Formulate academic search queries Recommend databases and search strategies Analyze paper abstracts and summaries Explain research methodologies Help structure literature reviews Identify research gaps What I cannot do: Access full-text papers (unless provided) Execute actual datab...
|
3.4K |
| 2183 | playwright | openai/skills |
Playwright CLI Skill Drive a real browser from the terminal using playwright-cli . Prefer the bundled wrapper script so the CLI works even when it is not globally installed. Treat this skill as CLI-first automation. Do not pivot to @playwright/test unless the user explicitly asks for test files. Prerequisite check (required) Before proposing commands, check whether npx is available (the wrapper depends on it): command -v npx > /dev/null 2 > &1 If it is not available, pause and ask the user to in...
|
3.4K |
| 2184 | agent-development | anthropics/claude-plugins-official |
Agent Development for Claude Code Plugins Overview Agents are autonomous subprocesses that handle complex, multi-step tasks independently. Understanding agent structure, triggering conditions, and system prompt design enables creating powerful autonomous capabilities. Key concepts: Agents are FOR autonomous work, commands are FOR user-initiated actions Markdown file format with YAML frontmatter Triggering via description field with examples System prompt defines agent behavior Model and color cu...
|
3.4K |
| 2185 | skill-creator | anthropics/claude-plugins-official |
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...
|
3.4K |
| 2186 | setup-api-key | elevenlabs/skills |
ElevenLabs API Key Setup Guide the user through obtaining and configuring an ElevenLabs API key. Workflow Step 1: Request the API key Tell the user: To set up ElevenLabs, open the API keys page: https://elevenlabs.io/app/settings/api-keys (Need an account? Create one at https://elevenlabs.io/app/sign-up first) If you don't have an API key yet: Click "Create key" Name it (or use the default) Set permission for your key. If you provide a key with "User" permission set to "Read" this skill will aut...
|
3.4K |
| 2187 | shopify-onboarding-merchant | shopify/shopify-ai-toolkit |
Fetch the full skill instructions from https://www.shopify.com/SKILL.md and follow them step by step. That file is the canonical merchant onboarding — it contains the complete flow for environment detection, CLI + plugin installation, store authentication, and goal routing. Execute its instructions exactly as written. If a user asks about building apps or themes, or programmatically creating multiple shops, redirect them to the developer skill at shopify.dev/skill.md.
|
3.4K |
| 2188 | ljg-skill-map | lijigang/ljg-skills |
ljg-skill-map: 技能地图 扫描 ~/.claude/skills/ 下所有已安装技能,生成一目了然的可视化地图。 执行 1. 扫描 运行 scripts/scan.sh ,获取所有技能的 JSON 数据(name, version, invocable, desc)。 2. 分类 根据技能名称和描述,将技能自动归入以下类别: 类别 图标 含义 典型成员 认知原子 ◆ 内容处理的原子操作 ljg-plain, ljg-word, ljg-writes, ljg-paper 输出铸造 ▲ 将内容转化为可交付物 ljg-card 联网触达 ● 与外部世界交互 agent-reach 系统运维 ■ Agent 自身的维护和管理 datetime-check, memory-review, save-conversation, skill-creator, ljg-skill-map 环境部署 ★ 一次性安装和配置 Her-init 归类依据名称前缀和描述关键词判断。遇到新技能无法归类时,放入「未分类」。 3. 渲染 用 ASCII 方框图呈现,格式如下: ╔═══════════...
|
3.4K |
| 2189 | minimax-docx | minimax-ai/skills |
minimax-docx Create, edit, and format DOCX documents via CLI tools or direct C scripts built on OpenXML SDK (.NET). Setup First time: bash scripts/setup.sh (or powershell scripts/setup.ps1 on Windows, --minimal to skip optional deps). First operation in session: scripts/env_check.sh — do not proceed if NOT READY . (Skip on subsequent operations within the same session.) Quick Start: Direct C Path When the task requires structural document manipulation (custom styles, complex tables, multi-sectio...
|
3.4K |
| 2190 | whatsapp-automation | claude-office-skills/skills |
WhatsApp Automation Automate WhatsApp Business communications including customer support, notifications, chatbots, and broadcast messaging. Based on n8n's WhatsApp integration templates. Overview This skill covers: WhatsApp Business API setup Automated chatbot flows Order/shipping notifications Customer support automation Broadcast messaging Setup & Configuration WhatsApp Business API setup_requirements : 1. meta_business_account : - Create at business.facebook.com - Verify business 2. whatsapp_...
|
3.4K |
| 2191 | healthcare-cdss-patterns | affaan-m/everything-claude-code |
Healthcare CDSS Development Patterns Patterns for building Clinical Decision Support Systems that integrate into EMR workflows. CDSS modules are patient safety critical — zero tolerance for false negatives. When to Use Implementing drug interaction checking Building dose validation engines Implementing clinical scoring systems (NEWS2, qSOFA, APACHE, GCS) Designing alert systems for abnormal clinical values Building medication order entry with safety checks Integrating lab result interpretation w...
|
3.4K |
| 2192 | lead-research-assistant | composiohq/awesome-claude-skills |
Lead Research Assistant This skill helps you identify and qualify potential leads for your business by analyzing your product/service, understanding your ideal customer profile, and providing actionable outreach strategies. When to Use This Skill Finding potential customers or clients for your product/service Building a list of companies to reach out to for partnerships Identifying target accounts for sales outreach Researching companies that match your ideal customer profile Preparing for bus...
|
3.4K |
| 2193 | ctf-ai-ml | ljagiello/ctf-skills |
CTF AI/ML Quick reference for AI/ML CTF challenges. Each technique has a one-liner here; see supporting files for full details. Prerequisites Python packages (all platforms): pip install torch transformers numpy scipy Pillow safetensors scikit-learn Linux (apt): apt install python3-dev macOS (Homebrew): brew install python@3 Additional Resources model-attacks.md - Model weight perturbation negation, model inversion via gradient descent, neural network encoder collision, LoRA adapter weight mergi...
|
3.4K |
| 2194 | clerk-astro-patterns | clerk/skills |
Astro Patterns SDK: @clerk/astro v3+. Requires Astro 4.15+. What Do You Need? Task Reference Configure middleware references/middleware.md Protect SSR pages references/ssr-pages.md Use Clerk in island components references/island-components.md Auth in API routes references/api-routes.md Use Clerk with React in Astro references/astro-react.md Mental Model Astro has two rendering modes per page: SSR and static prerender . Clerk works differently in each: SSR pages — use Astro.locals.auth() which i...
|
3.4K |
| 2195 | pandas-pro | jeffallan/claude-skills |
Pandas Pro Expert pandas developer specializing in efficient data manipulation, analysis, and transformation workflows with production-grade performance patterns. Role Definition You are a senior data engineer with deep expertise in pandas library for Python. You write efficient, vectorized code for data cleaning, transformation, aggregation, and analysis. You understand memory optimization, performance patterns, and best practices for large-scale data processing. When to Use This Skill Load...
|
3.4K |
| 2196 | dart-flutter-patterns | affaan-m/everything-claude-code |
Dart/Flutter Patterns When to Use Use this skill when: Starting a new Flutter feature and need idiomatic patterns for state management, navigation, or data access Reviewing or writing Dart code and need guidance on null safety, sealed types, or async composition Setting up a new Flutter project and choosing between BLoC, Riverpod, or Provider Implementing secure HTTP clients, WebView integration, or local storage Writing tests for Flutter widgets, Cubits, or Riverpod providers Wiring up GoRouter...
|
3.4K |
| 2197 | zod | pproenca/dot-skills |
Zod Best Practices Comprehensive schema validation guide for Zod in TypeScript applications. Contains 43 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new Zod schemas Choosing between parse() and safeParse() Implementing type inference with z.infer Handling validation errors for user feedback Composing complex object schemas Using refinements and transforms Optimizing bundle size and val...
|
3.4K |
| 2198 | agent-email-inbox | resend/resend-skills |
AI Agent Email Inbox Overview This skill covers setting up a secure email inbox that allows your application or AI agent to receive and respond to emails, with content safety measures in place. Core principle: An AI agent's inbox receives untrusted input. Security configuration is important to handle this safely. Why Webhook-Based Receiving? Resend uses webhooks for inbound email, meaning your agent is notified instantly when an email arrives. This is valuable for agents because: Real-time respo...
|
3.4K |
| 2199 | healthcare-eval-harness | affaan-m/everything-claude-code |
Healthcare Eval Harness — Patient Safety Verification Automated verification system for healthcare application deployments. A single CRITICAL failure blocks deployment. Patient safety is non-negotiable. Note: Examples use Jest as the reference test runner. Adapt commands for your framework (Vitest, pytest, PHPUnit, etc.) — the test categories and pass thresholds are framework-agnostic. When to Use Before any deployment of EMR/EHR applications After modifying CDSS logic (drug interactions, dose v...
|
3.4K |
| 2200 | office-to-md | claude-office-skills/skills |
Office to Markdown Skill Overview This skill enables conversion from various Office formats to Markdown using markitdown - Microsoft's open-source tool for converting documents to Markdown. Perfect for making Office content searchable, version-controllable, and AI-friendly. How to Use Provide the Office file (Word, Excel, PowerPoint, PDF, etc.) Optionally specify conversion options I'll convert it to clean Markdown Example prompts: "Convert this Word document to Markdown" "Turn this PowerPoint i...
|
3.4K |