███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 9351 | memory-tasks | basicmachines-co/basic-memory-skills |
Memory Tasks Manage work-in-progress using Basic Memory's schema system. Tasks are just notes with type: Task — they live in the knowledge graph, validate against a schema, and survive context compaction. When to Use Starting multi-step work (3+ steps, or anything that might outlast the context window) After compaction/restart — search for active tasks to resume Pre-compaction flush — update all active tasks with current state On demand — user asks to create, check, or manage tasks Task Schema T...
|
226 |
| 9352 | spritecook-generate-sprites | spritecook/skills |
SpriteCook - AI Game Asset Generator Use SpriteCook MCP tools when the user needs pixel art, detailed/HD sprites, game assets, icons, tilesets, textures, or UI elements for a game project. SpriteCook generates production-ready game art from text prompts in two styles: pixel art and detailed HD art. Requires: SpriteCook MCP server connected to your editor. Set up with npx spritecook-mcp setup or see spritecook.ai . When to Use User asks to generate, create, or make sprites, pixel art, detailed ar...
|
226 |
| 9353 | playwright-blazor-testing | aaronontheweb/dotnet-skills |
Use this skill when: - Writing end-to-end UI tests for Blazor Server or WebAssembly applications - Testing interactive components, forms, and user workflows - Verifying authentication and authorization flows - Testing SignalR-based real-time updates in Blazor Server - Capturing screenshots for visual regression testing - Testing responsive designs and mobile emulation - Debugging UI issues with browser developer tools Core Principles - Wait for Rendering - Blazor renders asynchronously...
|
226 |
| 9354 | scvi-tools | davila7/claude-code-templates |
scvi-tools Deep Learning Skill This skill provides guidance for deep learning-based single-cell analysis using scvi-tools, the leading framework for probabilistic models in single-cell genomics. How to Use This Skill Identify the appropriate workflow from the model/workflow tables below Read the corresponding reference file for detailed steps and code Use scripts in scripts/ to avoid rewriting common code For installation or GPU issues, consult references/environment_setup.md For debugging, cons...
|
226 |
| 9355 | shopify-apps | davila7/claude-code-templates |
Shopify Apps Patterns React Router App Setup Modern Shopify app template with React Router Embedded App with App Bridge Render app embedded in Shopify Admin Webhook Handling Secure webhook processing with HMAC verification Anti-Patterns ❌ REST API for New Apps ❌ Webhook Processing Before Response ❌ Polling Instead of Webhooks ⚠️ Sharp Edges Issue Severity Solution Issue high Respond immediately, process asynchronously Issue high Check rate limit headers Issue high Request protected cust...
|
226 |
| 9356 | lint-and-validate | davila7/claude-code-templates |
Lint and Validate Skill MANDATORY: Run appropriate validation tools after EVERY code change. Do not finish a task until the code is error-free. Procedures by Ecosystem Node.js / TypeScript Lint/Fix: npm run lint or npx eslint "path" --fix Types: npx tsc --noEmit Security: npm audit --audit-level=high Python Linter (Ruff): ruff check "path" --fix (Fast & Modern) Security (Bandit): bandit -r "path" -ll Types (MyPy): mypy "path" The Quality Loop Write/Edit Code Run Audit: npm run lint && npx tsc ...
|
226 |
| 9357 | geo-fundamentals | davila7/claude-code-templates |
GEO Fundamentals Optimization for AI-powered search engines. 1. What is GEO? GEO = Generative Engine Optimization Goal Platform Be cited in AI responses ChatGPT, Claude, Perplexity, Gemini SEO vs GEO Aspect SEO GEO Goal 1 ranking AI citations Platform Google AI engines Metrics Rankings, CTR Citation rate Focus Keywords Entities, data 2. AI Engine Landscape Engine Citation Style Opportunity Perplexity Numbered [1][2] Highest citation rate ChatGPT Inline/footnotes Custom GPTs Claude Contextual...
|
226 |
| 9358 | core-components | davila7/claude-code-templates |
Core Components Design System Overview Use components from your core library instead of raw platform components. This ensures consistent styling and behavior. Design Tokens NEVER hard-code values. Always use design tokens. Spacing Tokens // CORRECT - Use tokens <Box padding="$4" marginBottom="$2" /> // WRONG - Hard-coded values <Box padding={16} marginBottom={8} /> Token Value $1 4px $2 8px $3 12px $4 16px $6 24px $8 32px Color Tokens // CORRECT - Semantic tokens <Text color="$textPrimary"...
|
226 |
| 9359 | skill-creator | mrgoonie/claudekit-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...
|
226 |
| 9360 | setup-tooluniverse | mims-harvard/tooluniverse |
Setup ToolUniverse Guide the user step-by-step through setting up ToolUniverse. Agent Behavior Detect language from user's first message. Respond in their language; keep commands/URLs in English. Go one step at a time . Ask before proceeding. Use AskQuestion for structured choices. Explain briefly in plain language. Celebrate small wins. When something goes wrong, help troubleshoot before moving on. Internal Notes (do not show) ToolUniverse has 1200+ tools. The tooluniverse command enables compa...
|
226 |
| 9361 | go-concurrency-patterns | sickn33/antigravity-awesome-skills |
Go Concurrency Patterns Production patterns for Go concurrency including goroutines, channels, synchronization primitives, and context management. When to Use This Skill Building concurrent Go applications Implementing worker pools and pipelines Managing goroutine lifecycles Using channels for communication Debugging race conditions Implementing graceful shutdown Core Concepts 1. Go Concurrency Primitives Primitive Purpose goroutine Lightweight concurrent execution channel Communication between ...
|
226 |
| 9362 | n8n-node-configuration | sickn33/antigravity-awesome-skills |
n8n Node Configuration Expert guidance for operation-aware node configuration with property dependencies. Configuration Philosophy Progressive disclosure: Start minimal, add complexity as needed Configuration best practices: get_node with detail: "standard" is the most used discovery pattern 56 seconds average between configuration edits Covers 95% of use cases with 1-2K tokens response Key insight: Most configurations need only standard detail, not full schema! Core Concepts 1. Operation...
|
226 |
| 9363 | spl-to-apl | axiomhq/skills |
Type safety: Fields like status are often stored as strings. Always cast before numeric comparison: toint(status) >= 500, not status >= 500. Critical Differences - Time is explicit in APL: SPL time pickers don't translate — add `where _time between (ago(1h) .. now())` - Structure: SPL `index=... | command` → APL `['dataset'] | operator` - Join is preview: limited to 50k rows, inner/innerunique/leftouter only - cidrmatch args reversed: SPL `cidrmatch(cidr, ip)` → APL `ipv4_is_in_range(ip, c...
|
226 |
| 9364 | product-strategist | borghei/claude-skills |
Product Strategist Strategic toolkit for Head of Product to drive vision, alignment, and organizational excellence. Core Capabilities OKR cascade generation and alignment Market and competitive analysis Product vision and strategy frameworks Team scaling and organizational design Metrics and KPI definition Key Scripts okr_cascade_generator.py Automatically cascades company OKRs down to product and team levels with alignment tracking. Usage: python scripts/okr_cascade_generator.py [strategy] ...
|
226 |
| 9365 | moral-parallax | jwynia/agent-skills |
Moral Parallax: Story Generation Skill You help writers create speculative fiction that reveals systemic exploitation by collapsing the comfortable distances between actions and consequences. Your role is to design systems where what was hidden becomes visible, what was distant becomes proximate, and what was comfortable becomes unbearable. Core Principle Moral Parallax: The phenomenon where the same action appears fundamentally different depending on your proximity to its consequences. Like ...
|
226 |
| 9366 | web-accessibility | hoodini/ai-agents-skills |
Web Accessibility (A11y) When to use this skill New UI Component Development : Designing accessible components Accessibility Audit : Identifying and fixing accessibility issues in existing sites Form Implementation : Writing screen reader-friendly forms Modals/Dropdowns : Focus management and keyboard trap prevention WCAG Compliance : Meeting legal requirements or standards Input Format Required Information Framework : React, Vue, Svelte, Vanilla JS, etc. Component Type : Button, Form, Modal, Dr...
|
226 |
| 9367 | sentry-nextjs-sdk | getsentry/sentry-agent-skills |
All Skills > SDK Setup > Next.js SDK Sentry Next.js SDK Opinionated wizard that scans your Next.js project and guides you through complete Sentry setup across all three runtimes: browser, Node.js server, and Edge. Invoke This Skill When User asks to "add Sentry to Next.js" or "set up Sentry" in a Next.js app User wants to install or configure @sentry/nextjs User wants error monitoring, tracing, session replay, logging, or profiling for Next.js User asks about instrumentation.ts , withSentryConfi...
|
226 |
| 9368 | nansen-wallet-batch | nansen-ai/nansen-cli |
ADDRESSES = "0xaddr1,0xaddr2,0xaddr3,..." CHAIN = ethereum nansen research profiler batch --addresses " $ADDRESSES " --chain $CHAIN --include labels,balance → .data.{total, completed, results[]: {address, chain, labels[], balance, error}} labels[]: {label, category ("smart_money","fund","social","behavioral","others"), fullname} balance: {data[]: {token_symbol, token_amount, price_usd, value_usd}} Check .error per result — invalid addresses return an error message, not a crash. Skip those. Ke...
|
226 |
| 9369 | nansen-perp-trader-profile | 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...
|
226 |
| 9370 | running-dbt-commands | dbt-labs/dbt-agent-skills |
Running dbt Commands Preferences Use MCP tools if available ( dbt_build , dbt_run , dbt_show , etc.) - they handle paths, timeouts, and formatting automatically Use build instead of run or test - test doesn't refresh the model, so testing a model change requires build . build does a run and a test of each node (model, seed, snapshot) in the order of the DAG Always use --quiet with --warn-error-options '{"error": ["NoNodesForSelectionCriteria"]}' to reduce output while catching selector typos Alw...
|
226 |
| 9371 | bundle-splitting | patternsdev/skills |
Bundle Splitting When building a modern web application, bundlers such as Webpack or Rollup take an application's source code, and bundle this together into one or more bundles. When a user visits a website, the bundle is requested and loaded in order to display the data to the user's screen. JavaScript engines such as V8 are able to parse and compile data that's been requested by the user as it's being loaded. Although modern browsers have evolved to parse and compile the code as quickly and pe...
|
226 |
| 9372 | route-based | patternsdev/skills |
Route Based Splitting We can request resources that are only needed for specific routes, by adding route-based splitting . By combining React Suspense or loadable-components with libraries such as react-router , we can dynamically load components based on the current route. By lazily loading the components per route, we're only requesting the bundle that contains the code that's necessary for the current route. Since most people are used to the fact that there may be some loading time during a r...
|
226 |
| 9373 | compression | patternsdev/skills |
Compressing JavaScript Table of Contents When to Use Instructions Details Source JavaScript is the second biggest contributor to page size and the second most requested web resource on the internet after images. We use patterns that reduce the transfer, load, and execution time for JavaScript to improve website performance. Compression can help reduce the time needed to transfer scripts over the network. When to Use Use this when you need to reduce JavaScript payload sizes for faster page loads ...
|
226 |
| 9374 | 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...
|
226 |
| 9375 | teams-channel-post-writer | daymade/claude-code-skills |
Teams Channel Post Writer Overview Create well-structured, educational Teams channel posts for internal knowledge sharing about Claude Code features and best practices. This skill provides templates, writing guidelines, and a structured workflow to produce consistent, actionable content that helps colleagues learn effective Claude Code usage. When to Use This Skill This skill activates when creating Teams channel posts to: Announce and explain new Claude Code features Share Claude Code tips ...
|
226 |
| 9376 | dt-app-dashboards | dynatrace/dynatrace-for-ai |
Dynatrace Dashboard Skill Overview Dynatrace dashboards are JSON documents stored in the Document Store. Each dashboard contains: Tiles : Visual components displaying markdown content or data visualizations Layouts : Grid-based positioning (20-unit width) defining tile placement Variables : Dynamic parameters ( $VariableName ) for query filtering Configuration : Version metadata and dashboard-level settings When to use this skill: Creating new dashboards with skill-based query generation Modifyi...
|
226 |
| 9377 | symfony:daily-workflow | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:daily-workflow<div
|
226 |
| 9378 | tdd | pproenca/dot-skills |
Test-Driven Development Philosophy Core principle : Tests should verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't. Good tests are integration-style: they exercise real code paths through public APIs. They describe what the system does, not how it does it. A good test reads like a specification - "user can checkout with valid cart" tells you exactly what capability exists. These tests survive refactors because they don't care about i...
|
226 |
| 9379 | auth0-migration | auth0/agent-skills |
Auth0 Migration Guide Migrate users and authentication flows from existing auth providers to Auth0. Overview When to Use This Skill Migrating from another auth provider to Auth0 Bulk importing existing users Gradually transitioning active user bases Updating JWT validation in APIs When NOT to Use Starting fresh with Auth0 - Use auth0-quickstart for new projects without existing users Already using Auth0 - This is for migrating TO Auth0, not between Auth0 tenants Only adding MFA or features - Use...
|
226 |
| 9380 | prototype-pollution | yaklang/hack-skills |
SKILL: Prototype Pollution — Expert Attack Playbook AI LOAD INSTRUCTION : Expert prototype pollution for client and server JS. Covers __proto__ vs constructor.prototype , merge-sink detection, Express/qs-style black-box probes, and gadget chains (EJS, Timelion-class patterns, child_process/NODE_OPTIONS). Assumes you know object spread and prototype inheritance — focus is on parser behavior and post-pollution sinks . Routing note: prioritize PP when you see deep merges, recursive assign, JSON.par...
|
226 |
| 9381 | dependency-confusion | yaklang/hack-skills |
SKILL: Dependency Confusion — Supply Chain Attack Playbook AI LOAD INSTRUCTION : Expert dependency-confusion methodology. Covers how private package names leak, how public registries can win version resolution, ecosystem-specific pitfalls (npm scopes, pip extra indexes, Maven repo order), recon commands, non-destructive PoC patterns (callbacks, not data exfil), and defensive controls. Pair with supply-chain recon workflows when manifests or CI caches are in scope. Only use on systems and program...
|
226 |
| 9382 | clickjacking | yaklang/hack-skills |
SKILL: Clickjacking — Expert Attack Playbook AI LOAD INSTRUCTION : Clickjacking (UI redress) techniques. Covers iframe transparency tricks, X-Frame-Options bypass, CSP frame-ancestors, multi-step clickjacking, drag-and-drop attacks, and chaining with other vulnerabilities. Often a "low severity" finding that becomes critical when targeting admin actions. 1. CORE CONCEPT Clickjacking loads a target page in a transparent iframe overlaid on an attacker's page. The victim sees the attacker's UI but ...
|
226 |
| 9383 | llamaindex-development | mindrally/skills |
LlamaIndex Development You are an expert in LlamaIndex for building RAG (Retrieval-Augmented Generation) applications, data indexing, and LLM-powered applications with Python. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes where possible Prioritize code quality, maintainability, and performance Use descriptive variable names that reflect their purpose Follow PEP 8 style guidelines Code Organization Director...
|
226 |
| 9384 | symfony:doctrine-fetch-modes | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:doctrine-fetch-modes<div
|
226 |
| 9385 | cv-creator | erichowens/some_claude_skills |
CV Creator Professional resume builder that transforms structured career data into ATS-optimized, professionally formatted resumes. Integrations Works with: career-biographer, competitive-cartographer, web-design-expert, typography-expert Production Implementation Available! GitHub: github.com/erichowens/cv-creator Status: Production-ready (~2,000 LOC) ATS Score: 95/100 achieved Deploy: npm install && npm run example Built through multi-skill orchestration (8 skills, 9 phases). Quick Sta...
|
226 |
| 9386 | shadcn-svelte | vercel-labs/json-render |
@json-render/shadcn-svelte Pre-built shadcn-svelte component definitions and implementations for json-render. Provides 36 components built on Svelte 5 + Tailwind CSS. Two Entry Points Entry Point Exports Use For @json-render/shadcn-svelte/catalog shadcnComponentDefinitions Catalog schemas (no Svelte dependency, safe for server) @json-render/shadcn-svelte shadcnComponents , shadcnComponentDefinitions Svelte implementations + catalog schemas Usage Pattern Pick the components you need from the stan...
|
226 |
| 9387 | nextjs15-performance | srbhr/resume-matcher |
Before writing Next.js code: Read docs/agent/architecture/nextjs-critical-fixes.md for full patterns Check existing components in apps/frontend/components/ for examples Critical Rules (always apply): Waterfalls Use Promise.all() for independent fetches Wrap slow data in <Suspense> boundaries Defer await into branches where needed Bundle Size NO barrel imports: import X from 'lucide-react' ❌ YES direct imports: import X from 'lucide-react/dist/esm/icons/x' ✅ Use next/dynamic for heavy components ...
|
225 |
| 9388 | canvas-design | 404kidwiz/claude-supercode-skills |
These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files. Complete this in two steps: Design Philosophy Creation (.md file) Express by creating it on a canvas (.pdf file or .png file) First, undertake this task: DESIGN PHILOSOPHY CREATION To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through: Form, space, color, composition Images, graphics, shapes, ...
|
225 |
| 9389 | game-developer | 404kidwiz/claude-supercode-skills |
Game Developer Senior game developer with expertise in creating high-performance gaming experiences across Unity, Unreal, and custom engines. Role Definition You are a senior game developer with 10+ years of experience in game engine programming, graphics optimization, and multiplayer systems. You specialize in Unity C, Unreal C++, ECS architecture, and cross-platform optimization. You build engaging, performant games that run smoothly across all target platforms. When to Use This Skill Buil...
|
225 |
| 9390 | skill-creator | nicepkg/ai-workflow |
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...
|
225 |
| 9391 | postgres-schema-design | davila7/claude-code-templates |
No SKILL.md available for this skill. View on GitHub
|
225 |
| 9392 | customaize-agent:create-rule | neolabhq/context-engineering-kit |
Create Rule Guide for creating effective .claude/rules files with contrastive examples that improve agent accuracy. Overview Core principle: Effective rules use contrastive examples (Incorrect vs Correct) to eliminate ambiguity. REQUIRED BACKGROUND: Rules are behavioral guardrails, that load into every session and shapes how agents behave across all tasks. Skills load on-demand. If guidance is task-specific, create a skill instead. About Rules Rules are modular, always-loaded instructions placed...
|
225 |
| 9393 | pywinauto | malue-ai/dazee-small |
Windows UI 自动化(pywinauto) 通过 pywinauto 操作任意 Windows 桌面应用:发现窗口、检查控件、点击按钮、输入文字、读取内容。 支持两种后端:Win32 API(传统应用)和 MS UI Automation(现代应用)。 使用场景 用户说「帮我在 XX 应用里点一下那个按钮」「自动填一下这个表单」 需要操作没有 API 的桌面应用(如 ERP 系统、内部管理系统) 需要批量操作 GUI 应用(如自动录入数据) 需要读取其他应用界面上的文字内容 后端选择 后端 参数 适用应用 Win32 API backend="win32" MFC、VB6、VCL、简单 WinForms MS UI Automation backend="uia" WinForms、WPF、UWP Store 应用、Qt5、浏览器 不确定用哪个时,优先尝试 uia ;如果找不到控件,切换为 win32 。 命令参考 连接到已有应用 from pywinauto import Application 方式 1:通过窗口标题连接 app = Application ( backe...
|
225 |
| 9394 | api-design | aaronontheweb/dotnet-skills |
API Design When to use this skill Designing new REST APIs Creating GraphQL schemas Refactoring API endpoints Documenting API specifications API versioning strategies Defining data models and relationships Instructions Step 1: Define API requirements Identify resources and entities Define relationships between entities Specify operations (CRUD, custom actions) Plan authentication/authorization Consider pagination, filtering, sorting Step 2: Design REST API Resource naming : Use nouns, not verbs: ...
|
225 |
| 9395 | iterate-pr | davila7/claude-code-templates |
Iterate on PR Until CI Passes Continuously iterate on the current branch until all CI checks pass and review feedback is addressed. Requires : GitHub CLI ( gh ) authenticated. Important : All scripts must be run from the repository root directory (where .git is located), not from the skill directory. Use the full path to the script via ${CLAUDE_SKILL_ROOT} . Bundled Scripts scripts/fetch_pr_checks.py Fetches CI check status and extracts failure snippets from logs. uv run ${CLAUDE_SKILL_ROOT} /sc...
|
225 |
| 9396 | pylabrobot | davila7/claude-code-templates |
PyLabRobot Overview PyLabRobot is a hardware-agnostic, pure Python Software Development Kit for automated and autonomous laboratories. Use this skill to control liquid handling robots, plate readers, pumps, heater shakers, incubators, centrifuges, and other laboratory automation equipment through a unified Python interface that works across platforms (Windows, macOS, Linux). When to Use This Skill Use this skill when: Programming liquid handling robots (Hamilton STAR/STARlet, Opentrons OT-2,...
|
225 |
| 9397 | chembl-database | davila7/claude-code-templates |
ChEMBL Database Overview ChEMBL is a manually curated database of bioactive molecules maintained by the European Bioinformatics Institute (EBI), containing over 2 million compounds, 19 million bioactivity measurements, 13,000+ drug targets, and data on approved drugs and clinical candidates. Access and query this data programmatically using the ChEMBL Python client for drug discovery and medicinal chemistry research. When to Use This Skill This skill should be used when: Compound searches: F...
|
225 |
| 9398 | medchem | davila7/claude-code-templates |
Medchem Overview Medchem is a Python library for molecular filtering and prioritization in drug discovery workflows. Apply hundreds of well-established and novel molecular filters, structural alerts, and medicinal chemistry rules to efficiently triage and prioritize compound libraries at scale. Rules and filters are context-specific—use as guidelines combined with domain expertise. When to Use This Skill This skill should be used when: Applying drug-likeness rules (Lipinski, Veber, etc.) to ...
|
225 |
| 9399 | zarr-python | davila7/claude-code-templates |
Zarr Python Overview Zarr is a Python library for storing large N-dimensional arrays with chunking and compression. Apply this skill for efficient parallel I/O, cloud-native workflows, and seamless integration with NumPy, Dask, and Xarray. Quick Start Installation uv pip install zarr Requires Python 3.11+. For cloud storage support, install additional packages: uv pip install s3fs For S3 uv pip install gcsfs For Google Cloud Storage Basic Array Creation import zarr import numpy as np ...
|
225 |
| 9400 | n8n-mcp-tools-expert | sickn33/antigravity-awesome-skills |
n8n MCP Tools Expert Master guide for using n8n-mcp MCP server tools to build workflows. Tool Categories n8n-mcp provides tools organized into categories: Node Discovery → SEARCH_GUIDE.md Configuration Validation → VALIDATION_GUIDE.md Workflow Management → WORKFLOW_GUIDE.md Template Library - Search and deploy 2,700+ real workflows Documentation & Guides - Tool docs, AI agent guide, Code node guides Quick Reference Most Used Tools (by success rate) Tool Use When Speed search_nodes Finding no...
|
225 |