███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 2301 | rest-api-design | aj-geddes/useful-ai-prompts |
REST API Design Overview Design REST APIs that are intuitive, consistent, and follow industry best practices for resource-oriented architecture. When to Use Designing new RESTful APIs Creating endpoint structures Defining request/response formats Implementing API versioning Documenting API specifications Refactoring existing APIs Instructions 1. Resource Naming ✅ Good Resource Names (Nouns, Plural) GET /api/users GET /api/users/123 GET /api/users/123/orders POST /api/products DELETE...
|
438 |
| 2302 | cybersecurity-analyst | rysweet/amplihack |
Cybersecurity Analyst Skill Purpose Analyze events through the disciplinary lens of cybersecurity, applying rigorous security frameworks (CIA triad, defense-in-depth, zero-trust), threat modeling methodologies (STRIDE, PASTA, VAST), attack surface analysis, and industry standards (NIST, ISO 27001, MITRE ATT&CK) to understand security risks, identify vulnerabilities, assess threat actors and attack vectors, evaluate defensive controls, and recommend risk mitigation strategies. When to Use This ...
|
437 |
| 2303 | api-gateway | maton-ai/api-gateway-skill |
API Gateway Passthrough proxy for direct access to third-party APIs using managed OAuth connections, provided by Maton . The API gateway lets you call native API endpoints directly. Quick Start Native Slack API call python << 'EOF' import urllib.request, os, json data = json.dumps({'channel': 'C0123456', 'text': 'Hello from gateway!'}).encode() req = urllib.request.Request('https://gateway.maton.ai/slack/api/chat.postMessage', data=data, method='POST') req.add_header('Authorization', f'Bearer {...
|
437 |
| 2304 | academic-research-writer | endigo/claude-skills |
Academic Research Writer This skill enables creation of high-quality academic research documents with proper scholarly standards, verified peer-reviewed sources, and IEEE-format citations. Core Principles Academic Rigor: Follow scholarly writing conventions and maintain objectivity Source Verification: Use only peer-reviewed, credible academic sources Proper Citation: Generate accurate IEEE-format references Research Integrity: Ensure all claims are supported by verified sources Workflow 1. Un...
|
437 |
| 2305 | code-reviewer | davila7/claude-code-templates |
Code Reviewer This skill guides the agent in conducting professional and thorough code reviews for both local development and remote Pull Requests. Workflow 1. Determine Review Target Remote PR : If the user provides a PR number or URL (e.g., "Review PR 123"), target that remote PR. Local Changes : If no specific PR is mentioned, or if the user asks to "review my changes", target the current local file system states (staged and unstaged changes). 2. Preparation For Remote PRs: Checkout : Use the...
|
437 |
| 2306 | testing-dags | astronomer/agents |
DAG Testing Skill 🚀 FIRST ACTION: Just Trigger the DAG When the user asks to test a DAG, your FIRST AND ONLY action should be: trigger_dag_and_wait(dag_id="<dag_id>", timeout=300) DO NOT: ❌ Call list_dags first ❌ Call get_dag_details first ❌ Call list_import_errors first ❌ Use grep or ls or any bash command ❌ Do any "pre-flight checks" Just trigger the DAG. If it fails, THEN debug. ⚠️ CRITICAL WARNING: Use MCP Tools, NOT CLI Commands ⚠️ STOP! Before running ANY Airflow-related command, r...
|
436 |
| 2307 | docker-expert | davila7/claude-code-templates |
Docker Expert You are an advanced Docker containerization expert with comprehensive, practical knowledge of container optimization, security hardening, multi-stage builds, orchestration patterns, and production deployment strategies based on current industry best practices. When invoked: If the issue requires ultra-specific expertise outside Docker, recommend switching and stop: Kubernetes orchestration, pods, services, ingress → kubernetes-expert (future) GitHub Actions CI/CD with containers → ...
|
436 |
| 2308 | continuous-agent-loop | affaan-m/everything-claude-code |
Continuous Agent Loop This is the v1.8+ canonical loop skill name. It supersedes autonomous-loops while keeping compatibility for one release. Loop Selection Flow Start | +-- Need strict CI/PR control? -- yes --> continuous-pr | +-- Need RFC decomposition? -- yes --> rfc-dag | +-- Need exploratory parallel generation? -- yes --> infinite | +-- default --> sequential Combined Pattern Recommended production stack: RFC decomposition ( ralphinho-rfc-pipeline ) quality gates ( plankton-code-quality +...
|
436 |
| 2309 | azure-verified-modules | hashicorp/agent-skills |
Azure Verified Modules (AVM) Requirements This guide covers the mandatory requirements for Azure Verified Modules certification. These requirements ensure consistency, quality, and maintainability across Azure Terraform modules. References: Azure Verified Modules AVM Terraform Requirements Table of Contents Module Cross-Referencing Azure Provider Requirements Code Style Standards Variable Requirements Output Requirements Local Values Standards Terraform Configuration Requirements Testing Requ...
|
436 |
| 2310 | latex-thesis-zh | bahayonghang/academic-writing-skills |
LaTeX 中文学位论文助手 核心原则 绝不修改 \cite{}、\ref{}、\label{}、公式环境内的内容 绝不凭空捏造参考文献条目 绝不在未经许可的情况下修改专业术语 始终先以注释形式输出修改建议 中文文档必须使用 XeLaTeX 或 LuaLaTeX 编译 统一输出协议(全部模块) 每条建议必须包含固定字段: 严重级别:Critical / Major / Minor 优先级:P0(阻断)/ P1(重要)/ P2(可改进) 默认注释模板(diff-comment 风格): % <模块>(第<N>行)[Severity: <Critical|Major|Minor>] [Priority: <P0|P1|P2>]: <问题概述> % 原文:... % 修改后:... % 理由:... % ⚠️ 【待补证】:<需要证据/数据时标记> 失败处理(全局) 工具/脚本无法执行时,输出包含原因与建议的注释块: % ERROR [Severity: Critical] [Priority: P0]: <简要错误> % 原因:<缺少脚本/工具或路径无效> % 建议:<安装工具...
|
436 |
| 2311 | ppt-generation | bytedance/deer-flow |
PPT Generation Skill Overview This skill generates professional PowerPoint presentations by creating AI-generated images for each slide and composing them into a PPTX file. The workflow includes planning the presentation structure with a consistent visual style, generating slide images sequentially (using the previous slide as a reference for style consistency), and assembling them into a final presentation. Core Capabilities Plan and structure multi-slide presentations with unified visual style...
|
436 |
| 2312 | shopify-apps | sickn33/antigravity-awesome-skills |
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...
|
435 |
| 2313 | android-kotlin-development | aj-geddes/useful-ai-prompts |
Android Kotlin Development Overview Build robust native Android applications using Kotlin with modern architecture patterns, Jetpack libraries, and Compose for declarative UI. When to Use Creating native Android applications with best practices Using Kotlin for type-safe development Implementing MVVM architecture with Jetpack Building modern UIs with Jetpack Compose Integrating with Android platform APIs Instructions 1. Models & API Service // Models data class User( val id: String, val na...
|
435 |
| 2314 | google-drive | membranedev/application-skills |
Google Drive Google Drive is a cloud-based file storage and synchronization service. It's used by individuals and teams to store, access, and share files online from any device. Think of it as a virtual hard drive in the cloud. Official docs: https://developers.google.com/drive Google Drive Overview Files Permissions Folders Permissions Shared Links Working with Google Drive This skill uses the Membrane CLI to interact with Google Drive. Membrane handles authentication and credentials refresh au...
|
435 |
| 2315 | tracing-upstream-lineage | astronomer/agents |
Upstream Lineage: Sources Trace the origins of data - answer "Where does this data come from?" Lineage Investigation Step 1: Identify the Target Type Determine what we're tracing: Table: Trace what populates this table Column: Trace where this specific column comes from DAG: Trace what data sources this DAG reads from Step 2: Find the Producing DAG Tables are typically populated by Airflow DAGs. Find the connection: Search DAGs by name: Use list_dags and look for DAG names matching the tab...
|
434 |
| 2316 | playwright-cli | microsoft/playwright |
Browser Automation with playwright-cli Quick start open new browser playwright-cli open navigate to a page playwright-cli goto https://playwright.dev interact with the page using refs from the snapshot playwright-cli click e15 playwright-cli type "page.click" playwright-cli press Enter take a screenshot (rarely used, as snapshot is more common) playwright-cli screenshot close the browser playwright-cli close Commands Core playwright-cli open open and navigate right away playwright-cli open...
|
434 |
| 2317 | seo-audit | seo-skills/seo-audit-skill |
SEO Audit You are an expert in search engine optimization. Your goal is to identify SEO issues and provide actionable recommendations to improve organic search performance. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Before auditing, understand: Site ...
|
434 |
| 2318 | onedrive | membranedev/application-skills |
MS OneDrive MS OneDrive is a cloud storage service provided by Microsoft. It allows users to store files, photos, and documents in the cloud and access them from any device. OneDrive is commonly used by individuals and businesses for personal and collaborative file management. Official docs: https://learn.microsoft.com/en-us/onedrive/developer/ MS OneDrive Overview File Content Permissions Folder Permissions Search Use action names and parameters as needed. Working with MS OneDrive This skill us...
|
434 |
| 2319 | google-workspace | jezweb/claude-skills |
Google Workspace APIs Status: Production Ready Last Updated: 2026-01-09 Dependencies: Cloudflare Workers (recommended), Google Cloud Project Skill Version: 1.0.0 Quick Reference API Common Use Cases Reference Gmail Email automation, inbox management gmail-api.md Calendar Event management, scheduling calendar-api.md Drive File storage, sharing drive-api.md Sheets Spreadsheet data, reporting sheets-api.md Docs Document generation docs-api.md Chat Bots, webhooks, spaces chat-api.md Meet Video con...
|
433 |
| 2320 | firebase-firestore | jezweb/claude-skills |
Firebase Firestore Database Status: Production Ready Last Updated: 2026-01-25 Dependencies: None (standalone skill) Latest Versions: firebase@12.8.0, firebase-admin@13.6.0 Quick Start (5 Minutes) 1. Install Firebase SDK Client SDK (web/mobile) npm install firebase Admin SDK (server/backend) npm install firebase-admin 2. Initialize Firebase (Client) // src/lib/firebase.ts import { initializeApp } from 'firebase/app'; import { getFirestore } from 'firebase/firestore'; const firebaseConfig =...
|
433 |
| 2321 | icon-design | jezweb/claude-skills |
Icon Design Select the right icon for the job. Maps concepts to icons, provides templates, prevents common mistakes. Quick Reference (Top 20 Concepts) Concept Lucide Heroicons Phosphor Award/Quality Trophy trophy Trophy Price/Value Tag tag Tag Location MapPin map-pin MapPin Expertise GraduationCap academic-cap GraduationCap Support MessageCircle chat-bubble-left-right ChatCircle Security Shield shield-check Shield Speed Zap bolt Lightning Phone Phone phone Phone Email Mail envelope Envelope Us...
|
433 |
| 2322 | overlastic | hairyf/skills |
Based on Overlastic v0.8.7. A promise-based modal/dialog/popup library supporting React, Vue, and Svelte. Core References | Constructor | Core method for creating overlay constructors | [core-constructor](https://github.com/hairyf/skills/blob/main/skills/overlastic/references/core-constructor.md) | Deferred | Promise variation with external control methods | [core-deferred](https://github.com/hairyf/skills/blob/main/skills/overlastic/references/core-deferred.md) | Global Functions | ...
|
431 |
| 2323 | laravel-best-practices | asyrafhussin/agent-skills |
Laravel 12 Best Practices Comprehensive best practices guide for Laravel 12 applications. Contains 45+ rules across 8 categories for building scalable, maintainable Laravel applications. When to Apply Reference these guidelines when: Creating controllers, models, and services Writing migrations and database queries Implementing validation and form requests Building APIs with Laravel Structuring Laravel applications Rule Categories by Priority Priority Category Impact Prefix 1 Architecture & ...
|
430 |
| 2324 | box | membranedev/application-skills |
Box Box is a cloud-based content management and file sharing service. It's used by businesses of all sizes to securely store, access, and collaborate on files from anywhere. Think of it as a more business-focused alternative to Dropbox or Google Drive. Official docs: https://developer.box.com/ Box Overview File File Version Folder Folder Collaboration Web Link Task User Group Event Search Use action names and parameters as needed. Working with Box This skill uses the Membrane CLI to interact wit...
|
430 |
| 2325 | flask | jezweb/claude-skills |
Flask Skill Production-tested patterns for Flask with the application factory pattern, Blueprints, and Flask-SQLAlchemy. Latest Versions (verified January 2026): Flask: 3.1.2 Flask-SQLAlchemy: 3.1.1 Flask-Login: 0.6.3 Flask-WTF: 1.2.2 Werkzeug: 3.1.5 Python: 3.9+ required (3.8 dropped in Flask 3.1.0) Quick Start Project Setup with uv Create project uv init my-flask-app cd my-flask-app Add dependencies uv add flask flask-sqlalchemy flask-login flask-wtf python-dotenv Run development serve...
|
430 |
| 2326 | frontend-react-best-practices | sergiodxa/agent-skills |
Performance optimization and composition patterns for React components. Contains 33 rules across 6 categories focused on reducing re-renders, optimizing bundles, component composition, and avoiding common React pitfalls. When to Apply Reference these guidelines when: - Writing new React components - Reviewing code for performance issues - Refactoring existing React code - Optimizing bundle size - Working with hooks and state Rules Summary Bundle Size Optimization (CRITICAL) bundle-...
|
429 |
| 2327 | chrome-bridge-automation | web-infra-dev/midscene-skills |
Chrome Bridge Automation CRITICAL RULES — VIOLATIONS WILL BREAK THE WORKFLOW: Never run midscene commands in the background. Each command must run synchronously so you can read its output (especially screenshots) before deciding the next action. Background execution breaks the screenshot-analyze-act loop. Run only one midscene command at a time. Wait for the previous command to finish, read the screenshot, then decide the next action. Never chain multiple commands together. Allow enough time for...
|
429 |
| 2328 | orderly-onboarding | starchild-ai-agent/official-skills |
Orderly Network: Agent Onboarding Orderly is an omnichain orderbook-based trading infrastructure providing perpetual futures liquidity for decentralized exchanges. This skill is your starting point for building on or learning about Orderly Network. When to Use First time encountering Orderly Network Setting up AI agent tools for Orderly development Understanding the Orderly ecosystem and offerings Finding the right skill or resource for your task Understanding what tools are available for AI age...
|
428 |
| 2329 | powerpoint | igorwarzocha/opencode-workflows |
<high_fidelity_creation> The preferred method for precise layout positioning: - HTML: Create slides (720pt x 405pt). Text MUST be in `<p>`, `<h1>`-`<h6>`, or `<ul>`. - Visuals: You MUST rasterize gradients/icons as PNGs using Sharp FIRST. Reference: `references/html2pptx.md`. - Execution: Run `html2pptx.js` to generate the presentation. </high_fidelity_creation> <template_structure> For deck editing or template mapping: - Audit: Generate thumbnail grid (`scripts/thumbnail.py`) to analyze la...
|
428 |
| 2330 | draw-io | davila7/claude-code-templates |
draw.io Diagram Skill 1. Basic Rules Edit only .drawio files Do not directly edit .drawio.png files Use auto-generated .drawio.png by pre-commit hook in slides 2. Font Settings For diagrams used in Quarto slides, specify defaultFontFamily in mxGraphModel tag: <mxGraphModel defaultFontFamily="Noto Sans JP" ...> Also explicitly specify fontFamily in each text element's style attribute: style="text;html=1;fontSize=27;fontFamily=Noto Sans JP;" 3. Conversion Commands See conversion script at s...
|
428 |
| 2331 | vitest | hairyf/skills |
Vitest is a next-generation testing framework powered by Vite. It provides a Jest-compatible API with native ESM, TypeScript, and JSX support out of the box. Vitest shares the same config, transformers, resolvers, and plugins with your Vite app. Key Features: Vite-native: Uses Vite's transformation pipeline for fast HMR-like test updates Jest-compatible: Drop-in replacement for most Jest test suites Smart watch mode: Only reruns affected tests based on module graph Native ESM, TypeScript, JSX su...
|
427 |
| 2332 | salesforce | membranedev/application-skills |
Salesforce Salesforce is a leading cloud-based CRM platform that helps businesses manage customer relationships and sales processes. It's primarily used by sales, marketing, and customer service teams to track leads, automate marketing campaigns, and provide customer support. Official docs: https://developer.salesforce.com/docs Salesforce Overview Account Case Contact Contract Lead Opportunity Order Product Quote Solution Task User Dashboard Report Working with Salesforce This skill uses the Mem...
|
427 |
| 2333 | mermaid-visualizer | axtonliu/axton-obsidian-visual-skills |
Mermaid Visualizer Overview Convert text content into clean, professional Mermaid diagrams optimized for presentations and documentation. Automatically handles common syntax pitfalls (list syntax conflicts, subgraph naming, spacing issues) to ensure diagrams render correctly in Obsidian, GitHub, and other Mermaid-compatible platforms. Quick Start When creating a Mermaid diagram: Analyze the content - Identify key concepts, relationships, and flow Choose diagram type - Select the most appropr...
|
427 |
| 2334 | tracing-downstream-lineage | astronomer/agents |
Downstream Lineage: Impacts Answer the critical question: "What breaks if I change this?" Use this BEFORE making changes to understand the blast radius. Impact Analysis Step 1: Identify Direct Consumers Find everything that reads from this target: For Tables: Search DAG source code: Look for DAGs that SELECT from this table Use list_dags to get all DAGs Use get_dag_source to search for table references Look for: FROM target_table, JOIN target_table Check for dependent views: -- Snowflak...
|
427 |
| 2335 | domain-cloud-native | zhanghandong/rust-skills |
Cloud-Native Domain Layer 3: Domain Constraints Domain Constraints → Design Implications Domain Rule Design Constraint Rust Implication 12-Factor Config from env Environment-based config Observability Metrics + traces tracing + opentelemetry Health checks Liveness/readiness Dedicated endpoints Graceful shutdown Clean termination Signal handling Horizontal scale Stateless design No local state Container-friendly Small binaries Release optimization Critical Constraints Stateless Design RULE: No ...
|
426 |
| 2336 | concise-planning | sickn33/antigravity-awesome-skills |
Concise Planning Goal Turn a user request into a single, actionable plan with atomic steps. Workflow 1. Scan Context Read README.md, docs, and relevant code files. Identify constraints (language, frameworks, tests). 2. Minimal Interaction Ask at most 1–2 questions and only if truly blocking. Make reasonable assumptions for non-blocking unknowns. 3. Generate Plan Use the following structure: Approach: 1-3 sentences on what and why. Scope: Bullet points for "In" and "Out". Action Items: A list...
|
426 |
| 2337 | office | jezweb/claude-skills |
Office Document Generation Status: Production Ready Last Updated: 2026-01-12 Dependencies: None (pure JavaScript libraries) Latest Versions: docx@9.5.0, xlsx@0.18.5, pdf-lib@1.17.1, pptxgenjs@4.0.1 Overview Generate Microsoft Office documents and PDFs programmatically with TypeScript. All libraries are pure JavaScript with zero native dependencies, enabling universal runtime support: Format Library Workers Browser Node.js DOCX docx ✅ ✅ ✅ XLSX xlsx (SheetJS) ✅ ✅ ✅ PDF pdf-lib ✅ ✅ ✅ PPTX pptxg...
|
426 |
| 2338 | tutor-setup | roundtable02/tutor-skills |
Tutor Setup — Knowledge to Obsidian StudyVault CWD Boundary Rule (ALL MODES) NEVER access files outside the current working directory (CWD). All source scanning, reading, and vault output MUST stay within CWD and its subdirectories. If the user provides an external path, ask them to copy the files into CWD first. Mode Detection On invocation, detect mode automatically: Check for project markers in CWD: package.json , pom.xml , build.gradle , Cargo.toml , go.mod , Makefile , *.sln , pyproject.tom...
|
425 |
| 2339 | multi-search | cat-xierluo/legal-skills |
多主题深度研究技能 概述 智能多主题深度研究工具,自动分析材料并生成系统化研究文档。支持任意材料输入,通过 并行启动多个独立研究 Agent 进行深度检索,形成精简的研究知识库。 核心原则 : 只做信息检索、归纳与专业表述转化 不新增事实,不虚构信息 聚焦单一问题,精简输出,能够解决问题即可 通用设计,可适用于法律、商业、技术、学术等各领域 触发条件 使用 /multi-search 命令触发,或当用户请求: 深度研究多个相关课题 进行系统性信息检索 整合多角度分析 需要生成结构化研究报告 输入格式 方式一:基于文件 /multi-search @文档路径.md 方式二:直接粘贴 /multi-search [粘贴材料内容] 方式三:指定课题 /multi-search 项目:[项目名称] 研究课题: 1. [课题一] 2. [课题二] 3. [课题三] 处理流程 阶段1:分析准备 读取输入材料 提取研究课题清单 有明确课题:直接使用 无明确课题:自动从材料中提取 课题拆分原则: 方向明确 :每个课题对应独特的检索方向 避免重叠 :确保课题之间检索关键词不重复 聚焦问题 :每个课题解决...
|
425 |
| 2340 | webgpu | cazala/webgpu-skill |
WebGPU Skill This skill helps any agent design, implement, and debug WebGPU applications and GPU compute pipelines. It is framework-agnostic and focuses on reusable WebGPU/WGSL patterns. What this skill covers WebGPU initialization, device setup, and surface configuration Compute pipelines, workgroup sizing, and storage buffer layout Render pipelines, render passes, and post-processing patterns GPU/CPU synchronization and safe readback strategies Performance and debugging practices Architectur...
|
425 |
| 2341 | domain-embedded | zhanghandong/rust-skills |
Project Context (Auto-Injected) Target configuration: !cat .cargo/config.toml 2>/dev/null || echo "No .cargo/config.toml found" Embedded Domain Layer 3: Domain Constraints Domain Constraints → Design Implications Domain Rule Design Constraint Rust Implication No heap Stack allocation heapless, no Box/Vec No std Core only ![no_std] Real-time Predictable timing No dynamic alloc Resource limited Minimal memory Static buffers Hardware safety Safe peripheral access HAL + ownership Interrupt safe ...
|
425 |
| 2342 | sigma | sanyuan0704/sanyuan-skills |
Sigma Tutor Personalized 1-on-1 mastery tutor. Bloom's 2-Sigma method: diagnose, question, advance only on mastery. Usage /sigma Python decorators /sigma 量子力学 --level beginner /sigma React hooks --level intermediate --lang zh /sigma linear algebra --resume Resume previous session Arguments Argument Description <topic> Subject to learn (required, or prompted) --level <level> Starting level: beginner, intermediate, advanced (default: diagnose) --lang <code> Language override (default: follow user...
|
425 |
| 2343 | design-an-interface | mattpocock/skills |
Design an Interface Based on "Design It Twice" from "A Philosophy of Software Design": your first idea is unlikely to be the best. Generate multiple radically different designs, then compare. Workflow 1. Gather Requirements Before designing, understand: What problem does this module solve? Who are the callers? (other modules, external users, tests) What are the key operations? Any constraints? (performance, compatibility, existing patterns) What should be hidden inside vs exposed? Ask: "What doe...
|
424 |
| 2344 | notion-research-documentation | openai/skills |
Research & Documentation Pull relevant Notion pages, synthesize findings, and publish clear briefs or reports (with citations and links to sources). Quick start Find sources with Notion:notion-search using targeted queries; confirm scope with the user. Fetch pages via Notion:notion-fetch ; note key sections and capture citations ( reference/citations.md ). Choose output format (brief, summary, comparison, comprehensive report) using reference/format-selection-guide.md . Draft in Notion with Noti...
|
424 |
| 2345 | dropbox | membranedev/application-skills |
Dropbox Dropbox is a file hosting service that provides cloud storage, file synchronization, personal cloud, and client software. It is commonly used by individuals and teams to store and share files, documents, and other data across multiple devices. Official docs: https://developers.dropbox.com/ Dropbox Overview Files Shared Links Folders Use action names and parameters as needed. Working with Dropbox This skill uses the Membrane CLI to interact with Dropbox. Membrane handles authentication an...
|
424 |
| 2346 | tailwind-v4 | existential-birds/beagle |
Tailwind CSS v4 Best Practices Quick Reference Vite Plugin Setup: // vite.config.ts import tailwindcss from '@tailwindcss/vite'; import { defineConfig } from 'vite'; export default defineConfig({ plugins: [tailwindcss()], }); CSS Entry Point: /* src/index.css */ @import 'tailwindcss'; @theme Inline Directive: @theme inline { --color-primary: oklch(60% 0.24 262); --color-surface: oklch(98% 0.002 247); } Key Differences from v3 Feature v3 v4 Configuration tailwind.config.js @theme ...
|
423 |
| 2347 | cc-skill-security-review | sickn33/antigravity-awesome-skills |
Security Review Skill This skill ensures all code follows security best practices and identifies potential vulnerabilities. When to Activate Implementing authentication or authorization Handling user input or file uploads Creating new API endpoints Working with secrets or credentials Implementing payment features Storing or transmitting sensitive data Integrating third-party APIs Security Checklist 1. Secrets Management ❌ NEVER Do This const apiKey = "sk-proj-xxxxx" // Hardcoded secret const dbP...
|
423 |
| 2348 | scrapy-web-scraping | mindrally/skills |
Scrapy Web Scraping You are an expert in Scrapy, Python web scraping, spider development, and building scalable crawlers for extracting data from websites. Core Expertise Scrapy framework architecture and components Spider development and crawling strategies CSS Selectors and XPath expressions for data extraction Item Pipelines for data processing and storage Middleware development for request/response handling Handling JavaScript-rendered content with Scrapy-Splash or Scrapy-Playwright Proxy ...
|
422 |
| 2349 | baidu-search | countbot-ai/countbot |
百度 AI 搜索 基于百度千帆平台的 AI 搜索服务,支持多种搜索模式。 配置 编辑 skills/baidu-search/scripts/config.json ,填写 API Key: { "api_key" : "bce-v3/YOUR_API_KEY_HERE" } API Key 从 百度千帆平台 获取。 命令行调用 网页搜索(默认) python3 skills/baidu-search/scripts/search.py "搜索关键词" JSON 输出(推荐 AI 使用) python3 skills/baidu-search/scripts/search.py "人工智能最新进展" --json 限制结果数 python3 skills/baidu-search/scripts/search.py "Python教程" --limit 5 站点过滤 python3 skills/baidu-search/scripts/search.py "天气预报" --sites weather.com.cn 时间过滤(week/month/semiyear/year)...
|
422 |
| 2350 | quality-documentation-manager | davila7/claude-code-templates |
Senior Quality Documentation Manager Expert-level quality documentation management with comprehensive document control system design, regulatory documentation oversight, change management, and configuration control for medical device organizations. Core Documentation Management Competencies 1. Document Control System Design (ISO 13485 Clause 4.2.3) Design and implement comprehensive document control systems ensuring systematic document management and regulatory compliance. Document Control S...
|
422 |