BigHugger

Agent skills that run python, in plugin format

A skill is a Markdown file that tells a coding agent how to do one job. We parse every one we can find — the frontmatter, the outline, the languages in its code blocks — so you can look for the one that fits instead of reading through a repository to find out.

69,865 skills from 9,574 repositories, last read 11 September 2026.

Skills declare what they need inconsistently: 58.8% name the languages they run, 11.2% list the tools they ask for, and 4.6% give themselves a category. Filtering narrows to the ones that said so, never to the ones that are.

  1. pytorch-patternsaffaan-m/ECC

    PyTorch deep learning patterns and best practices for building robust, efficient, and reproducible training pipelines, model architectures, and data loading. Use when writing or re

    pluginpython
  2. x-apiaffaan-m/ECC

    X/Twitter API integration for posting tweets, threads, reading timelines, search, and analytics. Covers OAuth auth patterns, rate limits, and platform-native content posting. Use w

    pluginbashpython
  3. santa-methodaffaan-m/ECC

    Multi-agent adversarial verification with convergence loop. Two independent review agents must both pass before output ships. Use when output must clear two independent adversarial

    pluginbashpython
  4. content-hash-cache-patternaffaan-m/ECC

    Cache expensive file processing results using SHA-256 content hashes — path-independent, auto-invalidating, with service layer separation. Use when repeated file processing is slow

    pluginpython
  5. fal-ai-mediaaffaan-m/ECC

    Unified media generation via fal.ai MCP — image, video, and audio. Covers text-to-image (Nano Banana), text/image-to-video (Seedance, Kling, Veo 3), text-to-speech (CSM-1B), and vi

    pluginjsonpython
  6. python-testingaffaan-m/ECC

    Python testing strategies using pytest, TDD methodology, fixtures, mocking, parametrization, and coverage requirements. Use when writing pytest tests — fixtures, mocks, parametriza

    pluginbashinipythontoml
  7. regex-vs-llm-structured-textaffaan-m/ECC

    Decision framework for choosing between regex and LLM when parsing structured text — start with regex, add LLM only for low-confidence edge cases.

    pluginpython
  8. django-securityaffaan-m/ECC

    Django security best practices, authentication, authorization, CSRF protection, SQL injection prevention, XSS prevention, and secure deployment configurations. Use when reviewing D

    plugindjangopython
  9. data-scraper-agentaffaan-m/ECC

    Build a fully automated AI-powered data collection agent for any public source — job boards, prices, news, GitHub, sports, anything. Runs on a schedule, enriches data with a free L

    pluginpythonyaml
  10. api-designaffaan-m/ECC

    REST API design patterns including resource naming, status codes, pagination, filtering, error responses, versioning, and rate limiting for production APIs. Use when designing or r

    plugingojsonpythontypescript
  11. cost-aware-llm-pipelineaffaan-m/ECC

    Cost optimization patterns for LLM API usage — model routing by task complexity, budget tracking, retry logic, and prompt caching. Use when LLM spend needs to come down, or when ro

    pluginpython
  12. python-patternsaffaan-m/ECC

    Pythonic idioms, PEP 8 standards, type hints, and best practices for building robust, efficient, and maintainable Python applications. Use when writing or reviewing Python code and

    pluginbashpythontoml
  13. evm-token-decimalsaffaan-m/ECC

    Prevent silent decimal mismatch bugs across EVM chains. Covers runtime decimal lookup, chain-aware caching, bridged-token precision drift, and safe normalization for bots, dashboar

    pluginbashpythonsoliditytypescript
  14. fastapi-patternsaffaan-m/ECC

    FastAPI best practices covering project structure, Pydantic v2 schemas, dependency injection, async handlers, authentication, authorization, transactional service layers, and testi

    pluginpython
  15. redis-patternsaffaan-m/ECC

    Redis data structure patterns, caching strategies, distributed locks, rate limiting, pub/sub, and connection management for production applications. Use when adding caching, a dist

    pluginluapython
  16. homelab-wireguard-vpnaffaan-m/ECC

    WireGuard VPN server setup, peer configuration, key generation, split tunneling vs full tunnel routing, and remote access to a home network from mobile and laptop clients. Use when

    pluginbashpython
  17. lead-intelligenceaffaan-m/ECC

    AI-native lead intelligence and outreach pipeline. Replaces Apollo, Clay, and ZoomInfo with agent-powered signal scoring, mutual ranking, warm path discovery, source-derived voice

    pluginbashpython
  18. llm-trading-agent-securityaffaan-m/ECC

    Security patterns for autonomous trading agents with wallet or transaction authority. Covers prompt injection, spend limits, pre-send simulation, circuit breakers, MEV protection,

    pluginpython
  19. django-tddaffaan-m/ECC

    Django testing strategies with pytest-django, TDD methodology, factory_boy, mocking, coverage, and testing Django REST Framework APIs. Use when writing Django or DRF tests with pyt

    pluginbashinipython
  20. database-migrationsaffaan-m/ECC

    Database migration best practices for schema changes, data migrations, rollbacks, and zero-downtime deployments across PostgreSQL, MySQL, and common ORMs (Prisma, Drizzle, Kysely,

    pluginbashprismapythonsql
  21. netmiko-ssh-automationaffaan-m/ECC

    Safe Python Netmiko patterns for read-only collection, bounded batch SSH, TextFSM parsing, guarded config changes, timeouts, and network automation error handling. Use when automat

    pluginpython
  22. django-verificationaffaan-m/ECC

    Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.

    pluginbashpythonyaml
  23. mysql-patternsaffaan-m/ECC

    MySQL and MariaDB schema, query, indexing, transaction, replication, and connection-pool patterns for production backends. Use when designing MySQL or MariaDB schemas and indexes,

    plugininijavascriptpythonsql
  24. django-celeryaffaan-m/ECC

    Django + Celery async task patterns — configuration, task design, beat scheduling, retries, canvas workflows, monitoring, and testing. Use when adding background jobs, scheduled ta

    pluginbashpython
  25. network-interface-healthaffaan-m/ECC

    Diagnose interface errors, drops, CRCs, duplex mismatches, flapping, speed negotiation issues, and counter trends on routers, switches, and Linux hosts. Use when an interface shows

    pluginpython
  26. mle-workflowaffaan-m/ECC

    Production machine-learning engineering workflow for data contracts, reproducible training, model evaluation, deployment, monitoring, and rollback. Use when building, reviewing, or

    pluginpython
  27. network-config-validationaffaan-m/ECC

    Pre-deployment checks for router and switch configuration, including dangerous commands, duplicate addresses, subnet overlaps, stale references, management-plane risk, and IOS-styl

    pluginpython
  28. django-patternsaffaan-m/ECC

    Django architecture patterns, REST API design with DRF, ORM best practices, caching, signals, middleware, and production-grade Django apps. Use when building or reviewing Django ap

    plugindjangopython
  29. error-handlingaffaan-m/ECC

    Patterns for robust error handling across TypeScript, Python, and Go. Covers typed errors, error boundaries, retries, circuit breakers, and user-facing error messages. Use when des

    plugingopythontypescript
  30. generating-python-installeraffaan-m/ECC

    Commercial-grade Python installer expert for Windows: Nuitka extreme compilation, dist slimming, DLL footprint analysis, and Inno Setup packaging to ship the smallest, fastest inst

    pluginbashbatchisspowershell
  31. pubmed-databaseaffaan-m/ECC

    Direct PubMed and NCBI E-utilities search workflows for biomedical literature, MeSH queries, PMID lookup, citation retrieval, and API-backed literature monitoring. Use when a task

    pluginmarkdownpython
  32. uspto-databaseaffaan-m/ECC

    USPTO patent and trademark data workflow for official record lookup, PatentSearch queries, TSDR checks, assignment data, and reproducible IP research logs. Use when a task needs of

    pluginbashmarkdownpython
  33. ggetaffaan-m/ECC

    gget CLI and Python workflow for quick genomic database queries, sequence lookup, BLAST-style searches, enrichment checks, and reproducible bioinformatics evidence logs. Use when a

    pluginbashmarkdownpython
  34. video-editingaffaan-m/ECC

    AI-assisted video editing workflows for cutting, structuring, and augmenting real footage. Covers the full pipeline from raw capture through FFmpeg, Remotion, ElevenLabs, fal.ai, a

    pluginbashpythontypescript+2 files
  35. videodbaffaan-m/ECC

    See, Understand, Act on video and audio. See- ingest from local files, URLs, RTSP/live feeds, or live record desktop; return realtime context and playable stream links. Understand-

    pluginbashpythonRead Grep Glob Bash(python:*)+10 files
  36. visa-doc-translateaffaan-m/ECC

    Translate visa application documents (images) to English and create a bilingual PDF with original and translation. Use when visa application document images must be translated to E

    pluginbashpython
  37. windows-desktop-e2eaffaan-m/ECC

    E2E testing for Windows native desktop apps (WPF, WinForms, Win32/MFC, Qt) using pywinauto and Windows UI Automation. Use when writing E2E tests for a Windows native desktop app wi

    pluginbashcppcsharpini
  38. network-bgp-diagnosticsaffaan-m/ECC

    Diagnostics-only BGP troubleshooting patterns for neighbor state, route exchange, prefix policy, AS path inspection, and safe evidence collection. Use when a BGP neighbor is down,

    pluginpython
  39. caveman-setupJuliusBrussee/caveman

    Wire a repository through the Caveman Cloud gateway so every LLM request is measured, with no behavior change. Use for "set up caveman" or adding LLM spend observability.

    pluginbashpythontypescript
  40. context-modemksglu/context-mode

    Use context-mode tools (ctx_execute, ctx_execute_file) instead of Bash/cat when processing large outputs. Triggers: "analyze logs", "summarize output", "process data", "parse JSON"

    pluginbashjavascriptpython+4 files
  41. pptx-html-fidelity-auditnexu-io/open-design

    Audit a python-pptx export against its source HTML deck, identify layout/content drift (footer overflow, cropped content, missing italic/em, lost styling, off-rhythm spacing), and

    pluginhtmlpython
  42. code-simplificationaddyosmani/agent-skills

    Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend than it should be. Use

    pluginpythontypescript
  43. a2ui-rendererCopilotKit/CopilotKit

    Render A2UI (Agent-to-UI declarative surfaces) in CopilotKit v2. Enable the runtime via CopilotRuntime({ a2ui: {...} }), then enable the provider via <CopilotKit a2ui={{ theme }}>.

    pluginpythontypescript
  44. pdfanthropics/skills

    Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitt

    pluginbashpython
  45. slack-gif-creatoranthropics/skills

    Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Sla

    pluginbashpython
  46. claude-apianthropics/skills

    Reference for the Claude API / Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration. TRIGGER — read BEFORE opening

    pluginpython
  47. webapp-testinganthropics/skills

    Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, a

    pluginbashpython
  48. mem0mem0ai/mem0

    Mem0 Platform SDK for adding persistent memory to AI applications. TRIGGER when: user mentions "mem0", "MemoryClient", "memory layer", "remember user preferences", "persistent cont

    pluginbashpythontypescript+12 files
  49. polymarket-tennislivetennisapi/livetennisapi-mcp

    Build observe-only Polymarket and Kalshi tennis market tooling on the polymarket-tennis Python package (MIT) plus the Live Tennis API free tier. Use when asked for a Polymarket ten

    pluginbashpython+3 files
  50. hindsight-architectvectorize-io/hindsight

    Expert memory architect. Understands your application, identifies where memory adds value, and produces an implementation plan with bank config, tag schema, and code.

    pluginbashjavascriptpython
  51. claude-real-video-for-agentsHUANGCHIHHUNGLeo/claude-real-video

    Install and use crv (claude-real-video) — a tool that lets any AI agent watch videos by extracting scene-aware keyframes, deduplicating them, and transcribing audio. Use when the u

    pluginbashpython
  52. dxfearthtojake/text-to-cad

    Generate, regenerate, and validate 2D DXF drawings from Python build123d sources. Use for DXF files, `.py` drawing scripts, @dxf models, 2D profiles, outlines, templates, gaskets,

    pluginbashpython
  53. cadearthtojake/text-to-cad

    Create, modify, inspect, and validate parametric CAD parts and assemblies authored as cadgen model scripts. Use for natural-language CAD specs, reference images, 2D technical drawi

    pluginbashpython
  54. detecting-api-enumeration-attacksmukul975/Anthropic-Cybersecurity-Skills

    Detect API enumeration attacks (BOLA/IDOR, OWASP API1:2023) by writing SIEM detection rules that flag sequential or UUID identifier iteration, parameter tampering, and mixed 200/40

    pluginjsonpythonsplyaml
  55. implementing-device-posture-assessment-in-zero-trustmukul975/Anthropic-Cybersecurity-Skills

    Implements device posture assessment as a zero trust access control by integrating endpoint health signals from CrowdStrike ZTA, Microsoft Intune, and Jamf into conditional access

    pluginbashpowershellpython
  56. performing-api-inventory-and-discoverymukul975/Anthropic-Cybersecurity-Skills

    Performs API inventory and discovery to identify all API endpoints in an organization's environment including documented, undocumented, shadow, zombie, and deprecated APIs. The tes

    pluginbashpython
  57. implementing-rapid7-insightvm-for-scanningmukul975/Anthropic-Cybersecurity-Skills

    Deploy and configure Rapid7 InsightVM Security Console and Scan Engines, including scan templates, credentialed scanning, and Insight Agent integration, for authenticated and unaut

    pluginbashpowershellpython
  58. implementing-security-information-sharing-with-stix2mukul975/Anthropic-Cybersecurity-Skills

    Create, validate, and share STIX 2.1 threat intelligence objects (indicators, malware, campaigns, relationships, bundles) using the stix2 Python library, and publish them over TAXI

    pluginbashpython
  59. performing-container-escape-detectionmukul975/Anthropic-Cybersecurity-Skills

    Audits container and pod configuration for escape-enabling misconfiguration using the Kubernetes Python client - privileged flags, dangerous capability grants, host path mounts, sh

    pluginpython
  60. analyzing-dns-logs-for-exfiltrationmukul975/Anthropic-Cybersecurity-Skills

    Analyzes DNS query logs to detect data exfiltration via DNS tunneling, DGA domain communication, and covert C2 channels using entropy analysis, query volume anomalies, and subdomai

    pluginpythonspl

Browse all 69,865 skills200 at a time, grouped by owner. The list above is the skills with the highest standing; this is every one of them.

The whole corpus is one call away through the search API, or ask a question of it on the index itself.