███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 7851 | supabase | mindrally/skills |
Supabase Core Principles 1. Supabase changes frequently — verify against current docs before implementing. Do not rely on training data for Supabase features. Function signatures, config.toml settings, and API conventions change between versions. Before implementing, look up the relevant topic using the documentation access methods below. 2. Verify your work. After implementing any fix, run a test query to confirm the change works. A fix without verification is incomplete. 3. Recover from errors...
|
424 |
| 7852 | prompt-engineering | neolabhq/context-engineering-kit |
Prompt Engineering Overview Use this skill to design prompt systems that are clear, testable, and reusable. It covers prompt drafting, optimization, evaluation, and production-oriented patterns for few-shot prompting, reasoning workflows, templates, and system prompts. Keep the main workflow in this file and load the targeted reference files only for the pattern you are applying. When to Use Use this skill when: A user asks to write, rewrite, or improve a prompt A prompt needs better structure, ...
|
424 |
| 7853 | comfyui-prompt-engineer | mckruz/comfyui-expert |
ComfyUI Prompt Engineer Generates optimized prompts tailored to specific models and identity methods. Different models respond differently to prompts. Model-Specific Prompt Rules FLUX.1 (dev/schnell/Kontext) Style : Natural language descriptions work best CFG : 3.5-4 (very low) Quality tags : Minimal - FLUX doesn't need "masterpiece, best quality" Length : Medium (50-100 words) Structure : {subject description}, {setting}, {lighting}, {camera/style} Good FLUX prompt: photorealistic portrait of a...
|
424 |
| 7854 | data-visualization | inference-sh/skills |
Data Visualization Skill Chart selection guidance, Python visualization code patterns, design principles, and accessibility considerations for creating effective data visualizations. Chart Selection Guide Choose by Data Relationship What You're Showing Best Chart Alternatives Trend over time Line chart Area chart (if showing cumulative or composition) Comparison across categories Vertical bar chart Horizontal bar (many categories), lollipop chart Ranking Horizontal bar chart Dot plot, slope char...
|
423 |
| 7855 | computer-use | stablyai/orca |
Computer Use Use this skill when the task should operate through Orca's desktop computer-use surface rather than native Codex computer tools, raw AppleScript, ad hoc screenshots, or direct app internals. Preconditions Prefer the public orca computer ... command. In this Orca worktree, use ./config/scripts/orca-dev computer ... when testing the local dev runtime. Prefer --json for agent-driven calls. Screenshot image bytes are omitted from JSON and written to screenshot.path when present. Do not ...
|
423 |
| 7856 | stitch::extract-design-md | google-labs-code/stitch-skills |
Extract Design System from Frontend Code Analyze frontend source code to extract a comprehensive design system document (DESIGN.md) that captures the project's visual language — colors, typography, spacing, component patterns, and layout principles — directly from the source files, without needing to build or render the application. Why This Exists The design-md skill works from rendered HTML. But often you have a codebase and want to understand its design system before you can even run the app ...
|
423 |
| 7857 | story-sense | jwynia/agent-skills |
Story Sense: Diagnostic Skill Identify what state a story is in and what it needs to move forward. This is not a linear process but a diagnostic model: Assess → Diagnose → Intervene → Reassess. When to Use This Skill Use this skill when: Writer is stuck and doesn't know why Story feels broken but root cause unclear Need to evaluate story problems systematically Someone asks "what's wrong with my story?" Do NOT use this skill when: Writer wants you to write the story (use story-collaborator...
|
423 |
| 7858 | terraform-diagrams | eraserlabs/eraser-io |
Terraform Diagram Generator Generates architecture diagrams directly from Terraform .tf files. Specializes in parsing Terraform code and visualizing infrastructure resources, modules, and their relationships. When to Use Activate this skill when: User has Terraform files (.tf, .tfvars) and wants to visualize the infrastructure User asks to "diagram my Terraform" or "visualize this infrastructure" User mentions Terraform, HCL, or infrastructure-as-code User wants to see the architecture of th...
|
423 |
| 7859 | jianying-video-gen | cclank/lanshu-waytovideo |
剪映 AI 视频生成器 通过 Playwright 自动化操作剪映(xyq.jianying.com),使用 Seedance 2.0 模型生成 AI 视频。 前置条件 Python 3.9+ + playwright 已安装 Chromium 已通过 playwright install chromium 安装 cookies.json — 剪映登录凭证(从浏览器导出),放在脚本同目录下 pip install playwright && playwright install chromium 核心脚本 scripts/jianying_worker.py — 主自动化脚本 使用方式 文生视频 (T2V) python3 scripts/jianying_worker.py \ --cookies /path/to/cookies.json \ --output-dir /path/to/output \ --prompt "赛博朋克风格的长安城,飞行汽车穿梭在霓虹灯笼之间" \ --duration 10s \ --model "Seedance 2.0" 图生视频 (I2V) p...
|
423 |
| 7860 | a-b-test-design | owl-listener/designer-skills |
A/B Test Design You are an expert in designing rigorous A/B experiments that produce actionable results. What You Do You design A/B tests with clear hypotheses, controlled variants, appropriate metrics, and statistical rigor. Test Structure 1. Hypothesis Structured as: 'If we [change], then [outcome] will [improve/decrease] because [rationale].' 2. Variants Control (A): current design Treatment (B): proposed change Keep changes isolated — test one variable at a time 3. Primary Metric The single ...
|
423 |
| 7861 | api-testing | secondsky/claude-skills |
API Testing Expert knowledge for testing HTTP APIs with Supertest (TypeScript/JavaScript) and httpx/pytest (Python). TypeScript/JavaScript (Supertest) Installation Using Bun bun add -d supertest @types/supertest or: npm install -D supertest @types/supertest Basic Setup import { describe , it , expect } from 'vitest' import request from 'supertest' import { app } from './app' describe ( 'API Tests' , ( ) => { it ( 'returns health status' , async ( ) => { const response = await request ( app ) ....
|
423 |
| 7862 | asc-submission-health | rorkai/app-store-connect-cli-skills |
asc submission health Use this skill to reduce review submission failures and monitor status. Preconditions Auth configured and app/version/build IDs resolved. Build is processed (not in processing state). All required metadata is complete. Pre-submission Checklist 1. Verify Build Status asc builds info --build "BUILD_ID" Check: processingState is VALID usesNonExemptEncryption - if true , requires encryption declaration 2. Encryption Compliance If usesNonExemptEncryption: true : List existing d...
|
423 |
| 7863 | database-design | davila7/claude-code-templates |
Database Design Learn to THINK, not copy SQL patterns. 🎯 Selective Reading Rule Read ONLY files relevant to the request! Check the content map, find what you need. File Description When to Read database-selection.md PostgreSQL vs Neon vs Turso vs SQLite Choosing database orm-selection.md Drizzle vs Prisma vs Kysely Choosing ORM schema-design.md Normalization, PKs, relationships Designing schema indexing.md Index types, composite indexes Performance tuning optimization.md N+1, EXPLAIN ANALYZE Que...
|
423 |
| 7864 | llama-cpp | davila7/claude-code-templates |
llama.cpp Pure C/C++ LLM inference with minimal dependencies, optimized for CPUs and non-NVIDIA hardware. When to use llama.cpp Use llama.cpp when: Running on CPU-only machines Deploying on Apple Silicon (M1/M2/M3/M4) Using AMD or Intel GPUs (no CUDA) Edge deployment (Raspberry Pi, embedded systems) Need simple deployment without Docker/Python Use TensorRT-LLM instead when: Have NVIDIA GPUs (A100/H100) Need maximum throughput (100K+ tok/s) Running in datacenter with CUDA Use vLLM instead ...
|
423 |
| 7865 | writing-documentation-with-diataxis | sammcj/agentic-coding |
Writing Documentation with Diataxis You help users create and improve technical documentation using the Diataxis framework, which identifies four distinct documentation types based on user needs. What Diataxis Is Diataxis is a framework for creating documentation that feels good to use - documentation that has flow, anticipates needs, and fits how humans actually interact with a craft. Important: Diataxis is an approach, not a template. Don't create empty sections for tutorials/how-to/refere...
|
423 |
| 7866 | sports-news | machina-sports/sports-skills |
Sports News Quick Start Prefer the CLI — it avoids Python import path issues: sports-skills news fetch_items --google_news --query = "Arsenal transfer" --limit = 5 sports-skills news fetch_feed --url = "https://feeds.bbci.co.uk/sport/football/rss.xml" Python SDK (alternative): from sports_skills import news articles = news . fetch_items ( google_news = True , query = "Arsenal transfer news" , limit = 10 ) feed = news . fetch_feed ( url = "https://feeds.bbci.co.uk/sport/football/rss.xml" ) Import...
|
423 |
| 7867 | visual-regression-testing | aj-geddes/useful-ai-prompts |
Visual Regression Testing Overview Visual regression testing captures screenshots of UI components and pages, then compares them across versions to detect unintended visual changes. This automated approach catches CSS bugs, layout issues, and design regressions that traditional functional tests miss. When to Use Detecting CSS regression bugs Validating responsive design across viewports Testing across different browsers Verifying component visual consistency Catching layout shifts and overlaps...
|
423 |
| 7868 | python-best-practices | nathan-gage/python-skills |
Python Best Practices Type-First Development Types define the contract before implementation. Follow this workflow: Define data models - dataclasses, Pydantic models, or TypedDict first Define function signatures - parameter and return type hints Implement to satisfy types - let the type checker guide completeness Validate at boundaries - runtime checks where data enters the system Make Illegal States Unrepresentable Use Python's type system to prevent invalid states at type-check time. Data...
|
423 |
| 7869 | security-testing | aj-geddes/useful-ai-prompts |
Security Testing Overview Security testing identifies vulnerabilities, weaknesses, and threats in applications to ensure data protection, prevent unauthorized access, and maintain system integrity. It combines automated scanning (SAST, DAST) with manual penetration testing and code review. When to Use Testing for OWASP Top 10 vulnerabilities Scanning dependencies for known vulnerabilities Testing authentication and authorization Validating input sanitization Testing API security Checking for s...
|
423 |
| 7870 | agentic-workflow | parcadei/continuous-claude-v3 |
AI Agent Workflow (Workflow & Productivity) When to use this skill Optimize everyday AI agent work Integrate Git/GitHub workflows Use MCP servers Manage and recover sessions Apply productivity techniques 1. Key commands by agent Claude Code commands Command Function When to use /init Auto-generate a CLAUDE.md draft Start a new project /usage Show token usage/reset time Start of every session /clear Clear conversation history When context is polluted; start a new task /context Context window X-Ra...
|
423 |
| 7871 | memory-reflect | basicmachines-co/basic-memory-skills |
Memory Reflect Review recent activity and consolidate valuable insights into long-term memory. Inspired by sleep-time compute — the idea that memory formation happens best between active sessions, not during them. When to Run Cron/heartbeat : Schedule as a periodic background task (recommended: 1-2x daily) On demand : User asks to reflect, consolidate, or review recent memory Post-compaction : After context window compaction events Process 1. Gather Recent Material Find what changed recently, th...
|
423 |
| 7872 | node-best-practices | mcollina/skills |
When to use Use this skill whenever you are dealing with Node.js code to obtain domain-specific knowledge for building robust, performant, and maintainable Node.js applications. TypeScript with Type Stripping When writing TypeScript for Node.js, use type stripping (Node.js 22.6+) instead of build tools like ts-node or tsx. Type stripping runs TypeScript directly by removing type annotations at runtime without transpilation. Key requirements for type stripping compatibility: Use import type for t...
|
422 |
| 7873 | agentic-jujutsu | ruvnet/ruflo |
Agentic Jujutsu - AI Agent Version Control Quantum-ready, self-learning version control designed for multiple AI agents working simultaneously without conflicts. When to Use This Skill Use agentic-jujutsu when you need: ✅ Multiple AI agents modifying code simultaneously ✅ Lock-free version control (23x faster than Git) ✅ Self-learning AI that improves from experience ✅ Quantum-resistant security for future-proof protection ✅ Automatic conflict resolution (87% success rate) ✅ Pattern recognition ...
|
422 |
| 7874 | metrics-definition | owl-listener/designer-skills |
Metrics Definition You are an expert in defining meaningful UX metrics that demonstrate design impact. What You Do You help teams define metrics connecting design work to measurable outcomes. Metric Categories Behavioral : Task completion, time on task, error rate, feature adoption Attitudinal : SUS, NPS, CSAT, perceived ease of use Business : Conversion, retention, support volume, onboarding completion Engagement : DAU/MAU, session duration, feature discovery, return visits HEART Framework Happ...
|
422 |
| 7875 | asc-xcode-build | rorkai/app-store-connect-cli-skills |
Xcode Build and Export Use this skill when you need to build an app from source and prepare it for upload to App Store Connect. Preconditions Xcode installed and command line tools configured Valid signing identity and provisioning profiles (or automatic signing enabled) iOS Build Flow 1. Clean and Archive xcodebuild clean archive \ -scheme "YourScheme" \ -configuration Release \ -archivePath /tmp/YourApp.xcarchive \ -destination "generic/platform=iOS" 2. Export IPA xcodebuild -exportArchive \ -...
|
422 |
| 7876 | dispatching-parallel-agents | sickn33/antigravity-awesome-skills |
Dispatching Parallel Agents Overview You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work. When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequen...
|
422 |
| 7877 | cc-skill-project-guidelines-example | sickn33/antigravity-awesome-skills |
Project Guidelines Skill (Example) This is an example of a project-specific skill. Use this as a template for your own projects. Based on a real production application: Zenith - AI-powered customer discovery platform. When to Use Reference this skill when working on the specific project it's designed for. Project skills contain: Architecture overview File structure Code patterns Testing requirements Deployment workflow Architecture Overview Tech Stack: Frontend: Next.js 15 (App Router), T...
|
422 |
| 7878 | machine-learning-ops-ml-pipeline | sickn33/antigravity-awesome-skills |
Machine Learning Pipeline - Multi-Agent MLOps Orchestration Design and implement a complete ML pipeline for: $ARGUMENTS Use this skill when Working on machine learning pipeline - multi-agent mlops orchestration tasks or workflows Needing guidance, best practices, or checklists for machine learning pipeline - multi-agent mlops orchestration Do not use this skill when The task is unrelated to machine learning pipeline - multi-agent mlops orchestration You need a different domain or tool outside th...
|
422 |
| 7879 | react-useeffect | davila7/claude-code-templates |
You Might Not Need an Effect Effects are an escape hatch from React. They let you synchronize with external systems. If there is no external system involved, you shouldn't need an Effect. Quick Reference Situation DON'T DO Derived state from props/state useState + useEffect Calculate during render Expensive calculations useEffect to cache useMemo Reset state on prop change useEffect with setState key prop User event responses useEffect watching state Event handler directly Notify parent of chang...
|
422 |
| 7880 | pp-company-goat | mvanhorn/printing-press-library |
Company GOAT — Printing Press CLI Prerequisites: Install the CLI This skill drives the company-goat-pp-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first: Install via the Printing Press installer: npx -y @mvanhorn/printing-press install company-goat --cli-only Verify: company-goat-pp-cli --version Ensure $GOPATH/bin (or $HOME/go/bin ) is on $PATH . If the npx install fails (no Node, offline, etc.), fall back to a direc...
|
422 |
| 7881 | convert-web-app | modelcontextprotocol/ext-apps |
Add MCP App Support to a Web App Add MCP App support to an existing web application so it works both as a standalone web app and as an MCP App that renders inline in MCP-enabled hosts like Claude Desktop — from a single codebase. How It Works The existing web app stays intact. A thin initialization layer detects whether the app is running inside an MCP host or as a regular web page, and fetches parameters from the appropriate source. A new MCP server wraps the app's bundled HTML as a resource an...
|
422 |
| 7882 | backup-disaster-recovery | aj-geddes/useful-ai-prompts |
Backup and Disaster Recovery Overview Design and implement comprehensive backup and disaster recovery strategies to ensure data protection, business continuity, and rapid recovery from infrastructure failures. When to Use Data protection and compliance Business continuity planning Disaster recovery planning Point-in-time recovery Cross-region failover Data migration Compliance and audit requirements Recovery time objective (RTO) optimization Implementation Examples 1. Database Backup Configura...
|
422 |
| 7883 | wechat-message-sender | cloudsen/eliteforge-skills |
WeChat Message Sender 目标 调用 scripts/send_wechat_message.swift ,在 macOS 微信桌面版里给指定联系人发送一段纯文本。 必填参数 contact :联系人显示名,必须与微信会话标题精确一致。 message :要发送的纯文本内容。 前置条件 已安装微信桌面版。 当前终端或 Codex 已授予 macOS 辅助功能权限。 只支持文本消息,不支持图片、文件、卡片。 工作流 校验 contact 和 message 非空。 运行脚本: swift scripts/send_wechat_message.swift --contact "<contact>" --message "<message>" 脚本会自动: 打开或激活微信。 聚焦左侧搜索框并搜索联系人。 在结果列表里查找精确匹配项。 打开会话后再次校验标题完全等于 contact 。 校验通过后发送消息。 调试 只验证定位,不真正发送: swift scripts/send_wechat_message.swift --contact "<contact>" --mess...
|
422 |
| 7884 | 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...
|
421 |
| 7885 | stitch::manage-design-system | google-labs-code/stitch-skills |
Design-System Create a "source of truth" for your project's design language to ensure consistency across all future screens. [!NOTE] Refer to your system prompt for instruction on handling MCP tool prefixes for all tools mentioned in this skill (e.g., get_screen , create_design_system_from_design_md , apply_design_system ). 📥 Retrieval To analyze a Stitch project, you must retrieve metadata and assets using the Stitch MCP tools: Show more
|
421 |
| 7886 | tushare-api | daydreammy/tushare-openclaw-skill |
Tushare API Skill 简介 Tushare Pro 是中国领先的金融数据平台,提供股票、基金、期货、债券、外汇、数字货币等全品类金融大数据。 官网 : https://tushare.pro API 文档 : https://tushare.pro/document/2 股票代码规范 所有股票代码都需要带后缀: 交易所 后缀 示例 上海证券交易所 .SH 600000.SH 深圳证券交易所 .SZ 000001.SZ 北京证券交易所 .BJ 835305.BJ 香港证券交易所 .HK 00001.HK 常用 API 接口 基础数据 stock_basic - 股票基础信息 trade_cal - 交易日历 stock_company - 上市公司基本信息 new_share - IPO 新股列表 行情数据 daily - 日线行情 weekly - 周线行情 monthly - 月线行情 adj_factor - 复权因子 daily_basic - 每日指标(PE/PB/市值等) 财务数据 income - 利润表 balance_sheet - 资产负债表 cashf...
|
421 |
| 7887 | skywork-ppt | skyworkai/skywork-skills |
PPT Write Skill Four capabilities: generate , template imitation , edit existing PPT , and local file operations . Prerequisites API Key Configuration (Required First) This skill requires a SKYWORK_API_KEY to be configured in OpenClaw. If you don't have an API key yet, please visit: https://skywork.ai For detailed setup instructions, see: references/apikey-fetch.md Privacy & Remote Calls (Read Before Use) Remote upload & processing : Layers 1/2/4 upload local files and send the full, verbatim us...
|
421 |
| 7888 | agent-safla-neural | ruvnet/ruflo |
name: safla-neural description: "Self-Aware Feedback Loop Algorithm (SAFLA) neural specialist that creates intelligent, memory-persistent AI systems with self-learning capabilities. Combines distributed neural training with persistent memory patterns for autonomous improvement. Excels at creating self-aware agents that learn from experience, maintain context across sessions, and adapt strategies through feedback loops." color: cyan You are a SAFLA Neural Specialist, an expert in Self-Aware Feedb...
|
421 |
| 7889 | summarize-interview | owl-listener/designer-skills |
Summarize Customer Interview Transform an interview transcript into a structured summary focused on Jobs to Be Done, satisfaction, and action items. Context You are summarizing a customer interview for the product discovery of $ARGUMENTS . The user will provide an interview transcript — either as an attached file (text, PDF, audio transcription) or pasted directly. Read any attached files first. Instructions Read the full transcript carefully before summarizing. Fill in the summary template belo...
|
421 |
| 7890 | agent-researcher | ruvnet/ruflo |
name: researcher type: analyst color: "9B59B6" description: Deep research and information gathering specialist capabilities: code_analysis pattern_recognition documentation_research dependency_tracking knowledge_synthesis priority: high hooks: pre: | echo "🔍 Research agent investigating: $TASK" memory_store "research_context_$(date +%s)" "$TASK" post: | echo "📊 Research findings documented" memory_search "research_*" | head -5 Research and Analysis Agent You are a research specialist focused on ...
|
421 |
| 7891 | agent-performance-optimizer | ruvnet/ruflo |
No SKILL.md available for this skill. View on GitHub
|
421 |
| 7892 | agent-repo-architect | ruvnet/ruflo |
name: repo-architect description: Repository structure optimization and multi-repo management with ruv-swarm coordination for scalable project architecture and development workflows type: architecture color: "9B59B6" tools: Bash Read Write Edit LS Glob TodoWrite TodoRead Task WebFetch mcp__github__create_repository mcp__github__fork_repository mcp__github__search_repositories mcp__github__push_files mcp__github__create_or_update_file mcp__claude-flow__swarm_init mcp__claude-flow__agent_spawn mcp...
|
421 |
| 7893 | macro-liquidity | star23/day1global-skills |
Macro Liquidity Monitoring System This skill helps you track the most critical "water level" in the global financial system — liquidity. Liquidity can be simply understood as how much money is flowing in the market. When there is plenty of money (ample liquidity), asset prices tend to rise; when money is scarce (tight liquidity), asset prices come under pressure. These 4 indicators cover the complete chain from the Fed's "main faucet" to the market's "end of the pipeline." Use Cases Use this ski...
|
421 |
| 7894 | stakeholder-alignment | owl-listener/designer-skills |
Stakeholder Alignment Help the user achieve stakeholder alignment using frameworks and insights from 88 product leaders. How to Help When the user asks for help with stakeholder alignment: Understand the situation - Ask who the stakeholders are, what decision needs to be made, and where resistance is coming from Identify motivations - Help them understand what each stakeholder cares about and their definition of success Structure the approach - Guide them on pre-alignment, communication sequence...
|
421 |
| 7895 | trpc | mindrally/skills |
tRPC Best Practices You are an expert in tRPC v11, TypeScript, and Next.js development. tRPC enables end-to-end typesafe APIs, allowing you to build and consume APIs without schemas, code generation, or runtime errors. Requirements TypeScript >= 5.7.2 Strict TypeScript mode enabled Project Structure src/ pages/ _app.tsx createTRPCNext setup api/ trpc/ [trpc].ts tRPC HTTP handler server/ routers/ _app.ts Main router [feature].ts Feature-specific routers...
|
421 |
| 7896 | ce-doc-review | everyinc/compound-engineering-plugin |
Document Review Review requirements or plan documents through multi-persona analysis. Dispatches specialized reviewer agents in parallel, auto-applies safe_auto fixes, and routes remaining findings through a four-option interaction (per-finding walk-through, auto-resolve with best judgment, Append-to-Open-Questions, Report-only) for user decision. Interactive mode rules Pre-load the platform question tool before any question fires. In Claude Code, AskUserQuestion is a deferred tool — its schema ...
|
421 |
| 7897 | superpowers-lab | sickn33/antigravity-awesome-skills |
Superpowers Lab Overview Lab environment for Claude superpowers When to Use This Skill Use this skill when you need to work with lab environment for claude superpowers. Instructions This skill provides guidance and patterns for lab environment for claude superpowers. For more information, see the source repository .
|
421 |
| 7898 | cms-best-practices | webflow/webflow-skills |
CMS Best Practices Provide expert guidance on Webflow CMS architecture, relationships, optimization, and troubleshooting. Important Note ALWAYS use Webflow MCP tools for all operations: Use Webflow MCP's webflow_guide_tool to get best practices before starting Use Webflow MCP's data_sites_tool with action list_sites to identify available sites Use Webflow MCP's data_sites_tool with action get_site to retrieve site details and plan limits Use Webflow MCP's data_cms_tool with action get_collec...
|
420 |
| 7899 | cloudbase-agent-ts | tencentcloudbase/skills |
Cloudbase Agent (TypeScript) TypeScript SDK for deploying AI agents as HTTP services using the AG-UI protocol. Note: This skill is for TypeScript/JavaScript projects only. When to use this skill Use this skill for AI agent development when you need to: Deploy AI agents as HTTP services with AG-UI protocol support Build agent backends using LangGraph or LangChain frameworks Create custom agent adapters implementing the AbstractAgent interface Understand AG-UI protocol events and message streaming...
|
420 |
| 7900 | scan | wshobson/agents |
Codebase Scanner You are a technical analyst. Your job is to scan the project codebase and produce accurate, project-specific documentation used by all downstream agents. Step 1: Check Optional Plugin Dependencies Check whether the two optional enhancement plugins are available: understand-anything → /plugin list | grep understand-anything context-mode → /plugin list | grep context-mode These plugins are optional . They improve scan quality but are not required: understand-anything (L...
|
420 |