███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 10001 | openwork-docker-chrome-mcp | different-ai/openwork |
Quick Usage (Already Configured) 1) Start the dev stack (Docker) Run from the OpenWork repo root: packaging/docker/dev-up.sh This prints: Web UI URL ( http://localhost :<WEB_PORT>) OpenWork server URL ( http://localhost :<OPENWORK_PORT>) Token file path ( tmp/.dev-env-<id> ) containing OPENWORK_TOKEN + OPENWORK_HOST_TOKEN A docker compose ... down command that stops this stack 2) Verify a real UI flow (Chrome MCP) Minimum gate: Open the printed Web UI URL. Navigate to the session/chat surface (t...
|
78 |
| 10002 | svelte | bobmatnyc/claude-mpm-skills |
Svelte Guidelines $derived Value Mapping: Use satisfies Record , Not Ternaries When a $derived expression maps a finite union to output values, use a satisfies Record lookup. Never use nested ternaries. Never use $derived.by() with a switch just to map values. <!-- Bad: nested ternary in $derived --> <!-- Bad: $derived.by with switch for a pure value lookup --> <!-- Good: $derived with satisfies Record --> Why satisfies Record wins: Compile-time exhaustiveness: add a value to the union and Ty...
|
78 |
| 10003 | monorepo-tamagui | mindrally/skills |
Monorepo using Tamagui Expert developer guidelines for building cross-platform applications with TypeScript, React, Next.js, Expo, Tamagui, Supabase, Zod, Turbo, i18next, Zustand, TanStack React Query, Solito, and Stripe. Code Style and Structure Write concise TypeScript using functional patterns Use descriptive variable names with auxiliary verbs like isLoading Structure files with exported components, helpers, and types using named exports TypeScript and Validation Prefer interfaces over typ...
|
78 |
| 10004 | nemo-evaluator-sdk | davila7/claude-code-templates |
NeMo Evaluator SDK evaluates LLMs across 100+ benchmarks from 18+ harnesses using containerized, reproducible evaluation with multi-backend execution (local Docker, Slurm HPC, Lepton cloud). Installation: ``` pip install nemo-evaluator-launcher ``` Set API key and run evaluation: ``` export NGC_API_KEY=nvapi-your-key-here Create minimal config cat > config.yaml << 'EOF' defaults: - execution: local - deployment: none - _self_ execution: output_dir: ./results target: api_endpoi...
|
78 |
| 10005 | nextjs-15 | prowler-cloud/prowler |
App Router File Conventions app/ ├── layout.tsx Root layout (required) ├── page.tsx Home page (/) ├── loading.tsx Loading UI (Suspense) ├── error.tsx Error boundary ├── not-found.tsx 404 page ├── (auth)/ Route group (no URL impact) │ ├── login/page.tsx /login │ └── signup/page.tsx /signup ├── api/ │ └── route.ts API handler └── _components/ Private folder (not routed) Server Components (Default) // No directi...
|
78 |
| 10006 | tailwind-capacitor | cap-go/capgo-skills |
Tailwind CSS for Capacitor Apps Build beautiful mobile apps with Tailwind CSS and Capacitor. When to Use This Skill User is using Tailwind in Capacitor app User asks about mobile styling User needs responsive mobile design User wants dark mode with Tailwind User needs safe area handling Getting Started Installation bun add -D tailwindcss postcss autoprefixer bunx tailwindcss init -p Configuration // tailwind.config.js / @type { import ( 'tailwindcss' ) . Config } */ export default { content : [ ...
|
78 |
| 10007 | headlessui | bobmatnyc/claude-mpm-skills |
Headless UI - Accessible Component Primitives Overview Headless UI provides completely unstyled, fully accessible UI components designed to integrate beautifully with Tailwind CSS. Built by the Tailwind Labs team, it offers production-ready accessibility without imposing design decisions. Key Features: Fully unstyled - bring your own styles Complete keyboard navigation Screen reader tested Focus management ARIA attributes handled automatically TypeScript support React 18 and Vue 3 compatible ...
|
78 |
| 10008 | llamaindex-development | mindrally/skills |
LlamaIndex Development You are an expert in LlamaIndex for building RAG (Retrieval-Augmented Generation) applications, data indexing, and LLM-powered applications with Python. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes where possible Prioritize code quality, maintainability, and performance Use descriptive variable names that reflect their purpose Follow PEP 8 style guidelines Code Organization Director...
|
78 |
| 10009 | tailwindcss-performance | josiahsiegel/claude-plugin-marketplace |
Tailwind CSS Performance Optimization v4 Performance Improvements Tailwind CSS v4 features a completely rewritten engine in Rust: Metric v3 v4 Full builds Baseline Up to 5x faster Incremental builds Milliseconds Microseconds (100x+) Engine JavaScript Rust JIT (Just-In-Time) Compilation How JIT Works JIT generates styles on-demand as classes are discovered in your files: Scans source files for class names Generates only the CSS you use Produces minimal, optimized output v4: Always JIT Unlike...
|
78 |
| 10010 | content-brief-generator | jamesrochabrun/skills |
Content Brief Generator A comprehensive skill for creating detailed content briefs that guide writers, ensure consistency, and align content with business goals. What This Skill Does Helps you create professional content briefs for: Blog posts and articles - Thought leadership, tutorials, how-tos Technical documentation - API docs, guides, README files Marketing copy - Landing pages, email campaigns, ads Social media content - Posts, campaigns, threads Case studies - Customer success stories...
|
78 |
| 10011 | server-actions | davepoon/buildwithclaude |
Next.js Server Actions Overview Server Actions are asynchronous functions that execute on the server. They can be called from Client and Server Components for data mutations, form submissions, and other server-side operations. Defining Server Actions In Server Components Use the 'use server' directive inside an async function: // app/page.tsx (Server Component) export default function Page ( ) { async function createPost ( formData : FormData ) { 'use server' const title = formData . get ( 'titl...
|
78 |
| 10012 | fastapi-microservices-serverless | mindrally/skills |
FastAPI Microservices Serverless You are an expert in building FastAPI microservices for serverless and cloud-native environments. Core Principles Design stateless services with Redis caching Implement API Gateway integration (Kong, AWS API Gateway) Follow serverless and cloud-native patterns Use security middleware (OAuth2, OpenTelemetry) Optimize performance with async capabilities Stateless Design Store session data in Redis or external stores Design idempotent endpoints Use environment var...
|
78 |
| 10013 | metabolic-cultures | jwynia/agent-skills |
Metabolic Cultures: Closed-Loop Society Skill You help writers develop distinct cultures for closed-loop life support systems in space. The framework explores how the physical reality of recycled air, water, and biomass creates novel social structures, beliefs, and conflicts that diverge from planetary norms. Core Principle: Matter as Identity In closed-loop systems, the distinction between self and community dissolves at the molecular level. Within months, individuals literally become their...
|
78 |
| 10014 | explore-data | anthropics/knowledge-work-plugins |
/explore-data - Profile and Explore a Dataset If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Generate a comprehensive data profile for a table or uploaded file. Understand its shape, quality, and patterns before diving into analysis. Usage /explore-data <table_name or file> Workflow 1. Access the Data If a data warehouse MCP server is connected: Resolve the table name (handle schema prefixes, suggest matches if ambiguous) Query table metadata: ...
|
78 |
| 10015 | dockerfile-generator | jeremylongshore/claude-code-plugins-plus-skills |
Dockerfile Generator Purpose This skill provides automated assistance for dockerfile generator tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "dockerfile generator" in your request Ask about dockerfile generator patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for dockerfile generator...
|
78 |
| 10016 | security-testing-patterns | nickcrew/claude-ctx-plugin |
Security Testing Patterns Expert guidance for implementing comprehensive security testing strategies including static analysis, dynamic testing, penetration testing, and vulnerability assessment. When to Use This Skill Implementing security testing pipelines in CI/CD Conducting security audits and vulnerability assessments Validating application security controls and defenses Performing penetration testing and security reviews Configuring SAST/DAST tools and interpreting results Testing authen...
|
78 |
| 10017 | remotion-ads | maartenlouis/remotion-ads |
Remotion Ads - Instagram Video & Carousel Creation Complete toolkit for creating professional Instagram Reels and Carousel ads with Remotion. Quick Setup Before creating any videos, configure your brand: Copy rules/design-system-template.md to rules/design-system.md Fill in your brand colors, fonts, and asset paths Generate backgrounds: node scripts/generate-backgrounds.js Scan assets: node scripts/scan-instagram-assets.js See rules/setup.md for complete project setup. Rule Files Core Docu...
|
78 |
| 10018 | strategic-narrative | pmprompt/claude-plugin-product-management |
Domain Context This skill implements a proven product management framework. The approach combines best practices from industry leaders and is designed for practical application in day-to-day PM work. Input Requirements Context about your product, feature, or problem Relevant data, research, or constraints (recommended but optional) Clear articulation of what you're trying to achieve Strategic Narrative What It Is Strategic Narrative is a framework for crafting the one story that drives everythin...
|
78 |
| 10019 | release | m1heng/clawdbot-feishu |
Release Skill Purpose: Take a project from "code is ready" to "tagged and ready to push." Pre-flight validation, changelog from git history, version bumps across package files, release commit, annotated tag, and curated release notes. Everything is local and reversible. Publishing (including the GitHub Release page) is CI's job. Quick Start /release 1.7 .0 full release: changelog + bump + commit + tag /release 1.7 .0 --dry-run show what would happen, change nothing /release --check readiness ...
|
78 |
| 10020 | mcp-builder | vudovn/antigravity-kit |
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint coverag...
|
78 |
| 10021 | growth-product-manager | ncklrs/startup-os-skills |
Growth Product Manager Strategic growth product management expertise for SaaS companies — from growth loops and activation to retention, monetization, and PLG strategies. Philosophy Growth isn't about hacks. It's about building compounding systems that create sustainable, defensible growth. The best growth product strategies: Systems over tactics — Growth loops compound; growth hacks don't Activation is everything — If users don't activate, nothing else matters Retention is growth — Churn kills;...
|
78 |
| 10022 | devops | mindrally/skills |
DevOps Skill Deploy and manage cloud infrastructure across Cloudflare, Docker, Google Cloud, and Kubernetes. When to Use Deploy serverless apps to Cloudflare Workers/Pages Containerize apps with Docker, Docker Compose Manage GCP with gcloud CLI (Cloud Run, GKE, Cloud SQL) Kubernetes cluster management (kubectl, Helm) GitOps workflows (Argo CD, Flux) CI/CD pipelines, multi-region deployments Security audits, RBAC, network policies Platform Selection Need Choose Sub-50ms latency globally Cloudfl...
|
78 |
| 10023 | stakeholder-update-generator | pmprompt/claude-plugin-product-management |
Domain Context This skill implements a proven product management framework. The approach combines best practices from industry leaders and is designed for practical application in day-to-day PM work. Input Requirements Context about your product, feature, or problem Relevant data, research, or constraints (recommended but optional) Clear articulation of what you're trying to achieve Stakeholder Update Generator When to Use Shipping a new feature or product update Need to communicate progress to ...
|
78 |
| 10024 | alicloud-skill-creator | cinience/alicloud-skills |
Category: tool Alibaba Cloud Skill Creator Repository-specific skill engineering workflow for alicloud-skills . Use this skill when Creating a new skill under skills/ . Importing an external skill and adapting it to this repository. Updating skill trigger quality ( name and description in frontmatter). Adding or fixing smoke tests under tests/ . Running structured benchmark loops before merge. Do not use this skill when The user only needs to execute an existing product skill. The task is purely...
|
78 |
| 10025 | base | alinaqi/claude-bootstrap |
No SKILL.md available for this skill. View on GitHub
|
78 |
| 10026 | java-best-practices | clostaunau/holiday-card |
单例模式(枚举实现): ``` 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 ...
|
78 |
| 10027 | css-native | dylantarre/animation-principles |
CSS Native Animation Principles Implement all 12 Disney animation principles using CSS animations, transitions, and transforms. 1. Squash and Stretch @keyframes squash-stretch { 0%, 100% { transform: scaleX(1) scaleY(1); } 50% { transform: scaleX(1.2) scaleY(0.8); } } .ball { animation: squash-stretch 0.3s ease-in-out; } 2. Anticipation @keyframes anticipate-jump { 0% { transform: translateY(0); } 20% { transform: translateY(10px) scaleY(0.9); } /* wind up */ 100% { transform: trans...
|
78 |
| 10028 | sveltekit | mindrally/skills |
SvelteKit - Full-Stack Svelte Framework Overview SvelteKit is the official full-stack framework for Svelte, providing file-based routing, server-side rendering (SSR), static site generation (SSG), form handling with progressive enhancement, and deployment adapters for any platform. Key Features: File-based routing: Automatic routes from src/routes/ directory structure Load functions: Type-safe data fetching (+page.ts, +page.server.ts) Form actions: Native form handling with progressive enhanc...
|
78 |
| 10029 | ads-creative | agricidaniel/claude-ads |
Cross-Platform Creative Quality Audit Process Collect creative assets or performance data from active platforms Read ads/references/platform-specs.md for creative specifications Read ads/references/benchmarks.md for CTR/engagement benchmarks Read ads/references/scoring-system.md for weighted scoring algorithm Evaluate creative quality per platform Assess cross-platform creative consistency Generate production priority recommendations Per-Platform Assessment Google Ads Creative RSA: ≥8 unique hea...
|
78 |
| 10030 | fastapi-local-dev | bobmatnyc/claude-mpm-skills |
FastAPI Local Dev Dev: uvicorn app.main:app --reload Imports: run from repo root; use python -m uvicorn ... or PYTHONPATH=. WSL: WATCHFILES_FORCE_POLLING=true if reload misses changes Prod: gunicorn app.main:app -k uvicorn.workers.UvicornWorker -w <n> --bind :8000 Anti-patterns: --reload --workers > 1 PM2 watch: true for Python References: references/.
|
78 |
| 10031 | laravel-tdd | affaan-m/everything-claude-code |
Test-Driven Development for Laravel Overview Write the test first. Watch it fail. Write minimal code to pass. This skill adapts TDD principles specifically for Laravel applications using Pest PHP, Laravel's testing features, and framework-specific patterns. When to Use Always for Laravel: New features (controllers, models, services) Bug fixes API endpoints Database migrations and models Form validation Authorization policies Queue jobs Artisan commands Middleware Exceptions (ask your human...
|
78 |
| 10032 | seo-audit | anthropics/knowledge-work-plugins |
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 ...
|
78 |
| 10033 | monday-automation | composiohq/awesome-claude-skills |
Monday.com Automation via Rube MCP Automate Monday.com work management workflows including board creation, item management, column value updates, group organization, subitems, and update/comment threads through Composio's Monday toolkit. Toolkit docs : composio.dev/toolkits/monday Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Monday.com connection via RUBE_MANAGE_CONNECTIONS with toolkit monday Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup ...
|
78 |
| 10034 | social-selling-content-generator | onewave-ai/claude-skills |
Social Selling Content Generator Turn your LinkedIn into a lead generation machine with AI-powered content. Instructions You are an expert social selling strategist specializing in LinkedIn content that attracts B2B prospects. Your mission is to create thought leadership content that positions the user as an authority, engages their ideal customers, and generates inbound interest. Content Strategy Content Pillars (4-5 themes): Industry Insights - Trends, predictions, analysis Problem/Solution - ...
|
78 |
| 10035 | axiom-xcode-mcp | charleswiltgen/axiom |
Xcode MCP Router You MUST use this skill for ANY Xcode MCP interaction — setup, tool usage, workflow patterns, or troubleshooting. Xcode 26.3 ships an MCP server ( xcrun mcpbridge ) that exposes 20 IDE tools to external AI clients. This router directs you to the right specialized skill. When to Use Use this router when: Setting up Xcode MCP for the first time Configuring xcrun mcpbridge for any MCP client Using any Xcode MCP tool (file ops, build, test, preview) Building, testing, or previewing ...
|
78 |
| 10036 | shadcn-setup | shipshitdev/library |
shadcn/ui Setup Sets up shadcn/ui with proper Tailwind CSS v4 configuration. This skill ensures you get the modern CSS-first setup, not the deprecated v3 approach. Purpose IMPORTANT: shadcn/ui CLI and AI assistants often generate Tailwind v3 configs by default. This skill ensures: Tailwind v4 CSS-first configuration Proper @theme block with shadcn color tokens No deprecated tailwind.config.js files Correct dependency versions When to Use Setting up a new Next.js project with shadcn/ui Adding...
|
78 |
| 10037 | work-delegator | rysweet/amplihack |
You are an expert work delegation specialist. You create rich, comprehensive delegation packages that provide coding agents with all context needed to execute work successfully. You analyze requirements, gather context, and generate clear instructions. When to Activate Activate when the user: - Wants to delegate work to a coding agent - Says "assign this to builder" or similar - Asks to create a delegation package - Needs to prepare context for an agent - Says "start work on BL-XXX" - W...
|
78 |
| 10038 | alicloud-platform-devops | cinience/alicloud-skills |
Category: service Alibaba Cloud DevOps (Yunxiao) Purpose Use Alibaba Cloud DevOps OpenAPI to support: project, repository, and pipeline inventory work item and test resource inspection release and execution status checks metadata-driven API discovery before production changes Prerequisites Configure least-privilege Alibaba Cloud credentials. Install Python SDK dependencies for local scripts: python3 -m venv .venv . .venv/bin/activate python -m pip install -U alibabacloud_devops20210625 alibabacl...
|
78 |
| 10039 | write-query | anthropics/knowledge-work-plugins |
/write-query - Write Optimized SQL If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Write a SQL query from a natural language description, optimized for your specific SQL dialect and following best practices. Usage /write-query <description of what data you need> Workflow 1. Understand the Request Parse the user's description to identify: Output columns : What fields should the result include? Filters : What conditions limit the data (time ranges...
|
78 |
| 10040 | uml-diagram-design | aaaaqwq/claude-code-skills |
UML 图表设计 功能说明 此技能专门用于 UML(统一建模语言)图表的设计和绘制,包括: 系统架构设计 类图和对象图 时序图和协作图 用例图和活动图 状态图和部署图 组件图和包图 使用场景 "设计一个电商系统的类图" "绘制用户登录的时序图" "创建系统架构图" "设计数据库 ER 图" "绘制业务流程图" "创建用例图展示系统功能" UML 图表类型 1. 类图(Class Diagram) 用于展示系统中的类、属性、方法及其关系。 @startuml class User { - id: Long - username: String - email: String - password: String + login(): boolean + logout(): void + updateProfile(): void } class Order { - id: Long - orderNumber: String - totalAmount: Decimal - status: OrderStatus + create...
|
78 |
| 10041 | swiftui-liquid-glass | steipete/agent-scripts |
SwiftUI Liquid Glass Overview Use this skill to build or review SwiftUI features that fully align with the iOS 26+ Liquid Glass API. Prioritize native APIs (glassEffect, GlassEffectContainer, glass button styles) and Apple design guidance. Keep usage consistent, interactive where needed, and performance aware. Workflow Decision Tree Choose the path that matches the request: 1) Review an existing feature Inspect where Liquid Glass should be used and where it should not. Verify correct modifie...
|
78 |
| 10042 | outline | sanjay3290/ai-skills |
Outline Wiki Skill Search, read, create, and manage documents in any Outline wiki instance. Works with all AI clients supporting the Agent Skills Standard. Requirements Python 3.8+ Dependencies: pip install -r requirements.txt Setup Get your API key from your Outline wiki: Go to Settings > API Tokens Create a new token with appropriate permissions Configure the environment: cp .env.example .env Edit .env with your API key Set the environment variables: export OUTLINE_API_KEY=your-api-k...
|
78 |
| 10043 | mlops-engineer | 404kidwiz/claude-supercode-skills |
Use this skill when Working on mlops engineer tasks or workflows Needing guidance, best practices, or checklists for mlops engineer Do not use this skill when The task is unrelated to mlops engineer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a...
|
78 |
| 10044 | multi-repo | rysweet/amplihack |
Coordinate atomic changes across multiple repositories when features span repo boundaries. Track dependencies, manage linked PRs, and detect breaking changes before they propagate. When to Use This Skill USE FOR: - Changes that require coordinated updates across multiple repositories - Managing repository dependency graphs - Creating linked PRs that should merge together or in sequence - Detecting breaking changes that affect dependent repositories - Microservices or monorepo-alternative...
|
78 |
| 10045 | prompt-analyzer | huangserva/skill-prompt-generator |
Prompt Analyzer - 提示词分析器 🎯 核心职责 专注于已生成Prompt的分析和洞察 ,不负责生成新Prompt。 提供以下5大功能: 查看详情 - 分析Prompt使用了哪些元素 对比分析 - 对比两个Prompt的差异 相似推荐 - 推荐相似的Prompt 元素统计 - 查询元素库统计信息 风格推荐 - 按风格推荐最佳元素组合 📋 功能1:查看Prompt详情 触发场景 用户说: "查看Prompt 5的详情" "分析一下Prompt 5用了哪些元素" "显示Prompt 5的完整信息" "Prompt 5包含什么?" SKILL处理流程 步骤1:识别意图 从用户输入中提取Prompt ID: 示例:用户说 "查看Prompt 5的详情" prompt_id = 5 步骤2:调用执行层 from prompt_analyzer import analyze_prompt_detail result = analyze_prompt_detail ( prompt_id = 5 ) 步骤3:检查结果 如果Prompt不存在: if 'error' in result...
|
78 |
| 10046 | grafana-platform-dashboard | boshu2/agentops |
Grafana Platform Dashboard Design platform operations dashboards so operators see tenant-impacting risk first, then drill into service-specific health without overload. Quick Start Use this skill when the user asks for platform dashboard updates and reliability checks. Confirm dashboard target: oc --context < ctx > get grafanadashboard -A | rg -i '<dashboard-name-or-theme>' Export dashboard and JSON: skills/grafana-platform-dashboard/scripts/grafanadashboard_roundtrip.sh export \ --context < ctx...
|
78 |
| 10047 | twitter-automation | sickn33/antigravity-awesome-skills |
Twitter/X Automation Automate Twitter/X via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Post a tweet infsh app run x/post-tweet --input '{"text": "Hello from inference.sh!"}' Available Apps App App ID Description Post Tweet x/post-tweet Post text tweets Create Post x/post-create Post with media Like Post x/post-like Like a tweet Retweet x/post-retweet Retweet a post Delete Post x/pos...
|
78 |
| 10048 | linux-shell-scripting | sickn33/antigravity-awesome-skills |
Linux Production Shell Scripts Purpose Provide production-ready shell script templates for common Linux system administration tasks including backups, monitoring, user management, log analysis, and automation. These scripts serve as building blocks for security operations and penetration testing environments. Prerequisites Required Environment Linux/Unix system (bash shell) Appropriate permissions for tasks Required utilities installed (rsync, openssl, etc.) Required Knowledge Basic bash scripti...
|
78 |
| 10049 | screenshot-analyzer | notedit/happy-skills |
Screenshot Analyzer (Multi-Agent) Extract product features from UI screenshots using a coordinated multi-agent analysis pipeline. Core principle: Describe WHAT to build (features/interactions), NOT HOW (no tech stack). Multi-Agent Architecture This skill orchestrates 5 specialized agents for comprehensive analysis: ┌─────────────────┐ │ Coordinator │ │ (this skill) │ └────────┬────────┘ ...
|
78 |
| 10050 | sql-best-practices | mindrally/skills |
SQL Best Practices Core Principles Write clear, readable SQL with consistent formatting and meaningful aliases Prioritize query performance through proper indexing and optimization Implement security best practices to prevent SQL injection Use transactions appropriately for data integrity Document complex queries with inline comments Query Writing Standards Formatting and Style Use uppercase for SQL keywords (SELECT, FROM, WHERE, JOIN) Place each major clause on a new line for readability Use me...
|
78 |