███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 12601 | testing | andrelandgraf/fullstackrecipes |
LobeHub Testing Guide Quick Reference Commands: Run specific test file bunx vitest run --silent = 'passed-only' '[file-path]' Database package (client) cd packages/database && bunx vitest run --silent = 'passed-only' '[file]' Database package (server) cd packages/database && TEST_SERVER_DB = 1 bunx vitest run --silent = 'passed-only' '[file]' Never run bun run test - it runs all 3000+ tests (~10 minutes). Test Categories Category Location Config Webapp src//*.test.ts(x) vitest.config.ts Packa...
|
75 |
| 12602 | alicloud-skill-creator-test | cinience/alicloud-skills |
Category: test ALICLOUD SKILL CREATOR Smoke Test Prerequisites Target skill path: skills/platform/skills/alicloud-skill-creator/ Python 3 Test Steps Validate target skill scripts compile: python3 tests/common/compile_skill_scripts.py \ --skill-path skills/platform/skills/alicloud-skill-creator \ --output output/alicloud-skill-creator-test/compile-check.json Check frontmatter fields exist in target SKILL.md : name description Regenerate skill index and confirm new category/path appears: scripts/u...
|
75 |
| 12603 | bun-validator | shipshitdev/library |
Bun Validator Validates Bun workspace configuration and prevents common monorepo issues. Ensures Bun 1.3+ patterns and proper workspace isolation. When This Activates Setting up a new Bun monorepo Before adding dependencies to workspaces Auditing existing Bun workspaces After AI generates package.json files CI/CD pipeline validation Quick Start python3 ~/.claude/skills/bun-validator/scripts/validate.py --root . python3 ~/.claude/skills/bun-validator/scripts/validate.py --root . --strict What ...
|
75 |
| 12604 | websearch-deep | thomasholknielsen/claude-code-config |
Deep Web Research Strategy ⚠️ VERIFICATION INSTRUCTION (temporary for debugging): When you use this Skill, you MUST create a verification file to prove execution: File: deep-research-skill-was-executed.md (in repository root) Content: Deep Research Skill Execution Verification Skill: websearch-deep Executed: {timestamp} Research Question: {the question you researched} Mode: Deep (6-phase methodology) This file was created by the deep-researcher agent to verify that the websearch-deep Ski...
|
75 |
| 12605 | make-automation | composiohq/awesome-claude-skills |
Make Automation via Rube MCP Automate Make (formerly Integromat) operations through Composio's Make toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/make Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Make connection via RUBE_MANAGE_CONNECTIONS with toolkit make 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 endpo...
|
75 |
| 12606 | real-world-rails | steveclarke/real-world-rails |
Rails Pattern Research What This Is The Real World Rails repository is a collection of 200+ production Rails application source code. The apps/ directory contains the full source of each app — models, migrations, schema, controllers, views, concerns, gems. The engines/ directory contains Rails engines. Locating the Repository Look for a directory called real-world-rails with an apps/ subdirectory. Check the current working directory first, then ~/src/real-world-rails . If not found, ask the user...
|
75 |
| 12607 | outlook-calendar-automation | sickn33/antigravity-awesome-skills |
Outlook Calendar Automation via Rube MCP Automate Outlook Calendar operations through Composio's Outlook toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/outlook Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Outlook connection via RUBE_MANAGE_CONNECTIONS with toolkit outlook 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...
|
75 |
| 12608 | chrome-automation | aaaaqwq/claude-code-skills |
Skill: Chrome Automation (agent-browser) Automate browser tasks in the user's real Chrome session via the agent-browser CLI. Prerequisite : agent-browser must be installed and Chrome must have remote debugging enabled. See references/agent-browser-setup.md if unsure. Core Principle: Reuse the User's Existing Chrome This skill operates on a single Chrome process — the user's real browser. There is no session management, no separate profiles, no launching a fresh Playwright browser. Always Start b...
|
75 |
| 12609 | expo-deployment | sickn33/antigravity-awesome-skills |
Deployment This skill covers deploying Expo applications across all platforms using EAS (Expo Application Services). References Consult these resources as needed: ./references/workflows.md -- CI/CD workflows for automated deployments and PR previews ./references/testflight.md -- Submitting iOS builds to TestFlight for beta testing ./references/app-store-metadata.md -- Managing App Store metadata and ASO optimization ./references/play-store.md -- Submitting Android builds to Google Play Store ./r...
|
75 |
| 12610 | bun | hoodini/ai-agents-skills |
Bun Node.js 대신 Bun을 기본 런타임으로 사용. 설치 macOS / Linux brew install oven-sh/bun/bun npm npm install -g bun 명령어 매핑 Node.js / npm Bun npm install bun install npm install <pkg> bun add <pkg> npm install -D <pkg> bun add -d <pkg> npm uninstall <pkg> bun remove <pkg> npm run <script> bun run <script> 또는 bun <script> npx <cmd> bunx <cmd> node <file> bun <file> npm init bun init npm create <template> bun create <template> 프로젝트 초기화 새 프로젝트 bun init 템플릿 사용 bun create next-app my-app bun create vite my-app ...
|
75 |
| 12611 | storybook-play-functions | thebushidocollective/han |
Storybook - Play Functions Write automated interaction tests within stories using play functions to verify component behavior, simulate user actions, and test edge cases. Key Concepts Play Functions Play functions run after a story renders, allowing you to simulate user interactions: import { within, userEvent, expect } from '@storybook/test'; import type { Meta, StoryObj } from '@storybook/react'; import { LoginForm } from './LoginForm'; const meta = { component: LoginForm, } satisfies M...
|
75 |
| 12612 | writing-dev-server-tests | oven-sh/bun |
Dev server tests validate hot-reloading robustness and reliability. File Structure - `test/bake/bake-harness.ts` - shared utilities: `devTest`, `prodTest`, `devAndProductionTest`, `Dev` class, `Client` class - `test/bake/client-fixture.mjs` - subprocess for `Client` (page loading, IPC queries) - `test/bake/dev/*.test.ts` - dev server and hot reload tests - `test/bake/dev-and-prod.ts` - tests running on both dev and production mode Test Categories - `bundle.test.ts` - DevServer-specific ...
|
75 |
| 12613 | ln-654-resource-lifecycle-auditor | 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. Resource Lifecycle Auditor (L3 Worker) Specialized worker auditing resource acquisition/release patterns, scope mismatches, and connection pool hygiene. Purpose & Scope Worker in ln-650 coordinator pipeline - invoked by ln-650-persistence-performance-auditor Audit resource lifecycle (Priority: HIGH) Check session/connection...
|
75 |
| 12614 | pomasa | extremeprogramming-cn/pomasa |
POMASA Generator Your Role You are a Multi-Agent System (MAS) architect. Your task is to generate a complete, immediately runnable declarative multi-agent research system based on the research project information provided by the user. User Input Handling When the user wants to create a multi-agent system, determine how to collect project information: If user provides a user_input file path: Read and use it directly If user has no file ready, offer two options: Option A: Copy user_input_templ...
|
75 |
| 12615 | sap-btp-developer-guide | secondsky/sap-skills |
Comprehensive guidance for developing, deploying, and operating business applications on SAP Business Technology Platform. Table of Contents Quick Navigation - [Table of Contents](table-of-contents) - [When to Use This Skill](when-to-use-this-skill) - [Runtime and Programming Model Selection](runtime-and-programming-model-selection) - [Development Workflow](development-workflow) - [Key Services and Tools](key-services-and-tools) - [Security Implementation](security-implementation) - [...
|
75 |
| 12616 | hugo | jackspace/claudeskillz |
Hugo Static Site Generator Status: Production Ready Last Updated: 2025-11-04 Dependencies: None (Hugo is a standalone binary) Latest Versions: hugo@0.152.2+extended, PaperMod@latest, Sveltia CMS@latest Quick Start (5 Minutes) 1. Install Hugo Extended CRITICAL: Always install Hugo Extended edition (not Standard) unless you're certain you don't need SCSS/Sass support. Most themes require Extended. macOS brew install hugo Linux (Ubuntu/Debian) wget https://github.com/gohugoio/hugo/releases/d...
|
75 |
| 12617 | alicloud-ai-entry-modelstudio-test-test | cinience/alicloud-skills |
Category: test AI ENTRY MODELSTUDIO TEST Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/ai/entry/alicloud-ai-entry-modelstudio-test/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/ai/entry/alicloud-ai-entry-modelstudio-test \ --output output/alicloud-ai-entry-modelstudio-test-te...
|
75 |
| 12618 | docyrus-architect | docyrus/agent-skills |
Docyrus Architect Guide for using docyrus-architect MCP tools to manage and query data sources in Docyrus. Tool Overview Discovery Tools get_apps — List tenant apps. Use before create_data_source to find the target tenantAppId . get_data_source_list — Search data sources by name/description or app ID. get_data_source_list_with_fields — Same as above but includes field names and types. get_data_source_metadata — Get full metadata (fields with IDs, types, slugs, enums, relations) for a data source...
|
75 |
| 12619 | startup-business-models | vasilyu1983/ai-agents-public |
Startup Business Models Systematic workflow for choosing revenue models, pricing, and unit economics. Quick Start (Inputs) Ask for the smallest set of inputs that makes the decision meaningful: Business type: SaaS, usage-based/API, marketplace, services, hardware + service ICP/segment(s): SMB / mid-market / enterprise (and ACV/ARPA bands) Current pricing and packaging: value metric, tiers, limits, discount policy, billing cadence Unit economics drivers: fully-loaded CAC, gross margin/COGS (i...
|
75 |
| 12620 | agents-sdk | cloudflare/cloudflare-docs |
Cloudflare Agents SDK Build persistent, stateful AI agents on Cloudflare Workers using the agents npm package. FIRST: Verify Installation npm install agents Agents require a binding in wrangler.jsonc: { "durable_objects": { // "class_name" must match your Agent class name exactly "bindings": [{ "name": "Counter", "class_name": "Counter" }] }, "migrations": [ // Required: list all Agent classes for SQLite storage { "tag": "v1", "new_sqlite_classes": ["Counter"] } ] } ...
|
75 |
| 12621 | interactive-requirements-gathering | oimiragieo/agent-studio |
Interactive Requirements Gathering Structured framework for gathering requirements through interactive questionnaires. Based on the Conductor methodology's proven human-in-the-loop patterns. When to Use Setting up new projects Defining product requirements Gathering feature specifications Onboarding users to new workflows Any task requiring structured user input Core Principles 1. Question Classification Before asking ANY question, classify its type: Type Purpose Phrasing Example Additive Brains...
|
75 |
| 12622 | alicloud-security-content-moderation-green-test | cinience/alicloud-skills |
Category: test SECURITY CONTENT MODERATION GREEN Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/security/content/alicloud-security-content-moderation-green/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/security/content/alicloud-security-content-moderation-green \ --output outp...
|
75 |
| 12623 | learn-about-omc | yeachan-heo/oh-my-claudecode |
Analyzes your oh-my-claudecode usage and provides tailored recommendations to improve your workflow. What It Does - Reads token tracking from `~/.omc/state/token-tracking.jsonl` - Reads session history from `.omc/state/session-history.json` - Analyzes agent usage patterns - Identifies underutilized features - Recommends configuration changes Implementation Step 1: Gather Data ``` Check for token tracking data TOKEN_FILE="$HOME/.omc/state/token-tracking.jsonl" SESSION_FILE=".omc/stat...
|
75 |
| 12624 | get-review-theme | huangwb8/chineseresearchlatex |
Get Review Theme - 结构化综述主题提取 最高原则:基于输入内容的语义理解,生成高质量、可操作的结构化主题,确保输出可直接用于文献综述流程。 角色 你是一位专精学术文献调研的主题分析专家,擅长从各种输入源中快速识别研究领域、提取关键术语、凝练核心科学问题。你的核心能力包括: 语义理解:深入理解输入内容的核心研究领域、研究对象、方法和技术路线 术语提取:识别中英文专业术语,优先使用标准学术术语 主题凝练:将复杂内容凝练为一句话的主题表述 问题识别:从内容中识别出具体的研究挑战或科学问题 触发条件 用户要求从文件/图片/网页/描述中提取综述主题 用户要求生成"主题+关键词+核心问题"结构化输出 用户为 systematic-literature-review 或其他文献综述技能准备输入 你需要确认的输入 {输入源}(必需):文件路径、URL、文件夹路径、图片路径,或直接输入的文本描述 {输出格式}(可选):text(默认)/yaml/json 工作流(四步) 0) 输入类型识别 使用启发式规则自动识别输入类型: 输入类型 识别条件 处理优先级 自然语言描述 非 ...
|
75 |
| 12625 | better-auth-core | bobmatnyc/claude-mpm-skills |
Better Auth Core (TypeScript) Goals Set up a Better Auth instance with environment variables and data layer wiring. Wire server handlers and a client instance. Use sessions and server-side API methods safely. Keep data-layer choices pluggable (drivers or adapters). Quick start Install better-auth . Set BETTER_AUTH_SECRET (32+ chars) and BETTER_AUTH_URL . Create auth.ts and export auth . Provide database (driver or adapter) or omit for stateless sessions. Mount a handler ( auth.handler or a frame...
|
75 |
| 12626 | alicloud-ai-cloud-call-center-test | cinience/alicloud-skills |
Category: test AI CLOUD CALL CENTER Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/ai/service/alicloud-ai-cloud-call-center/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/ai/service/alicloud-ai-cloud-call-center \ --output output/alicloud-ai-cloud-call-center-test/compile-check...
|
75 |
| 12627 | data-sql-optimization | vasilyu1983/ai-agents-public |
SQL Optimization — Comprehensive Reference This skill provides actionable checklists, patterns, and templates for transactional (OLTP) SQL optimization: measurement-first triage, EXPLAIN/plan interpretation, balanced indexing (avoiding over-indexing), performance monitoring, schema evolution, migrations, backup/recovery, high availability, and security. Supported Platforms: PostgreSQL, MySQL, SQL Server, Oracle, SQLite For OLAP/Analytics: See data-lake-platform (ClickHouse, DuckDB, Doris, Sta...
|
75 |
| 12628 | slack-automation | sickn33/antigravity-awesome-skills |
Slack Automation Overview Interact with Slack workspaces for channel management, message reading, and content analysis. All operations are read-only unless creating channels. Quick Decision Tree What do you need? │ ├── Search for channels by name │ └── references/search.md │ └── Script: scripts/slack_search.py search │ ├── Read messages from a channel │ └── references/fetch-news.md │ └── Script: scripts/fetch_slack_news.py │ ├── Create a new channel │ └── references/create-channel.md │...
|
75 |
| 12629 | linear-automation | composiohq/awesome-claude-skills |
Linear Automation via Rube MCP Automate Linear operations through Composio's Linear toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/linear Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Linear connection via RUBE_MANAGE_CONNECTIONS with toolkit linear 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...
|
75 |
| 12630 | ui-design-aesthetics | nickcrew/claude-ctx-plugin |
UI Design & Aesthetics Expert guidance for designing and implementing beautiful, high-performance user interfaces. This skill enforces distinctive aesthetics while ensuring technical excellence through progressive disclosure and dynamic loading. Core Capabilities Aesthetic Direction: avoiding "AI slop" by enforcing distinctive typography, color, and depth. Performance Architecture: ensuring UI components load dynamically to minimize initial payload. Progressive Disclosure: designing interfaces...
|
75 |
| 12631 | docs-sync | openai/openai-agents-python |
Docs Sync Overview Identify doc coverage gaps and inaccuracies by comparing main branch features and configuration options against the current docs structure, then propose targeted improvements. Workflow Confirm scope and base branch Identify the current branch and default branch (usually main ). Prefer analyzing the current branch to keep work aligned with in-flight changes. If the current branch is not main , analyze only the diff vs main to scope doc updates. Avoid switching branches if it wo...
|
75 |
| 12632 | app-store-optimization | wsbs20/claude-code-aso-skill |
App Store Optimization (ASO) Skill This comprehensive skill provides complete ASO capabilities for successfully launching and optimizing mobile applications on the Apple App Store and Google Play Store. Capabilities Research & Analysis Keyword Research: Analyze keyword volume, competition, and relevance for app discovery Competitor Analysis: Deep-dive into top-performing apps in your category Market Trend Analysis: Identify emerging trends and opportunities in your app category Review Sentimen...
|
75 |
| 12633 | zoho-crm-automation | sickn33/antigravity-awesome-skills |
Zoho CRM Automation via Rube MCP Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Zoho CRM connection via RUBE_MANAGE_CONNECTIONS with toolkit zoho 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 works. Verify Rube MCP is available by co...
|
75 |
| 12634 | blog-post-optimizer | dkyazzentwatwa/chatgpt-skills |
Blog Post Optimizer Comprehensive content analysis toolkit for optimizing blog posts, articles, and web content. Analyzes headlines, SEO elements, content structure, readability, and generates actionable recommendations with scores. Quick Start from scripts.blog_post_optimizer import BlogPostOptimizer Initialize optimizer optimizer = BlogPostOptimizer() Analyze a blog post with open('blog_post.md', 'r') as f: content = f.read() Full analysis results = optimizer.analyze_full( cont...
|
75 |
| 12635 | parallel-agents | vudovn/antigravity-kit |
Native Parallel Agents Orchestration through Claude Code's built-in Agent Tool Overview This skill enables coordinating multiple specialized agents through Claude Code's native agent system. Unlike external scripts, this approach keeps all orchestration within Claude's control. When to Use Orchestration ✅ Good for: Complex tasks requiring multiple expertise domains Code analysis from security, performance, and quality perspectives Comprehensive reviews (architecture + security + testing) F...
|
75 |
| 12636 | vercel-automation | composiohq/awesome-claude-skills |
Vercel Automation via Rube MCP Automate Vercel platform operations through Composio's Vercel toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Vercel connection via RUBE_MANAGE_CONNECTIONS with toolkit vercel 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 works. Verify Rube MCP is availabl...
|
75 |
| 12637 | capacitor-mcp | cap-go/capgo-skills |
Capacitor MCP Tools Guide to using Model Context Protocol (MCP) for Ionic and Capacitor mobile development automation. When to Use This Skill User wants to automate Ionic/Capacitor development User asks about MCP integration User wants AI-assisted component/plugin discovery User needs programmatic CLI command execution User wants access to Ionic components and Capacitor plugins within AI chat What is MCP? MCP (Model Context Protocol) is an open standard for connecting AI models to external tools...
|
75 |
| 12638 | senior-cloud-architect | borghei/claude-skills |
Senior Cloud Architect Expert-level cloud architecture and infrastructure design. Core Competencies Multi-cloud architecture AWS, GCP, Azure platforms Cloud-native design patterns Cost optimization Security and compliance Migration strategies Disaster recovery Infrastructure automation Cloud Platform Comparison Service AWS GCP Azure Compute EC2, ECS, EKS GCE, GKE VMs, AKS Serverless Lambda Cloud Functions Azure Functions Storage S3 Cloud Storage Blob Storage Database RDS, DynamoDB Cloud SQL, S...
|
75 |
| 12639 | python-backend | yonatangross/orchestkit |
python-backend Production-ready Python backend patterns for FastAPI, SQLAlchemy, and Upstash. When to Use This Skill Building REST APIs with FastAPI Implementing JWT/OAuth2 authentication Setting up SQLAlchemy async databases Integrating Redis/Upstash caching and rate limiting Refactoring AI-generated Python code Designing API patterns and project structure Core Principles Async-first - Use async/await for I/O operations Type everything - Pydantic models for validation Dependency injection - Use...
|
75 |
| 12640 | usability-psychologist | mae616/design-skills |
Apply this skill when the request involves: - "hard to use", "high drop-off", "difficult input", "confusing", "accessibility issues", "too many errors" - 使いにくい、離脱が多い、入力が難しい、迷う、アクセシビリティ、エラーが多い - UI design review, or working on forms, onboarding, settings screens Core Principles - Usability is cost, not preference. Reduce confusion, memory burden, operation count, and error rate. - Cognitive load. Don't overload working memory (reduce choices, use stages, maintain context). - Accessibility...
|
75 |
| 12641 | mcp-builder | shajith003/awesome-claude-skills |
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...
|
75 |
| 12642 | senior-security | borghei/claude-skills |
Senior Security Complete toolkit for senior security with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Threat Modeler python scripts/threat_modeler.py [options] Script 2: Security Auditor python scripts/security_auditor.py [options] Script 3: Pentest Automator python scripts/pentest_automator.py [options] Core Capabilities 1. Threat Modeler Automated tool for threat modeler tasks. Featu...
|
75 |
| 12643 | vexor | sickn33/antigravity-awesome-skills |
Vexor Overview Vector-powered CLI for semantic file search with a Claude/Codex skill When to Use This Skill Use this skill when you need to work with vector-powered cli for semantic file search with a claude/codex skill. Instructions This skill provides guidance and patterns for vector-powered cli for semantic file search with a claude/codex skill. For more information, see the source repository .
|
75 |
| 12644 | threejs-graphics-optimizer | ovachiever/droid-tings |
THREE.js Graphics Optimizer Version: 1.0 Focus: Performance optimization for THREE.js and graphics applications Purpose: Build smooth 60fps graphics experiences across all devices including mobile Philosophy: Performance-First Graphics The 16ms Budget Target: 60 FPS = 16.67ms per frame Frame budget breakdown: JavaScript logic: ~5-8ms Rendering (GPU): ~8-10ms Browser overhead: ~2ms If you exceed 16ms: Frames drop, stuttering occurs. Mobile vs Desktop Reality Desktop: Powerful GPU, lots of...
|
75 |
| 12645 | analyzing-mlflow-session | mlflow/skills |
Analyzing an MLflow Chat Session What is a Session? A session groups multiple traces that belong to the same chat conversation or user interaction. Each trace in the session represents one turn: the user's input and the system's response. Traces within a session are linked by a shared session ID stored in trace metadata. The session ID is stored in trace metadata under the key mlflow.trace.session . This key contains dots, which affects filter syntax (see below). All traces sharing the same valu...
|
74 |
| 12646 | hugging-face-dataset-viewer | huggingface/skills |
Hugging Face Dataset Viewer Use this skill to execute read-only Dataset Viewer API calls for dataset exploration and extraction. Core workflow Optionally validate dataset availability with /is-valid . Resolve config + split with /splits . Preview with /first-rows . Paginate content with /rows using offset and length (max 100). Use /search for text matching and /filter for row predicates. Retrieve parquet links via /parquet and totals/metadata via /size and /statistics . Defaults Base URL: https:...
|
74 |
| 12647 | pandoc | vamseeachanta/workspace-hub |
Pandoc Document Conversion Skill Convert documents between formats using pandoc, the universal document converter. Prerequisites Check if pandoc is installed pandoc --version Install via Homebrew if needed brew install pandoc Common Conversions Markdown to Word (.docx) Basic conversion pandoc input.md -o output.docx With table of contents pandoc input.md --toc -o output.docx With custom reference doc (for styling) pandoc input.md --reference-doc = template.docx -o output.docx Standalone wi...
|
74 |
| 12648 | context-master | josiahsiegel/claude-plugin-marketplace |
Context Master 🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentatio...
|
74 |
| 12649 | csharp-developer | 404kidwiz/claude-supercode-skills |
C Developer Senior C developer with mastery of .NET 8+ and Microsoft ecosystem. Specializes in high-performance web APIs, cloud-native solutions, and modern C language features. Role Definition You are a senior C developer with 10+ years of .NET experience. You specialize in ASP.NET Core, Blazor, Entity Framework Core, and modern C 12 features. You build scalable, type-safe applications with clean architecture patterns and focus on performance optimization. When to Use This Skill Building AS...
|
74 |
| 12650 | memories | proompteng/lab |
Use the memories helpers to store and retrieve embeddings in a consistent way. Ensure embedding dimension matches the DB schema. Save ``` bun run --filter memories save-memory --task-name bumba-enrich-repo --content "Enrichment facts for services/bumba" --summary "Bumba repo facts" --tags "bumba,enrich" ``` Retrieve ``` bun run --filter memories retrieve-memory --query "enrichFile workflow" --limit 5 ``` Environment - `OPENAI_API_BASE_URL` / `OPENAI_API_BASE` - `OPENAI_EM...
|
74 |