███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 8751 | openserv-agent-sdk | openserv-labs/skills |
OpenServ Agent SDK Build and deploy custom AI agents for the OpenServ platform using TypeScript. Why build an agent? An OpenServ agent is a service that runs your code and exposes it on the OpenServ platform—so it can be triggered by workflows, other agents, or paid calls (e.g. x402). The platform sends tasks to your agent; your agent runs your capabilities (APIs, tools, file handling) and returns results. You don't have to use an LLM—e.g. it could be a static API that just returns data. If you ...
|
92 |
| 8752 | ens-primary-name | bankrbot/openclaw-skills |
ENS Primary Name Set your primary ENS name on Base and other L2 chains via the ENS Reverse Registrar. A primary name creates a bi-directional link: Forward: name.eth → 0x1234... (set in ENS resolver) Reverse: 0x1234... → name.eth (set via this skill) Requirements Required: Transaction Signing This skill requires a way to sign and submit transactions. It looks for the bankr skill which provides wallet functionality via the Bankr API. If you don't have bankr installed: Install from: https://github...
|
92 |
| 8753 | d3k | vercel-labs/dev3000 |
d3k Commands d3k captures browser and server logs in a unified log file. Use these commands: Viewing Errors and Logs d3k errors Show recent errors (browser + server combined) d3k errors --context Show errors + user actions that preceded them d3k errors -n 20 Show last 20 errors d3k logs Show recent logs (browser + server combined) d3k logs --type browser Browser logs only d3k logs --type server Server logs only Other Commands d3k fix Deep analysis of application errors d3k fix --focus bui...
|
92 |
| 8754 | esp32-firmware-engineer | adamlipecz/esp32-firmware-engineer-skill |
ESP32 Firmware Engineer Act as a senior ESP-IDF firmware engineer focused on correctness, debuggability, and fast iteration. Work Style Start by identifying chip/board, ESP-IDF version, target behavior, reproduction steps, and available logs. State assumptions explicitly when hardware details, pin mappings, or sdkconfig values are missing. Prefer small, reviewable changes that preserve existing project structure and ESP-IDF conventions. Use ESP-IDF APIs and idioms first; avoid custom abstraction...
|
92 |
| 8755 | tiptap-editor | xiaolai/vmark |
Tiptap Editor API Patterns Overview This skill documents proper Tiptap API usage patterns for vmark development. It helps distinguish when to use Tiptap's high-level API vs direct ProseMirror access. When to Use Tiptap API Always prefer Tiptap API for: Format commands (bold, italic, underline, etc.) Block type changes (heading, paragraph, code block) List operations (bullet, ordered, toggle, indent/outdent) Table operations via Tiptap table extension Content insertion and replacement Editor stat...
|
92 |
| 8756 | paypal-integration | sickn33/antigravity-awesome-skills |
PayPal Integration Master PayPal payment integration including Express Checkout, IPN handling, recurring billing, and refund workflows. When to Use This Skill Integrating PayPal as a payment option Implementing express checkout flows Setting up recurring billing with PayPal Processing refunds and payment disputes Handling PayPal webhooks (IPN) Supporting international payments Implementing PayPal subscriptions Core Concepts 1. Payment Products PayPal Checkout One-time payments Express checko...
|
92 |
| 8757 | java-best-practices | leavesfly/jimi |
单例模式(枚举实现): ``` public enum Singleton { INSTANCE; public void doSomething() {} } ``` 工厂模式: ``` public class UserFactory { public static User createUser(String type) { return switch (type) { case "admin" -> new AdminUser(); case "guest" -> new GuestUser(); default -> new RegularUser(); }; } } ``` Builder 模式: ``` User user = User.builder() .name("张三") .age(25) .build(); ``` Stream API ``` List<String> names ...
|
92 |
| 8758 | multi-cloud-architecture | sickn33/antigravity-awesome-skills |
Multi-Cloud Architecture Decision framework and patterns for architecting applications across AWS, Azure, and GCP. Purpose Design cloud-agnostic architectures and make informed decisions about service selection across cloud providers. When to Use Design multi-cloud strategies Migrate between cloud providers Select cloud services for specific workloads Implement cloud-agnostic architectures Optimize costs across providers Cloud Service Comparison Compute Services AWS Azure GCP Use Case EC2 Vi...
|
92 |
| 8759 | ai-models | alinaqi/claude-bootstrap |
AI Models Reference Skill Load with: base.md + llm-patterns.md Last Updated: December 2025 Philosophy Use the right model for the job. Bigger isn't always better - match model capabilities to task requirements. Consider cost, latency, and accuracy tradeoffs. Model Selection Matrix Task Recommended Why Complex reasoning Claude Opus 4.5, o3, Gemini 3 Pro Highest accuracy Fast chat/completion Claude Haiku, GPT-4.1 mini, Gemini Flash Low latency, cheap Code generation Claude Sonnet 4.5, Codestr...
|
92 |
| 8760 | code-visualizer | rysweet/amplihack |
Code Visualizer Skill Purpose Automatically generate and maintain visual code flow diagrams. This skill analyzes Python module structure, detects import relationships, and generates mermaid diagrams. It also monitors for staleness when code changes but diagrams don't. Philosophy Alignment This skill embodies amplihack's core philosophy: Ruthless Simplicity Single responsibility: Visualize code structure - nothing more Minimal dependencies: Uses only Python AST for analysis, delegates diagram...
|
92 |
| 8761 | meta-cognitive-reasoning | 89jobrien/steve |
This skill provides disciplined reasoning frameworks for avoiding cognitive failures in analysis, reviews, and decision-making. It enforces evidence-based conclusions, multiple hypothesis generation, and systematic verification. When to Use This Skill - Before making claims about code, systems, or versions - When conducting code reviews or architectural assessments - When debugging issues with multiple possible causes - When encountering unfamiliar patterns or versions - When making recom...
|
92 |
| 8762 | cli | tambo-ai/tambo |
Tambo CLI Agent-friendly CLI for project setup and component management. Quick Start npx tambo init --api-key = sk_ .. . Initialize with API key npx tambo add message-thread-full --yes Add a component npx tambo create-app my-app --template = standard New app from template Non-Interactive Mode The CLI detects non-interactive environments and returns guidance instead of hanging: In CI or piped environments, this returns guidance (exit 2) instead of prompting npx tambo init Error: Project name...
|
92 |
| 8763 | official-document-writing | kagurananaga/official-document-writing-skill |
公文写作技能 本技能提供党政机关公文写作的完整指南,涵盖格式规范、常用模板、写作技巧和质量检查,确保公文格式正确、语言规范、结构清晰。 技能概览 当用户使用本技能时,将会: 查阅GB/T 9704-2012《党政机关公文格式》国家标准 根据公文文种选择合适的模板 参考语言规范和写作技巧 使用质量检查清单核实公文质量 目录导航 技能使用场景 核心工作流程 格式规范指南 常用公文模板 语言写作规范 质量检查清单 参考资料 技能使用场景 本技能适用于处理以下公文写作需求: 1. 撰写新公文 当用户需要新写一份公文时,协助选择文种、提供模板、指导写作。 操作流程 : 了解公文用途和背景 确定公文文种(请示、通知、函、总结、纪要等) 提供相应模板 指导填写关键内容 检查格式和语言规范 2. 修改完善公文 当用户已有公文初稿,需要修改完善时,提供修改建议。 操作流程 : 通读原文,了解基本内容 对照检查清单检查问题 指出格式、语言、逻辑问题 提供修改建议 3. 检查公文格式规范 当用户已完成公文,需要检查是否符合GB/T 9704-2012标准。 操作流程 : 使用质量检查清单逐项核对 检查字体、...
|
92 |
| 8764 | cli-design | joelhooks/joelclaw |
Agent-First CLI Design CLIs in this system are agent-first, human-distant-second . Every command returns structured JSON that an agent can parse, act on, and follow. Humans are welcome to pipe through jq . Core Principles 1. JSON always Every command returns JSON. No plain text. No tables. No color codes. Agents parse JSON; they don't parse prose. This is the ONLY output format joelclaw status → { "ok": true, "command": "joelclaw status", "result": {...}, "next_actions": [...] } No --json flag...
|
92 |
| 8765 | esbuild-bundler | mindrally/skills |
esbuild Bundler You are an expert in esbuild, the extremely fast JavaScript and TypeScript bundler written in Go. Follow these guidelines when working with esbuild configurations. Core Principles esbuild is 10-100x faster than traditional bundlers Zero configuration needed for most use cases Native TypeScript and JSX support without additional setup Focus on speed while maintaining code quality Written in Go for native performance Project Structure project/ ├── src/ │ ├── index.ts ...
|
92 |
| 8766 | code-comments | petekp/claude-code-setup |
Write documentation that lives with the code it describes. Plain language. No jargon. Explain the *why*, not the *what*. Core Philosophy Co-location wins. Documentation in separate files drifts out of sync. Comments next to code stay accurate because they're updated together. Write for three audiences: - Future you, six months from now - Teammates reading unfamiliar code - AI assistants (Claude, Copilot) who see one file at a time The "why" test: Before writing a comment, ask: "Does this...
|
92 |
| 8767 | internal-comms | aiskillstore/marketplace |
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
|
92 |
| 8768 | jadx | brownfinesecurity/iothackbot |
Jadx - Android APK Decompiler You are helping the user decompile Android APK files using jadx to convert DEX bytecode into readable Java source code for security analysis, vulnerability discovery, and understanding app internals. Tool Overview Jadx is a dex to Java decompiler that produces clean, readable Java source code from Android APK files. Unlike apktool (which produces smali), jadx generates actual Java code that's much easier to read and analyze. It's essential for: Converting DEX byteco...
|
92 |
| 8769 | launchdarkly-flag-create | launchdarkly/agent-skills |
LaunchDarkly Flag Create & Configure You're using a skill that will guide you through introducing a new feature flag into a codebase. Your job is to explore how flags are already used in this codebase, create the flag in LaunchDarkly in a way that fits, add the evaluation code matching existing patterns, and verify everything is wired up correctly. Prerequisites This skill requires the remotely hosted LaunchDarkly MCP server to be configured in your environment. Required MCP tools: create-flag —...
|
92 |
| 8770 | spring-boot-project-creator | giuseppe-trisciuoglio/developer-kit |
Spring Boot Project Creator Overview Generates a fully configured Spring Boot project from scratch using the Spring Initializr API. The skill walks the user through selecting project parameters, choosing an architecture style (DDD or Layered), configuring data stores, and setting up Docker Compose for local development. The result is a build-ready project with standardized structure, dependency management, and configuration. When to Use Bootstrap a new Spring Boot 3.x or 4.x project with a stand...
|
92 |
| 8771 | clean-architecture-php | giuseppe-trisciuoglio/developer-kit |
Clean Architecture, Hexagonal Architecture & DDD for PHP/Symfony Overview This skill provides guidance for implementing Clean Architecture, Hexagonal Architecture (Ports & Adapters), and Domain-Driven Design patterns in PHP 8.3+ applications using Symfony 7.x. It ensures clear separation of concerns, framework-independent business logic, and highly testable code through layered architecture with inward-only dependencies. When to Use Architecting new enterprise PHP applications with Symfony 7.x R...
|
92 |
| 8772 | toutiao-news-trends | wuchubuzai2018/expert-skills-hub |
今日头条新闻热榜 技能概述 此技能用于抓取今日头条 PC 端热榜(hot-board)数据,包括: 热点标题 热度值(HotValue) 详情跳转链接(去除冗余查询参数,便于分享) 封面图(如有) 标签(如“热门事件”等) 数据来源:今日头条 ( www.toutiao.com ) 获取热榜 获取热榜(默认 50 条,按榜单顺序返回): node scripts/toutiao.js hot 获取热榜前 N 条: node scripts/toutiao.js hot 10 返回数据字段说明 字段 类型 说明 rank number 榜单排名(从 1 开始) title string 热点标题 popularity number 热度值(HotValue,已转为数字;解析失败时为 0) link string 热点详情链接(已清理 query/hash) cover string | null 封面图 URL(如有) label string | null 标签/标识(如有) clusterId string 聚合 ID(字符串化) categories string[] 兴趣分类(如...
|
92 |
| 8773 | fal-image-edit | sickn33/antigravity-awesome-skills |
fal.ai Image Edit Edit images using AI: style transfer, object removal, background changes, and more. How It Works User provides image URL and editing instructions Script selects appropriate model Sends request to fal.ai API Returns edited image URL Finding Models To discover the best and latest image editing models, use the search API: Search for image editing models bash /mnt/skills/user/fal-generate/scripts/search-models.sh --category "image-to-image" Search for specific editing capabilitie...
|
92 |
| 8774 | email-template-generator | onewave-ai/claude-skills |
Email Template Generator Generate professional, effective email templates for any business scenario. Instructions When a user requests an email template or needs help writing business emails: Identify Email Type: Sales/Cold outreach Customer support response Follow-up email Apology/service recovery Internal team communication Meeting request Thank you note Rejection/decline Gather Context: What is the purpose of this email? Who is the recipient (role, relationship)? What action do you wan...
|
92 |
| 8775 | framework-migration-deps-upgrade | sickn33/antigravity-awesome-skills |
Dependency Upgrade Strategy You are a dependency management expert specializing in safe, incremental upgrades of project dependencies. Plan and execute dependency updates with minimal risk, proper testing, and clear migration paths for breaking changes. Use this skill when Working on dependency upgrade strategy tasks or workflows Needing guidance, best practices, or checklists for dependency upgrade strategy Do not use this skill when The task is unrelated to dependency upgrade strategy You need...
|
92 |
| 8776 | bun-test | daleseo/bun-skills |
Bun Test Configuration Set up Bun's built-in test runner with Jest-compatible APIs and significantly faster execution (3-10x faster than Jest). Quick Reference For detailed patterns, see: Jest Migration: jest-migration.md - Complete Jest to Bun migration guide Mocking: mocking.md - Mock functions, spies, module mocking Examples: examples.md - Test patterns for APIs, databases, async code Core Workflow 1. Check Prerequisites Verify Bun installation bun --version Check if project exists ls ...
|
92 |
| 8777 | ollama | rawveg/skillsforge-marketplace |
Comprehensive assistance with Ollama development - the local AI model runtime for running and interacting with large language models programmatically. When to Use This Skill This skill should be triggered when: - Running local AI models with Ollama - Building applications that interact with Ollama's API - Implementing chat completions, embeddings, or streaming responses - Setting up Ollama authentication or cloud models - Configuring Ollama server (environment variables, ports, proxies) ...
|
92 |
| 8778 | tonejs | plyght/tonejs-skill |
Tone.js Skill Build interactive music applications in the browser using the Web Audio API through Tone.js's high-level abstractions. When to Use This Skill Use Tone.js when: Creating synthesizers, samplers, or musical instruments Building step sequencers, drum machines, or DAWs Adding sound effects or music to games Implementing audio visualizations synchronized to sound Processing audio in real-time with effects Scheduling musical events with precise timing Working with musical concepts (no...
|
92 |
| 8779 | template-skill | aiskillstore/marketplace |
Insert instructions below
|
92 |
| 8780 | pr-review | pytorch/pytorch |
PyTorch PR Review Skill Review PyTorch pull requests focusing on what CI cannot check: code quality, test coverage adequacy, security vulnerabilities, and backward compatibility. Linting, formatting, type checking, and import ordering are handled by CI. Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . Instead, ask the user what they would like to review: What would you like me to review? A PR number or URL (e.g., /pr-review 12345 ) A local branc...
|
92 |
| 8781 | test-quality-inspector | bobmatnyc/claude-mpm-skills |
Example Test Inspection Report Scenario: User Registration Feature Engineer's Test Suite test_user_registration.py def test_user_creation(): """Test user creation""" user = create_user("test@example.com", "password123") assert user def test_login(): """Test login""" user = create_user("test@example.com", "password123") result = login("test@example.com", "password123") assert result def test_duplicate_email(): """Test duplicate email""" create_user("test@ex...
|
92 |
| 8782 | api designer | daffy0208/ai-dev-standards |
API Designer Design robust, scalable, and developer-friendly APIs. Core Principles 1. Developer Experience First Clear, predictable naming conventions Comprehensive documentation Helpful error messages Consistent patterns across endpoints 2. Design for Evolution Versioning strategy from day one Backward compatibility Deprecation process Migration guides for breaking changes 3. Security by Default Authentication and authorization Rate limiting and throttling Input validation and sanitization HTTP...
|
92 |
| 8783 | capacitor-splash-screen | cap-go/capgo-skills |
Splash Screen in Capacitor Configure and customize splash screens for iOS and Android. When to Use This Skill User wants to customize splash screen User needs splash screen assets User wants animated splash User has splash screen issues Quick Start Install Plugin bun add @capacitor/splash-screen bunx cap sync Basic Configuration // capacitor.config.ts import type { CapacitorConfig } from '@capacitor/cli' ; const config : CapacitorConfig = { plugins : { SplashScreen : { launchShowDuration : 2000 ...
|
92 |
| 8784 | zapper | bankrbot/openclaw-skills |
No SKILL.md available for this skill. View on GitHub
|
92 |
| 8785 | ln-520-test-planner | levnikolaevich/claude-code-skills |
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: Story Resolution Chain. Status filter: To Review Test Planning Orchestrator Coordinates the complete test planning pipeline for a Story by delegating to specialized workers. Purpose & Scope Orchestrate test plann...
|
92 |
| 8786 | strapi-expert | ayhid/claude-skill-strapi-expert |
Strapi v5 Expert You are an expert Strapi v5 developer specializing in plugin development, custom APIs, and CMS architecture. Your mission is to write production-grade Strapi v5 code following official conventions and best practices. Core Mandate: Document Service API First In Strapi v5, always use the Document Service API ( strapi.documents ) for all data operations. The Entity Service API from v4 is deprecated. Document Service vs Entity Service Operation Document Service (v5) Entity Service (...
|
92 |
| 8787 | videocut-subtitle | zrt-ai-lab/opencode-skills |
字幕 转录 → 纠错 → 审核 → 匹配 → 烧录 流程 1. 转录视频(Whisper) ↓ 2. 词典纠错 + 分句 ↓ 3. 输出字幕稿(纯文本,一句一行) ↓ 【用户审核修改】 ↓ 4. 用户给回修改后的文本 ↓ 5. 我匹配时间戳 → 生成 SRT ↓ 6. 烧录字幕(FFmpeg) 转录 使用 OpenAI Whisper 模型进行语音转文字: whisper video.mp4 --model medium --language zh --output_format json 模型 用途 medium 默认,平衡速度与准确率 large-v3 高精度,较慢 输出 JSON 包含逐词时间戳,用于后续 SRT 生成。 字幕规范 规则 说明 一屏一行 不换行,不堆叠 ≤15字/行 超过15字必须拆分(4:3竖屏) 句尾无标点 你好 不是 你好。 句中保留标点 先点这里,再点那里 词典纠错 读取 词典.txt ,每行一个正确写法: skills Claude iPhone 我自动识别变体: claude → Claude 字幕稿格式 我给用户的 (纯文本,≤15字/行): 今天给...
|
92 |
| 8788 | ln-003-push-all | levnikolaevich/claude-code-skills |
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Push All (Standalone Utility) Type: Standalone Utility Category: 0XX Shared Commits and pushes ALL current changes (staged, unstaged, untracked) to the remote repository in a single operation. When to Use This Skill Quick push of all accumulated changes without manual staging End-of-session commit when all changes are ready...
|
92 |
| 8789 | ln-510-quality-coordinator | levnikolaevich/claude-code-skills |
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Quality Coordinator Sequential coordinator for code quality pipeline. Invokes workers (511 -> 512 -> 514), runs inline agent review in parallel with Phases 5-7, merges all results, and returns quality_verdict. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: St...
|
92 |
| 8790 | fetching-dbt-docs | dbt-labs/dbt-agent-skills |
dbt docs have LLM-friendly URLs. Always append `.md` to get clean markdown instead of HTML. URL Pattern | `https://docs.getdbt.com/docs/dbt-cloud-apis/service-tokens` | `https://docs.getdbt.com/docs/dbt-cloud-apis/service-tokens.md` | `https://docs.getdbt.com/reference/commands/run` | `https://docs.getdbt.com/reference/commands/run.md` Quick Reference | Single page | Add `.md` to any docs URL | Fetch specific documentation | Page index | `https://docs.getdbt.com/llms.txt` | Find...
|
92 |
| 8791 | paper-audit | bahayonghang/academic-writing-skills |
Paper Audit Skill Unified academic paper auditing across formats and languages. Steps Parse the paper path and mode from $ARGUMENTS . If missing, confirm the target .tex , .typ , or .pdf file. Review evaluation criteria in $SKILL_DIR/references/REVIEW_CRITERIA.md and $SKILL_DIR/references/CHECKLIST.md . Run the orchestrator: python $SKILL_DIR/scripts/audit.py $ARGUMENTS . Present the MD report directly to the user. Distinguish between automated findings and LLM-judgment scores. If in review mode...
|
92 |
| 8792 | whatsapp-messaging | gokapso/agent-skills |
WhatsApp Messaging When to use Use this skill when working with WhatsApp messaging via Kapso: sending messages, creating/managing templates, uploading media, or reading inbox history. Setup Env vars: KAPSO_API_BASE_URL (host only, no /platform/v1) KAPSO_API_KEY PROJECT_ID KAPSO_META_GRAPH_VERSION (optional, default v24.0) Discover IDs first Two Meta IDs are needed for different operations: ID Used for How to discover business_account_id (WABA) Template CRUD node scripts/list-platform-phone...
|
92 |
| 8793 | creative intelligence | aj-geddes/claude-code-bmad-skills |
Creative Intelligence Role: Creative Intelligence System specialist Function: Facilitate structured brainstorming, conduct research, generate creative solutions Responsibilities Lead brainstorming sessions using proven techniques Conduct market and competitive research Generate creative solutions to complex problems Facilitate idea generation and refinement Document research findings and insights Support innovation across all BMAD phases Core Principles Structured Creativity - Use proven framewo...
|
92 |
| 8794 | nango-function-builder | nangohq/skills |
Nango Function Builder Build deployable Nango functions (actions and syncs) with repeatable patterns and validation steps. When to use User wants to build or modify a Nango function User wants to build an action in Nango User wants to build a sync in Nango Useful Nango docs (quick links) Functions runtime SDK reference: https://nango.dev/docs/reference/functions Implement an action: https://nango.dev/docs/implementation-guides/use-cases/actions/implement-an-action Implement a sync: https://nango...
|
92 |
| 8795 | competency-builder | jwynia/agent-skills |
Competency Builder Skill Build and operate competency frameworks that produce capability—not just completion. Diagnose where competency development is stuck and guide the next step. Core Principle Competencies are observable capabilities, not knowledge states. If you can't watch someone demonstrate it, it's not a competency. Diagnostic States CF0: No Framework Symptoms: Have training content but no competency structure. People complete training but can't apply it. Same questions keep gettin...
|
92 |
| 8796 | conductor-validator | sickn33/antigravity-awesome-skills |
Check if conductor directory exists ls -la conductor/ Find all track directories ls -la conductor/tracks/ Check for required files ls conductor/index.md conductor/product.md conductor/tech-stack.md conductor/workflow.md conductor/tracks.md Use this skill when - Working on check if conductor directory exists tasks or workflows - Needing guidance, best practices, or checklists for check if conductor directory exists Do not use this skill when - The task is unrelated to check if conductor directo...
|
92 |
| 8797 | marketplace-publishing | aaronontheweb/dotnet-skills |
Marketplace Publishing Workflow This skill documents how to publish skills and agents to the dotnet-skills Claude Code marketplace. Repository Structure dotnet-skills/ ├── .claude-plugin/ │ ├── marketplace.json Marketplace catalog │ └── plugin.json Plugin metadata + skill/agent registry ├── .github/workflows/ │ └── release.yml Release automation ├── skills/ │ ├── akka/ Akka.NET skills │ │ ├── best-practices/SKILL.md │ │ ├── testing-pat...
|
92 |
| 8798 | agent-organizer | 404kidwiz/claude-supercode-skills |
Agent Organizer Purpose Provides expertise in multi-agent system architecture, coordination patterns, and autonomous workflow design. Handles agent decomposition, communication protocols, and collaboration strategies for complex AI systems. When to Use Designing multi-agent architectures or agent teams Implementing agent-to-agent communication protocols Building hierarchical or swarm-based agent systems Orchestrating autonomous workflows across agents Debugging agent coordination failures Scal...
|
92 |
| 8799 | firstprinciples | danielmiessler/personal_ai_infrastructure |
Customization Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/FirstPrinciples/ 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. FirstPrinciples Skill Foundational reasoning methodology based on Elon Musk's physics-based thinking framework. Deconstructs problems to fundamental truths rather than ...
|
92 |
| 8800 | react-nextjs-development | sickn33/antigravity-awesome-skills |
React/Next.js Development Workflow Overview Specialized workflow for building React and Next.js 14+ applications with modern patterns including App Router, Server Components, TypeScript, and Tailwind CSS. When to Use This Workflow Use this workflow when: Building new React applications Creating Next.js 14+ projects with App Router Implementing Server Components Setting up TypeScript with React Styling with Tailwind CSS Building full-stack Next.js applications Workflow Phases Phase 1: Project Set...
|
92 |