███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 8951 | heal-skill | boshu2/agentops |
/heal-skill — Automated Skill Maintenance Purpose: Detect and auto-fix common skill hygiene issues across the skills/ directory. YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. Quick Start /heal-skill Check all skills (report only) /heal-skill --fix Auto-repair all fixable issues /heal-skill --strict Check all skills, exit 1 on findings (CI mode) /heal-skill skills/council Check a specific skill /heal-skill --fix skills/vibe Fix a specific skill What It Detects Ten checks, run in o...
|
1.2K |
| 8952 | trading-strategies | agentmc15/polymarket-trader |
Trading Strategy Development Skill Strategy Base Class from abc import ABC, abstractmethod from dataclasses import dataclass from typing import Optional from datetime import datetime from enum import Enum class SignalType(Enum): BUY = "buy" SELL = "sell" HOLD = "hold" @dataclass class Signal: type: SignalType token_id: str price: float size: float confidence: float 0-1 timestamp: datetime metadata: dict = None @dataclass class MarketState: token_i...
|
1.2K |
| 8953 | test-driven-development | sickn33/antigravity-awesome-skills |
Test-Driven Development (TDD) Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is violating the spirit of the rules. When to Use Always: New features Bug fixes Refactoring Behavior changes Exceptions (ask your human partner): Throwaway prototypes Generated code Configuration files Thinking "skip TDD just this once"? Stop. That's rationalization...
|
1.2K |
| 8954 | 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 . Show more Installs 1.3K Repository sickn33/agentic…e-skills GitHub Stars 45.1K First Seen Feb 1, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
1.2K |
| 8955 | iam-recommendations-fetcher | google/skills |
IAM Recommendations Retrieval This skill provides instructions for fetching IAM recommendations and insights from Google Cloud. It covers validating the input target scope, retrieving recommendations using MCP tools, gcloud commands, or direct API calls, and handling common API errors. Procedures 1. Validate Input Target Verify the input target scope. Check Format : Check if the target matches one of these formats: organizations/{org_id} folders/{folder_id} projects/{project_id} Show more Instal...
|
1.2K |
| 8956 | api-patterns | sickn33/antigravity-awesome-skills |
API Patterns API design principles and decision-making for 2025. Learn to THINK, not copy fixed patterns. 🎯 Selective Reading Rule Read ONLY files relevant to the request! Check the content map, find what you need. 📑 Content Map Show more Installs 27 Repository sickn33/agentic…e-skills GitHub Stars 44.8K First Seen Jul 9, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
1.2K |
| 8957 | prompt-engineering | sickn33/antigravity-awesome-skills |
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, ...
|
1.2K |
| 8958 | asc-ppp-pricing | rudrankriyam/asc-skills |
PPP pricing (per-territory pricing) Use this skill to create or update localized pricing across territories based on purchasing power parity (PPP) or your own regional pricing strategy. Prefer the current high-level flows: asc subscriptions setup and asc iap setup for parent creation and pricing, followed by version-scoped metadata commands asc subscriptions pricing ... for subscription pricing changes asc iap pricing summary and asc iap pricing schedules ... for IAP pricing changes Precondition...
|
1.2K |
| 8959 | multi-agent-brainstorming | sickn33/antigravity-awesome-skills |
Multi-Agent Brainstorming (Structured Design Review) Purpose Transform a single-agent design into a robust, review-validated design by simulating a formal peer-review process using multiple constrained agents. This skill exists to: surface hidden assumptions identify failure modes early validate non-functional constraints stress-test designs before implementation prevent idea swarm chaos This is not parallel brainstorming . It is sequential design review with enforced roles . Show more Installs ...
|
1.2K |
| 8960 | audio-transcriber | sickn33/antigravity-awesome-skills |
Purpose This skill automates audio-to-text transcription with professional Markdown output, extracting rich technical metadata (speakers, timestamps, language, file size, duration) and generating structured meeting minutes and executive summaries. It uses Faster-Whisper or Whisper with zero configuration, working universally across projects without hardcoded paths or API keys. Inspired by tools like Plaud, this skill transforms raw audio recordings into actionable documentation, making it ideal ...
|
1.2K |
| 8961 | asc-workflow | rudrankriyam/asc-skills |
asc workflow Use this skill when you need lane-style automation inside the CLI using: asc workflow validate asc workflow list asc workflow run Workflows are repo-local automation files. They run trusted shell commands, stream step output to stderr, and keep stdout as machine-readable JSON. Command discovery Always verify flags with: Show more Installs 2.1K Repository rorkai/app-stor…i-skills GitHub Stars 936 First Seen Apr 17, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
1.2K |
| 8962 | code-review-checklist | sickn33/antigravity-awesome-skills |
Code Review Checklist Overview Provide a systematic checklist for conducting thorough code reviews. This skill helps reviewers ensure code quality, catch bugs, identify security issues, and maintain consistency across the codebase. When to Use This Skill Use when reviewing pull requests Use when conducting code audits Use when establishing code review standards for a team Use when training new developers on code review practices Use when you want to ensure nothing is missed in reviews Use when c...
|
1.2K |
| 8963 | asc-subscription-localization | rudrankriyam/asc-skills |
asc subscription localization Use this skill to bulk-create or bulk-update display names and, where supported, descriptions for subscriptions, subscription groups, and in-app purchases across all App Store Connect locales. This eliminates the tedious manual process of clicking through each language in App Store Connect to set the same display name. Preconditions Auth configured ( asc auth login or ASC_* env vars). Know your app ID ( ASC_APP_ID or --app ). Subscription groups and subscriptions al...
|
1.2K |
| 8964 | sigma | sanyuan0704/code-review-expert |
Sigma Tutor Personalized 1-on-1 mastery tutor. Bloom's 2-Sigma method: diagnose, question, advance only on mastery. Usage /sigma Python decorators /sigma 量子力学 --level beginner /sigma React hooks --level intermediate --lang zh /sigma linear algebra --resume Resume previous session Arguments Argument Description <topic> Subject to learn (required, or prompted) --level <level> Starting level: beginner, intermediate, advanced (default: diagnose) --lang <code> Language override (default: follow user...
|
1.2K |
| 8965 | sf-docs | jaganpro/sf-skills |
sf-docs: Salesforce Documentation Retrieval & Grounding Expert Salesforce documentation researcher focused on official sources . This skill exists to make documentation lookup reliable when generic web search or naive page fetching fails on Salesforce's JavaScript-heavy docs experience. sf-docs is a core sf-skills capability . It should always be installed with the skill suite. Core Responsibilities Official Docs Retrieval : Find authoritative answers from Salesforce documentation first Local-Fi...
|
1.2K |
| 8966 | appwrite-typescript | appwrite/agent-skills |
Appwrite TypeScript SDK Installation Web npm install appwrite React Native npm install react-native-appwrite Node.js / Deno npm install node-appwrite Setting Up the Client Client-side (Web / React Native) Show more Installs 30 Repository appwrite/skills GitHub Stars 25 First Seen Jul 20, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
1.2K |
| 8967 | eloquent-best-practices | iserter/laravel-claude-agents |
Eloquent Best Practices Query Optimization Always Eager Load Relationships // ❌ N+1 Query Problem $posts = Post::all(); foreach ($posts as $post) { echo $post->user->name; // N additional queries } // ✅ Eager Loading $posts = Post::with('user')->get(); foreach ($posts as $post) { echo $post->user->name; // No additional queries } Select Only Needed Columns // ❌ Fetches all columns $users = User::all(); // ✅ Only needed columns $users = User::select(['id', 'name', 'email'])->get(); //...
|
1.2K |
| 8968 | extract-errors | facebook/react |
Extract Error Codes Instructions Run yarn extract-errors Report if any new errors need codes assigned Check if error codes are up to date Installs 1.3K Repository react/react GitHub Stars 247.7K First Seen Jan 24, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
1.2K |
| 8969 | pytest | bobmatnyc/claude-mpm-skills |
pytest - Professional Python Testing Overview pytest is the industry-standard Python testing framework, offering powerful features like fixtures, parametrization, markers, plugins, and seamless integration with FastAPI, Django, and Flask. It provides a simple, scalable approach to testing from unit tests to complex integration scenarios. Key Features: Fixture system for dependency injection Parametrization for data-driven tests Rich assertion introspection (no need for self.assertEqual) Plugi...
|
1.2K |
| 8970 | docs-changelog | google-gemini/gemini-cli |
Procedure: Updating Changelog for New Releases Objective To standardize the process of updating changelog files ( latest.md , preview.md , index.md ) based on automated release information. Inputs version : The release version string (e.g., v0.28.0 , v0.29.0-preview.2 ). TIME : The release timestamp (e.g., 2026-02-12T20:33:15Z ). BODY : The raw markdown release notes, containing a "What's Changed" section and a "Full Changelog" link. Guidelines for latest.md and preview.md Highlights Aim for 3-5...
|
1.2K |
| 8971 | bencium-innovative-ux-designer | bencium/bencium-claude-code-design-skill |
Innovative UX Designer Create distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. Expert UI/UX design skill that helps create unique, accessible, and thoughtfully designed interfaces. This skill emphasizes design decision collaboration, breaking away from generic patterns, and building interfaces that stand out while remaining functional and accessible. This sk...
|
1.2K |
| 8972 | code-review-graph | aradotso/trending-skills |
code-review-graph Skill by ara.so — Daily 2026 Skills collection. code-review-graph builds a persistent structural map of a codebase using Tree-sitter, stores it in a local SQLite graph, and exposes it to Claude via MCP. Instead of re-reading entire projects on every task, Claude queries the graph and reads only the files in the blast radius of a change — averaging 6.8× fewer tokens on code reviews and up to 49× on daily coding tasks in large monorepos. Installation Claude Code Plugin (recommend...
|
1.2K |
| 8973 | ralph-wiggum | fstandhartinger/ralph-wiggum |
Autonomous AI coding with spec-driven development What is Ralph Wiggum? Ralph Wiggum combines Geoffrey Huntley's iterative bash loop with spec-driven development for fully autonomous AI-assisted software development. The key insight: Fresh context each iteration. Each loop starts a new agent process with a clean context window, preventing context overflow and degradation. When to Use This Skill Use Ralph Wiggum when: - You have multiple specifications/features to implement - You want th...
|
1.2K |
| 8974 | find-skills | kimyx0207/findskill |
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...
|
1.2K |
| 8975 | chinese-writing | miantiao-me/aigc-weekly |
中文写作技能指南 这份指南旨在指导大模型生成高质量、现代风格的简体中文内容。适用于周刊、博客文章、科技资讯及评论类文章等场景。 核心原则是:简单 (Simple)、人性化 (Human)、清晰 (Clear)。 1. 核心基调与原则 (Voice & Tone) 写作不仅仅是传递信息,更是与读者建立联系。我们的声音应当是: 温暖轻松 (Warm and relaxed):像人一样说话,自然、友好,而不是冷冰冰的机器或高高在上的官僚。要有同理心。 清晰明了 (Crisp and clear):直击要点,避免废话。便于读者快速扫描和理解。 乐于助人 (Ready to lend a hand):以读者为中心,预判他们的需求,提供切实可行的帮助。 2. 通用写作建议 (General Writing Tips) 像说话一样写作:使用日常对话中的词汇。写完后大声朗读,如果听起来像是在演讲或读公文,那就改得更口语化一些。 保持简洁: 一句话只讲一个意思。 删掉无意义的修饰词(如"非常"、"极其"、"显然")。 避免冗长的从句和复杂的句式。 直奔主题:采用"倒金字塔"结构,把最重要的信息...
|
1.2K |
| 8976 | defuddle | joeseesun/defuddle-skill |
Defuddle Use Defuddle CLI to extract clean readable content from web pages. Prefer over WebFetch for standard web pages — it removes navigation, ads, and clutter, reducing token usage. If not installed: npm install -g defuddle Usage Always use --md for markdown output: defuddle parse < url > --md Save to file: defuddle parse < url > --md -o content.md Extract specific metadata: defuddle parse < url > -p title defuddle parse < url > -p description defuddle parse < url > -p domain Output formats F...
|
1.2K |
| 8977 | social-media-manager | alirezarezvani/claude-skills |
Social Media Manager You are a senior social media strategist who has grown accounts from zero to six figures across every major platform. Your goal is to help build a sustainable social media presence that drives business results — not just vanity metrics. Before Starting Check for marketing context first: If marketing-context.md exists, read it for brand voice, audience personas, and goals. Only ask for what's missing. Gather this context (ask if not provided): 1. Current State Which platforms...
|
1.2K |
| 8978 | typescript | pproenca/dot-skills |
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
|
1.2K |
| 8979 | understand-diff | lum1104/understand-anything |
/understand-diff Analyze the current code changes against the knowledge graph in the project's data directory ( .ua/knowledge-graph.json , or the legacy .understand-anything/knowledge-graph.json when that directory is present). Graph Structure Reference The knowledge graph JSON has this structure: project — {name, description, languages, frameworks, analyzedAt, gitCommitHash} nodes[] — each has {id, type, name, filePath?, summary, tags[], complexity, languageNotes?} Code node types: file, functi...
|
1.2K |
| 8980 | unreal-engine-cpp-pro | sickn33/antigravity-awesome-skills |
Unreal Engine C++ Pro This skill provides expert-level guidelines for developing with Unreal Engine 5 using C++. It focuses on writing robust, performant, and standard-compliant code. When to Use Use this skill when: Developing C++ code for Unreal Engine 5.x projects Writing Actors, Components, or UObject-derived classes Optimizing performance-critical code in Unreal Engine Debugging memory leaks or garbage collection issues Implementing Blueprint-exposed functionality Following Epic Games' codi...
|
1.2K |
| 8981 | asc-app-create-ui | rudrankriyam/asc-skills |
asc app create (UI automation) Use this skill to create a new App Store Connect app by driving the web UI. This is opt-in, local-only automation that requires the user to be signed in. Preconditions A browser automation tool is available (Playwright, Cursor browser MCP, or equivalent). User is signed in to App Store Connect (or can complete login + 2FA). The bundle ID must already be registered in the Apple Developer portal. Required inputs are known: app name (max 30 characters) bundle ID (must...
|
1.2K |
| 8982 | antv-s2-expert | antvis/chart-visualization-skills |
S2 Multi-Dimensional Cross-Analysis Table Development Assistant Role Definition You are the S2 multi-dimensional cross-analysis table development assistant, specialized in helping users develop with: @antv/s2 — Core engine @antv/s2-react — React components @antv/s2-vue — Vue components @antv/s2-react-components — React advanced analysis components @antv/s2-ssr — Server-side rendering Query Routing Rules When a user asks a question, identify their intent and refer to the corresponding reference f...
|
1.2K |
| 8983 | minimax-music-playlist | minimax-ai/skills |
MiniMax Music Playlist — Personalized Playlist Generator Scan the user's music taste, build a taste profile, generate a personalized playlist, and create an album cover. This skill is designed for both agent and direct user invocation — adapt interaction style to context. Prerequisites mmx CLI — music & image generation. Install: npm install -g mmx-cli . Auth: mmx auth login --api-key <key> . Python 3 — for scanning scripts you write on the fly (stdlib only, no pip). Audio player — mpv , ffplay ...
|
1.2K |
| 8984 | github-release | jezweb/claude-skills |
GitHub Release Sanitize and release projects to GitHub. Two-phase workflow: safety checks first, then tag and publish. Prerequisites gh CLI installed and authenticated ( gh auth status ) gitleaks installed for secrets scanning ( brew install gitleaks or download from GitHub) Git repository with a remote configured Workflow Phase 1: Sanitize Run these checks before any public release. Stop on blockers. 1. Scan for Secrets (BLOCKER) gitleaks detect --no-git --source = . --verbose If secrets found:...
|
1.2K |
| 8985 | ai-image-generator | jezweb/claude-skills |
AI Image Generator Generate images using AI APIs (Google Gemini and OpenAI GPT). This skill teaches the prompting patterns and API mechanics for producing professional images directly from Claude Code. Managed alternative : If you don't want to manage API keys, ImageBot provides a managed image generation service with album templates and brand kit support. Model Selection Choose the right model for the job: Need Model Why Scenes / stock photos Gemini 3.1 Flash Image Best depth, complexity, envir...
|
1.2K |
| 8986 | brand-designer | daffy0208/ai-dev-standards |
Brand Designer Skill I help you create cohesive brand identities, logos, and visual brand systems. What I Do Brand Identity: Logo design and variations Color palettes Typography systems Brand guidelines Visual Assets: Business cards, letterheads Social media templates Marketing materials Brand presentation decks Brand Strategy: Brand positioning Target audience definition Competitor analysis Brand voice and tone Logo Design Process Step 1: Brand Discovery Questions to Answer: What does...
|
1.2K |
| 8987 | game-designer | opusgamelabs/game-creator |
Game UI/UX Designer You are an expert game UI/UX designer specializing in browser games. You analyze games and implement visual polish, atmosphere, and player experience improvements. You think like a designer — not just about whether the game works, but whether it feels good to play. Reference Files For detailed reference, see companion files in this directory: visual-catalog.md — All visual improvement patterns: backgrounds (parallax, gradients), color palettes, juice/polish effects, particle ...
|
1.2K |
| 8988 | alphaear-stock | rkiding/awesome-finance-skills |
AlphaEar Stock Skill Overview Search A-Share/HK/US stock tickers and retrieve historical price data (OHLCV). Capabilities 1. Stock Search & Data Use scripts/stock_tools.py via StockTools . Search : search_ticker(query) Fuzzy search by code or name (e.g., "Moutai", "600519"). Returns: List of {code, name} . Get Price : get_stock_price(ticker, start_date, end_date) Returns DataFrame with OHLCV data. Dates format: "YYYY-MM-DD". Dependencies pandas , requests , akshare , yfinance scripts/database_ma...
|
1.2K |
| 8989 | data-analytics-skills-claude | aradotso/data-skills |
Data Analytics Skills for Claude Skill by ara.so — Data Skills collection. A structured library of 31 reusable AI-powered skills that turn Claude into a hands-on analytics partner. Each skill is a self-contained instruction set that works on-demand without setup, asking targeted questions to gather exactly what it needs before executing a complete analytical workflow. What This Project Does This is a skill collection , not a library you import. When you describe an analytics task, Claude automat...
|
1.2K |
| 8990 | macos-spm-app-packaging | dimillian/skills |
macOS SwiftPM App Packaging (No Xcode) Overview Bootstrap a complete SwiftPM macOS app folder, then build, package, and run it without Xcode. Use assets/templates/bootstrap/ for the starter layout and references/packaging.md + references/release.md for packaging and release details. Two-Step Workflow Bootstrap the project folder Copy assets/templates/bootstrap/ into a new repo. Rename MyApp in Package.swift, Sources/MyApp/, and version.env. Customize APP_NAME, BUNDLE_ID, and versions. Build...
|
1.2K |
| 8991 | comps-analysis | anthropics/financial-services-plugins |
Comparable Company Analysis ⚠️ CRITICAL: Data Source Priority (READ FIRST) ALWAYS follow this data source hierarchy: FIRST: Check for MCP data sources - If S&P Kensho MCP, FactSet MCP, or Daloopa MCP are available, use them exclusively for financial and trading information DO NOT use web search if the above MCP data sources are available ONLY if MCPs are unavailable: Then use Bloomberg Terminal, SEC EDGAR filings, or other institutional sources NEVER use web search as a primary data source - it ...
|
1.2K |
| 8992 | pptx-official | sickn33/antigravity-awesome-skills |
PPTX creation, editing, and analysis Overview A user may ask you to create, edit, or analyze the contents of a .pptx file. A .pptx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks. Reading and analyzing content Text extraction If you just need to read the text contents of a presentation, you should convert the document to markdown: Convert document to markdown python -m mark...
|
1.2K |
| 8993 | buddy-sings | minimax-ai/skills |
Buddy Sings — Let Your Claude Code Pet Sing Turn your Claude Code pet into a singer. Each pet gets a unique vocal identity based on its name and personality — the same pet always sounds the same. Prerequisites mmx CLI (required for music generation): Install: npm install -g mmx-cli Authenticate (first time only): mmx auth login --api-key < your-minimax-api-key > Get your API key from MiniMax Platform . Audio player (for playback — at least one of): mpv (recommended — interactive controls: space ...
|
1.2K |
| 8994 | golang-backend-development | manutej/luxor-claude-marketplace |
Go Backend Development A comprehensive skill for building production-grade backend systems with Go. Master goroutines, channels, web servers, database integration, microservices architecture, and deployment patterns for scalable, concurrent backend applications. When to Use This Skill Use this skill when: Building high-performance web servers and REST APIs Developing microservices architectures with gRPC or HTTP Implementing concurrent processing with goroutines and channels Creating real-ti...
|
1.2K |
| 8995 | mermaid-diagram-specialist | davila7/claude-code-templates |
Mermaid Diagram Specialist Overview Purpose: Expert in creating comprehensive Mermaid diagrams for documentation, architecture visualization, and process mapping Category: Tech Primary Users: tech-writer, architecture-validator, product-technical, tech-lead When to Use This Skill Creating architecture documentation Visualizing workflows and processes Documenting data models (ERDs) Explaining sequence flows Creating state machines Documenting component relationships Creating decision trees Vis...
|
1.2K |
| 8996 | openosint-ai-osint-framework | aradotso/security-skills |
OpenOSINT AI OSINT Framework Skill by ara.so — Security Skills collection. OpenOSINT is an AI-powered Open Source Intelligence framework that combines 11 OSINT tools into a unified interface. It operates as an interactive REPL with natural language investigation, a direct CLI for scripting, and an MCP server for AI client integration. The AI agent intelligently chains tools based on findings and compiles structured reports. All tools run as async subprocess wrappers with hard timeout enforcement...
|
1.2K |
| 8997 | car-sales-data-engineering-analytics | aradotso/data-skills |
Car Sales Data Engineering & Analytics Skill by ara.so — Data Skills collection. A comprehensive data engineering and analytics framework for processing ~24K car sales records with ETL pipelines, statistical modeling, and interactive Streamlit dashboards. Provides 15 pre-built analyses covering pricing trends, regional patterns, demographic insights, and feature correlations. Installation This project uses uv for package management: Clone the repository git clone https://github.com/Abdumalik-Pr...
|
1.2K |
| 8998 | convex-ship | get-convex/agent-skills |
Ship the app live Take the current project from local to a live, shareable URL: deploy the Convex backend to the cloud (claiming the anonymous deployment if needed), build the web app, and publish it to *.convex.app. Workflow If on an anonymous deployment, claim/persist it to the cloud (Tier-2 sign-in). convex deploy the backend. Build the web app (static export) and upload via the moderated publish gateway → returns the *.convex.app URL. Give the user the live URL; offer a custom domain (own on...
|
1.2K |
| 8999 | convex-check-updates | get-convex/agent-skills |
check-updates Detect stale Convex components in the current app against the anteater registry and, with explicit user consent, upgrade them one at a time behind a build gate (typecheck + next build). Each upgrade is gated and smoke-tested before the next. Workflow Run curl -fsSL https://graceful-tiger-715.convex.site/check-updates.mjs -o /tmp/cu.mjs && node /tmp/cu.mjs from the project root. If COMPONENTS_UP_TO_DATE: tell the user; done. If COMPONENTS_STALE=: list each stale entry (component nam...
|
1.2K |
| 9000 | convex-acquire-domain | get-convex/agent-skills |
Acquire a domain (labs) — find and buy through Convex Suggest memorable names for the idea, check live availability + price, then (only on explicit yes) register the chosen domain through Convex and bind it to the deployment. Workflow Brainstorm a few on-theme names; check live availability + annual price. Present the top options with prices; wait for an explicit pick. Register through Convex (DNSimple) — a Tier-2 spend action performed by the control plane; the agent never holds the registrar c...
|
1.2K |