███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 14801 | commit-push-pr | llama-farm/llamafarm |
Commit, Push & PR Skill Automates the git workflow of committing changes, pushing to GitHub, and opening a PR with intelligent handling of edge cases. Required Reading Before executing, internalize the git workflow standards: @.claude/rules/git_workflow.md Key rules: Use Conventional Commits format: type(scope): description NEVER attribute Claude in commits or PRs (no co-author, no mentions) NEVER skip pre-commit hooks (no --no-verify) Execution Workflow Step 1: Assess Git State Run these ...
|
68 |
| 14802 | github | odyssey4me/agent-skills |
GitHub Patterns Tools Use gh CLI for all GitHub operations. Prefer CLI over GitHub MCP servers for lower context usage. Quick Commands Create a PR from the current branch gh pr create --title "feat: add feature" --body "Description" Squash-merge a PR gh pr merge < PR_NUMBER > --squash --title "feat: add feature (<PR_NUMBER>)" View PR status and checks gh pr status gh pr checks < PR_NUMBER > Stacked PR Workflow Summary When merging a chain of stacked PRs (each targeting the previous branch): M...
|
68 |
| 14803 | jwt-authentication | pluginagentmarketplace/custom-plugin-nodejs |
JWT Authentication Skill Implement secure, scalable authentication in Node.js applications using JSON Web Tokens. Quick Start JWT authentication in 4 steps: Install - npm install jsonwebtoken bcryptjs Register - Hash password, create user, generate token Login - Verify password, generate token Protect - Verify token in middleware Core Concepts Generate JWT const jwt = require('jsonwebtoken'); function generateToken(userId) { return jwt.sign( { id: userId }, process.env.JWT_SECRET,...
|
68 |
| 14804 | project-analyzer | oimiragieo/agent-studio |
Step 1: Identify Project Root Locate project root by finding manifest files: Search for package manager files: package.json (Node.js/JavaScript/TypeScript) requirements.txt, pyproject.toml, setup.py (Python) go.mod (Go) Cargo.toml (Rust) pom.xml, build.gradle (Java/Maven/Gradle) composer.json (PHP) Identify project root: Directory containing primary package manager file Handle monorepos (multiple package.json files) Detect workspace configuration Validate project root: Check for .git dire...
|
68 |
| 14805 | git-workflow | asyrafhussin/agent-skills |
Git Workflow When to use this skill Creating meaningful commit messages Managing branches Merging code Resolving conflicts Collaborating with team Git best practices Instructions Step 1: Branch management Create feature branch : Create and switch to new branch git checkout -b feature/feature-name Or create from specific commit git checkout -b feature/feature-name < commit-hash > Naming conventions : feature/description : New features bugfix/description : Bug fixes hotfix/description : Urgent f...
|
68 |
| 14806 | dbg | theodo-group/debug-that |
dbg Debugger dbg is a CLI debugger that supports Node.js (V8/CDP), Bun (WebKit/JSC), and native code (C/C++/Rust/Swift via LLDB/DAP). It uses short @refs for all entities -- use them instead of long IDs. Supported Runtimes Runtime Language Launch example Node.js JavaScript dbg launch --brk node app.js tsx / ts-node TypeScript dbg launch --brk tsx src/app.ts Bun JavaScript / TypeScript dbg launch --brk bun app.ts LLDB C / C++ / Rust / Swift dbg launch --brk --runtime lldb ./program The runtime is...
|
68 |
| 14807 | axiom-app-store-diag | charleswiltgen/axiom |
App Store Rejection Diagnostics Overview Systematic App Store rejection diagnosis and remediation. 9 diagnostic patterns covering the most common rejection categories including technical, metadata, privacy, business, subjective, and safety violations. Core principle Most App Store rejections fall into well-known categories. Reading the rejection message carefully and mapping to the correct guideline prevents the 1 mistake: fixing the wrong thing and getting rejected again for the same reason. Mo...
|
68 |
| 14808 | db-migrations | lobehub/lobehub |
Database Migrations Guide Step 1: Generate Migrations bun run db:generate This generates: packages/database/migrations/0046_meaningless_file_name.sql And updates: packages/database/migrations/meta/_journal.json packages/database/src/core/migrations.json docs/development/database-schema.dbml Step 2: Optimize Migration SQL Filename Rename auto-generated filename to be meaningful: 0046_meaningless_file_name.sql → 0046_user_add_avatar_column.sql Step 3: Use Idempotent Clauses (Defensive Programming)...
|
68 |
| 14809 | figma developer | daffy0208/ai-dev-standards |
Figma Developer Turn Figma designs into production-ready code. Core Principle Design is the single source of truth. Designers work in Figma. Developers build from Figma. The bridge between them should be automated, not manual. Phase 1: Setup & Authentication Get Figma Access Token Go to Figma Settings Scroll to "Personal access tokens" Click "Generate new token" Name it (e.g., "Development") Copy and save securely Environment Setup .env FIGMA_ACCESS_TOKEN = figd_ .. . Install Figma Client npm i...
|
68 |
| 14810 | systematic-debugging | secondsky/claude-skills |
Systematic Debugging Overview Random fixes waste time and create new bugs. Quick patches mask underlying issues. Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure. Violating the letter of this process is violating the spirit of debugging. The Iron Law NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST If you haven't completed Phase 1, you cannot propose fixes. When to Use Use for ANY technical issue: Test failures Bugs in production Unexpected behavior Perfor...
|
68 |
| 14811 | ai-sdk-5 | prowler-cloud/prowler |
Breaking Changes from AI SDK 4 // ❌ AI SDK 4 (OLD) import { useChat } from "ai"; const { messages, handleSubmit, input, handleInputChange } = useChat({ api: "/api/chat", }); // ✅ AI SDK 5 (NEW) import { useChat } from "@ai-sdk/react"; import { DefaultChatTransport } from "ai"; const { messages, sendMessage } = useChat({ transport: new DefaultChatTransport({ api: "/api/chat" }), }); Client Setup import { useChat } from "@ai-sdk/react"; import { DefaultChatTransport } from "ai"; import { us...
|
68 |
| 14812 | audit-full | yonatangross/orchestkit |
Full-Codebase Audit Single-pass whole-project analysis leveraging Opus 4.6's extended context window. Loads entire codebases (~50K LOC) into context for cross-file vulnerability detection, architecture review, and dependency analysis. Quick Start /ork:audit-full Full audit (all modes) /ork:audit-full security Security-focused audit /ork:audit-full architecture Architecture review /ork:audit-full dependencies Dependency audit Opus 4.6 : Uses complexity: max for extended thinking across entire...
|
68 |
| 14813 | research-executor | liangdabiao/claude-code-stock-deep-research-agent |
Research Executor Role You are a Deep Research Executor responsible for conducting comprehensive, multi-phase research using the 7-stage deep research methodology and Graph of Thoughts (GoT) framework. Core Responsibilities Execute the 7-Phase Deep Research Process Deploy Multi-Agent Research Strategy Ensure Citation Accuracy and Quality Generate Structured Research Outputs The 7-Phase Deep Research Process Phase 1: Question Scoping ✓ (Already Done) Verify the structured prompt is complete and a...
|
68 |
| 14814 | segment-automation | sickn33/antigravity-awesome-skills |
Segment Automation via Rube MCP Automate Segment customer data platform operations through Composio's Segment toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/segment Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Segment connection via RUBE_MANAGE_CONNECTIONS with toolkit segment Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed —...
|
68 |
| 14815 | humanizer | shipshitdev/library |
Humanizer: Remove AI Writing Patterns You are a writing editor that identifies and removes signs of AI-generated text to make writing sound more natural and human. This guide is based on Wikipedia's "Signs of AI writing" page, maintained by WikiProject AI Cleanup. Your Task When given text to humanize: Identify AI patterns - Scan for the patterns listed below Rewrite problematic sections - Replace AI-isms with natural alternatives Preserve meaning - Keep the core message intact Maintain voice - ...
|
68 |
| 14816 | feishu-channel | aaaaqwq/claude-code-skills |
飞书 Channel 集成 将飞书接入 OpenClaw,实现双向消息通道。 与 feishu-automation 的区别 特性 feishu-channel feishu-automation 主要用途 消息通道集成 平台自动化操作 消息接收 ✅ Webhook 事件订阅 ❌ 不支持 消息发送 ✅ 实时对话 ✅ 通知推送 多维表格 ❌ 不涉及 ✅ 完整支持 文档管理 ❌ 不涉及 ✅ 完整支持 适用场景 AI 对话机器人 数据同步、自动化工作流 架构概述 ┌─────────────┐ ┌──────────────────┐ ┌─────────────┐ │ 飞书用户 │ ←→ │ 飞书开放平台 │ ←→ │ OpenClaw │ │ (私聊/群聊) │ │ (Webhook) │ │ Gateway │ └─────────────┘ └──────────────────┘ └─────────────┘ ↓ ┌──────────────────┐ │ Webhook 服...
|
68 |
| 14817 | godot-procedural-generation | thedivergentai/gd-agentic-skills |
Procedural Generation Seeded algorithms, noise functions, and constraint propagation define replayable content generation. Available Scripts wfc_level_generator.gd Expert Wave Function Collapse implementation with tile adjacency rules. NEVER Do in Procedural Generation NEVER forget to seed RNG — randi() without seed = same dungeon every time. Use seed(hash(Time.get_ticks_msec())) OR expose seed for speedrunning. NEVER use randf() in _ready() for multiplayer — Each client calls _ready() at differ...
|
68 |
| 14818 | software-code-review | vasilyu1983/ai-agents-public |
Code Reviewing Skill — Quick Reference This skill provides operational checklists and prompts for structured code review across languages and stacks. Use it when the primary task is reviewing existing code rather than designing new systems. Quick Reference Review Type Focus Areas Key Checklist When to Use Security Review Auth, input validation, secrets, OWASP Top 10 software-security-appsec Security-critical code, API endpoints Supply Chain Review Dependencies, lockfiles, licenses, SBOM, CI po...
|
68 |
| 14819 | influencer-outreach-template | dengineproblem/agents-monorepo |
Influencer Outreach Templates Expert in creating personalized, high-converting influencer outreach communications. Core Framework Personalization Approach Deep research into recent content and engagement patterns Lead with mutual benefits rather than brand-only needs Match communication style to influencer's voice Time outreach around posting schedules Reference specific content to show genuine familiarity Campaign Hierarchy Warm introduction with specific content reference Clear collaboration b...
|
68 |
| 14820 | pricing-strategist | shipshitdev/library |
Pricing Strategist Purpose Build a comprehensive, justified pricing strategy — tier structures, price points, positioning, and revenue optimization — tailored to the business through context and conversation. Execution Logic Check $ARGUMENTS first to determine execution mode: If $ARGUMENTS is empty or not provided: Respond with: "pricing-strategist loaded, ready to build your pricing strategy" Then wait for the user to provide context in the next message. If $ARGUMENTS contains content: Proceed ...
|
68 |
| 14821 | vector-search-workflows | bobmatnyc/claude-mpm-skills |
Vector Search Workflows (MCP Vector Search) Overview Use mcp-vector-search to index codebases into ChromaDB and search via semantic embeddings. The recommended flow is setup (init + index + MCP integration), then search, and use index or auto-index to keep data fresh. Quick Start pip install mcp-vector-search mcp-vector-search setup mcp-vector-search search "authentication logic" setup detects languages, initializes config, indexes the repo, and configures MCP integrations (Claude Code, Curs...
|
68 |
| 14822 | tailwind-validator | shipshitdev/library |
Tailwind 4 Validator Validates that a project uses Tailwind CSS v4 with proper CSS-first configuration. Detects and flags Tailwind v3 patterns that should be migrated. Purpose CRITICAL: Claude and other AI assistants often default to Tailwind v3 patterns. This skill ensures: Projects use Tailwind v4 CSS-first configuration Old tailwind.config.js patterns are detected and flagged Proper @theme blocks are used instead of JS config Dependencies are v4+ When to Use Before any Tailwind work: Run ...
|
68 |
| 14823 | material-design-3 | 7spade/black-tortoise |
Material Design 3 (Material You) Skill 🎯 Purpose This skill provides comprehensive guidance on Material Design 3 (also known as Material You), Google's latest design system that emphasizes personalization, accessibility, and modern UI patterns for Angular applications. 📦 What is Material Design 3? Material Design 3 is Google's latest design language that introduces: Dynamic Color: Adaptive color palettes based on user preferences Enhanced Accessibility: WCAG 2.1 AA compliance by default Flex...
|
68 |
| 14824 | gis | vamseeachanta/workspace-hub |
GIS Skill — Integration Reference Cross-application geospatial skill covering supported CRS, data formats, and application integration steps for the digitalmodel.gis module (WRK-020). 1. Supported Coordinate Reference Systems EPSG Name Use case EPSG:4326 WGS84 geographic Default for GeoJSON, GPS, BSEE well data EPSG:3857 Web Mercator (Pseudo-Mercator) Tile maps (Google Maps, OpenStreetMap) EPSG:32601–32660 UTM Zone 1N–60N Northern hemisphere metre-accurate work EPSG:32701–32760 UTM Zone 1S–60S S...
|
68 |
| 14825 | typescript-advanced-patterns | nickcrew/claude-ctx-plugin |
TypeScript Advanced Patterns Expert guidance for leveraging TypeScript's advanced type system features to build robust, type-safe applications with sophisticated type inference, compile-time guarantees, and maintainable domain models. When to Use This Skill Building type-safe APIs with strict contracts and validation Implementing complex domain models with compile-time enforcement Creating reusable libraries with sophisticated type inference Enforcing business rules through the type system Bui...
|
68 |
| 14826 | woocommerce-markdown | woocommerce/woocommerce |
No SKILL.md available for this skill. [View on GitHub ](https://github.com/woocommerce/woocommerce)
|
68 |
| 14827 | vercel-storage-data | bobmatnyc/claude-mpm-skills |
Vercel Storage and Data Skill progressive_disclosure: entry_point: summary: "Vercel data and storage: Postgres, Redis, Vercel Blob, Edge Config, and data cache." when_to_use: - "When selecting a data store or cache" - "When using managed Postgres or Redis" - "When storing files with Vercel Blob" quick_start: - "Choose Postgres, Redis, or Blob" - "Configure Edge Config or data cache" - "Connect from Functions or apps" - "Monitor usage" token_estimate: entry: 90-110 full: 3800-4800 Overview Verce...
|
68 |
| 14828 | sendgrid-automation | sickn33/antigravity-awesome-skills |
SendGrid Automation via Rube MCP Automate SendGrid email delivery workflows including marketing campaigns (Single Sends), contact and list management, sender identity setup, and email analytics through Composio's SendGrid toolkit. Toolkit docs : composio.dev/toolkits/sendgrid Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active SendGrid connection via RUBE_MANAGE_CONNECTIONS with toolkit sendgrid Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get R...
|
68 |
| 14829 | frontend-ui-ux-design | dauquangthanh/hanoi-rainbow |
This skill enables creation of production-ready frontend UI/UX designs from research through implementation. Follow a structured design process that balances user needs, business goals, technical constraints, and accessibility requirements. Design Workflow 1. Understand Requirements Gather Context: - Project goals and success metrics - Target audience and user personas - Technical constraints (frameworks, browsers, devices) - Brand guidelines and design language - Accessibility require...
|
68 |
| 14830 | godot-autoload-architecture | thedivergentai/gd-agentic-skills |
AutoLoad Architecture AutoLoads are Godot's singleton pattern, allowing scripts to be globally accessible throughout the project lifecycle. This skill guides implementing robust, maintainable singleton architectures. NEVER Do NEVER access AutoLoads in _init() — AutoLoads aren't guaranteed to exist yet during _init(). Use _ready() or _enter_tree() instead. NEVER create circular dependencies — If GameManager depends on SaveManager and SaveManager depends on GameManager, initialization deadlocks. U...
|
68 |
| 14831 | git | epicenterhq/epicenter |
Git Git 버전 관리 모범 관례 및 워크플로우 가이드. 커밋 메시지 컨벤션 Conventional Commits 사용 커밋 메시지는 <type>: <description> 형식을 따른다: feat: add form validation to login page fix: prevent duplicate email check error on signup docs: add installation guide to README refactor: extract auth logic into separate module test: add payment feature tests chore: update dependencies 주요 타입 타입 설명 예시 feat 새로운 기능 추가 feat: add dark mode support fix 버그 수정 fix: prevent token deletion on logout docs 문서 변경 (코드 변경 없음) docs: update API documenta...
|
68 |
| 14832 | brutal-honesty-review | proffesor-for-testing/agentic-qe |
Brutal Honesty Review <default_to_action> When brutal honesty is needed: CHOOSE MODE: Linus (technical), Ramsay (standards), Bach (BS detection) VERIFY CONTEXT: Senior engineer? Repeated mistake? Critical bug? Explicit request? STRUCTURE: What's broken → Why it's wrong → What correct looks like → How to fix ATTACK THE WORK, not the worker ALWAYS provide actionable path forward Quick Mode Selection: Linus: Code is technically wrong, inefficient, misunderstands fundamentals Ramsay: Quality is ...
|
68 |
| 14833 | documentation | sickn33/antigravity-awesome-skills |
Technical Documentation Write clear, maintainable technical documentation for different audiences and purposes. Document Types README What this is and why it exists Quick start (< 5 minutes to first success) Configuration and usage Contributing guide API Documentation Endpoint reference with request/response examples Authentication and error codes Rate limits and pagination SDK examples Runbook When to use this runbook Prerequisites and access needed Step-by-step procedure Rollback steps Escalat...
|
68 |
| 14834 | sentiment-analyzer | dkyazzentwatwa/chatgpt-skills |
Sentiment Analyzer Analyze the sentiment of text content with detailed scoring, emotion detection, and visualization capabilities. Process single texts, CSV files, or track sentiment trends over time. Quick Start from scripts . sentiment_analyzer import SentimentAnalyzer Analyze single text analyzer = SentimentAnalyzer ( ) result = analyzer . analyze ( "I love this product! It's amazing." ) print ( f"Sentiment: { result [ 'sentiment' ] } ( { result [ 'score' ] : .2f } )" ) Batch analyze CSV re...
|
68 |
| 14835 | tunnel-doctor | daymade/claude-code-skills |
Tunnel Doctor Diagnose and fix conflicts when Tailscale coexists with proxy/VPN tools on macOS, with specific guidance for SSH access to WSL instances. Five Conflict Layers Proxy/VPN tools on macOS create conflicts at five independent layers. Layers 1-3 affect Tailscale connectivity; Layer 4 affects SSH git operations; Layer 5 affects VM/container runtimes: Layer What breaks What still works Root cause 1. Route table Everything (SSH, curl, browser) tailscale ping tun-excluded-routes adds en0 rou...
|
68 |
| 14836 | geo-aeo-optimization | schwepps/skills |
GEO & AEO Optimization Framework Professional methodology for visibility in AI-powered search engines and generative AI responses. Understanding GEO vs AEO vs SEO SEO → Rank in traditional search results (blue links) AEO → Appear in featured snippets, AI Overviews, voice answers GEO → Get cited in generative AI responses (ChatGPT, Claude, Perplexity) 2025 Reality: 58% of queries are conversational AI Overviews appear in ~47% of Google searches Traditional CTR dropped 34.5% for top result...
|
68 |
| 14837 | sales-engineer | borghei/claude-skills |
Sales Engineer Skill A production-ready skill package for pre-sales engineering that bridges technical expertise and sales execution. Provides automated analysis for RFP/RFI responses, competitive positioning, and proof-of-concept planning. Overview Role: Sales Engineer / Solutions Architect Domain: Pre-Sales Engineering, Solution Design, Technical Demos, Proof of Concepts Business Type: SaaS / Pre-Sales Engineering What This Skill Does RFP/RFI Response Analysis - Score requirement coverage, ide...
|
68 |
| 14838 | oss-hunter | sickn33/antigravity-awesome-skills |
OSS Hunter 🎯 A precision skill for agents to find, analyze, and strategize for high-impact Open Source contributions. This skill helps you become a top-tier contributor by identifying the most "mergeable" and influential issues in trending repositories. When to Use Use when the user asks to find open source issues to work on. Use when searching for "help wanted" or "good first issue" tasks in specific domains like AI or Web3. Use to generate a "Contribution Dossier" with ready-to-execute strateg...
|
68 |
| 14839 | anti-cheat-systems | gmh5225/awesome-game-security |
Anti-Cheat Systems & Analysis Overview This skill covers anti-cheat systems used in games, their detection mechanisms, and research techniques. Understanding anti-cheat helps both defenders (game developers) and security researchers. Major Anti-Cheat Systems Easy Anti-Cheat (EAC) Kernel-mode driver protection Process integrity verification Memory scanning Used by: Fortnite, Apex Legends, Rust BattlEye Kernel driver with ring-0 access Screenshot capture capability Network traffic analysis Used ...
|
68 |
| 14840 | sherpa | simota/agent-skills |
You are "Sherpa" - a workflow guide and task breakdown specialist who helps the developer climb the mountain of implementation one step at a time. Your mission is to take a complex objective (Epic) and break it down into "Atomic Steps" (< 15 mins), ensuring the developer never feels overwhelmed or lost. You identify dependencies, assess risks, and coordinate with Scout for investigation phases. Boundaries Always do: - Break tasks down until they are "Atomic" (testable, committable units) ...
|
68 |
| 14841 | atlassian-cli | onnokh/atlassian-cli |
Atlassian CLI (acli) Use acli to automate and operate Atlassian Cloud workflows from the terminal (Jira, Admin, and Rovo Dev). Workflow Install or upgrade acli (pick the OS-specific path). Authenticate (pick token vs OAuth vs admin API key). Discover the exact command/flags via acli help ... and --help . Prefer machine-readable output ( --json ) for automation; parse with jq . Handle bulk operations with --ignore-errors where appropriate; capture trace IDs on unexpected errors. Decision Tree Ins...
|
68 |
| 14842 | docker configuration validator | rknall/claude-skills |
Docker Configuration Validator This skill provides comprehensive validation for Dockerfiles and Docker Compose files, ensuring compliance with best practices, security standards, and modern syntax requirements. When to Use This Skill Activate this skill when the user requests: Validate Dockerfiles or Docker Compose files Review Docker configurations for best practices Check for Docker security issues Verify multi-stage build implementation Audit Docker setup for production readiness Ensure moder...
|
68 |
| 14843 | ux-design-systems | hoodini/ai-agents-skills |
UX Design Systems Build consistent, maintainable design systems with tokens, components, and theming. Design Tokens CSS Variables :root { /* Colors */ --color-primary-50: eff6ff; --color-primary-500: 3b82f6; --color-primary-900: 1e3a8a; /* Typography */ --font-sans: 'Inter', system-ui, sans-serif; --font-size-sm: 0.875rem; --font-size-base: 1rem; --font-size-lg: 1.125rem; /* Spacing */ --space-1: 0.25rem; --space-2: 0.5rem; --space-4: 1rem; --space-8: 2rem; ...
|
68 |
| 14844 | esp32-debugging | laurigates/mcu-tinkering-lab |
ESP32 Firmware Debugging Guide When to Use This Skill Apply this skill when the user: Encounters compilation errors in ESP-IDF projects Sees runtime panics or "Guru Meditation Error" messages Has memory-related crashes or stack overflows Experiences I2C/SPI/UART communication failures Needs help interpreting serial monitor output Debugging Techniques 1. Compilation Error Analysis Missing Includes fatal error: driver/gpio.h: No such file or directory Fix: Check CMakeLists.txt and add the componen...
|
68 |
| 14845 | circleci-automation | composiohq/awesome-claude-skills |
CircleCI Automation via Rube MCP Automate CircleCI CI/CD operations through Composio's CircleCI toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/circleci Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active CircleCI connection via RUBE_MANAGE_CONNECTIONS with toolkit circleci Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add t...
|
68 |
| 14846 | redteam | danielmiessler/personal_ai_infrastructure |
Customization Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/RedTeam/ If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. RedTeam Skill Military-grade adversarial analysis using parallel agent deployment. Breaks arguments into atomic components, attacks from 32 expert perspectives (engineers, architec...
|
67 |
| 14847 | miro-automation | sickn33/antigravity-awesome-skills |
Miro Automation via Rube MCP Automate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/miro Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Miro connection via RUBE_MANAGE_CONNECTIONS with toolkit miro Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it ...
|
67 |
| 14848 | create-pr | tartinerlabs/skills |
create-pr Overview This guide covers best practices for creating pull requests in the warp repository, including merging master, running presubmit checks, linking Linear tasks, ensuring appropriate test coverage, and structuring your PR for effective review.
|
67 |
| 14849 | find-skills | apolinariolanga/skills |
Find Skills This skill helps you discover and install skills from the open agent skills ecosystem. When to Use This Skill Use this skill when the user: Asks "how do I do X" where X might be a common task with an existing skill Says "find a skill for X" or "is there a skill for X" Asks "can you do X" where X is a specialized capability Expresses interest in extending agent capabilities Wants to search for tools, templates, or workflows Mentions they wish they had help with a specific domain (desi...
|
67 |
| 14850 | bright-data | vm0-ai/vm0-skills |
Bright Data Web Scraper API Use the Bright Data API via direct curl calls for social media scraping , web data extraction , and account management . Official docs: https://docs.brightdata.com/ When to Use Use this skill when you need to: Scrape social media - Twitter/X, Reddit, YouTube, Instagram, TikTok, LinkedIn Extract web data - Posts, profiles, comments, engagement metrics Monitor usage - Track bandwidth and request usage Manage account - Check status and zones Prerequisites Sign up at Brig...
|
67 |