Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,506
总 Skills
92.5M
总安装量
2,584
贡献者
# Skill 仓库 描述 安装量
7501 yc-reader himself65/finance-skills
Y Combinator Reader (Read-Only) Fetches Y Combinator company data from the yc-oss/api , an unofficial open-source API that indexes all publicly launched YC companies. The data is sourced from YC's Algolia search index and updated daily via GitHub Actions. This is a read-only data source. It provides company profiles, batch listings, industry/tag breakdowns, hiring status, and diversity data. No write operations exist — the API serves static JSON files. No authentication required. The API is publ...
702
7502 database-migrations affaan-m/ecc
Database Migration Patterns Safe, reversible database schema changes for production systems. When to Activate Creating or altering database tables Adding/removing columns or indexes Running data migrations (backfill, transform) Planning zero-downtime schema changes Setting up migration tooling for a new project Core Principles Every change is a migration — never alter production databases manually Migrations are forward-only in production — rollbacks use new forward migrations Schema and data mi...
702
7503 valtio hairyf/skills
Valtio makes proxy-state simple for React and vanilla JavaScript. It provides a minimal, flexible, and unopinionated API that turns objects into self-aware proxies, enabling fine-grained subscription and reactivity. Valtio shines at render optimization in React and is compatible with Suspense and React 18+. The skill is based on Valtio v2.3.0, generated at 2026-01-29. Core References | Proxy | Create reactive state objects that track changes | [core-proxy](https://github.com/hairyf/skills/...
701
7504 yt-search-download joeseesun/yt-search-download
YouTube 搜索 & 下载 基于 YouTube Data API v3 进行高级搜索,配合 yt-dlp 下载。 前置条件 YouTube API Key : echo $YT_BROWSE_API_KEY 如果为空: Google Cloud Console → 启用 YouTube Data API v3 → 创建 API Key → 写入 ~/.zshrc : export YT_BROWSE_API_KEY = your_key yt-dlp (下载用): brew install yt-dlp macOS pip install yt-dlp 或 pip 安装 命令说明 脚本路径: ~/.claude/skills/yt-search-download/scripts/yt_search.py 全站关键词搜索 python3 scripts/yt_search.py search "关键词" -n 20 参数 说明 -n 20 最多返回条数(默认 20) -o date 按时间排序(默认 relevance) -o viewCount 按播放量排序(API 级,准确...
701
7505 go-performance cxuu/golang-skills
Go Performance Patterns Source: Uber Go Style Guide Performance-specific guidelines apply only to the hot path. Don't prematurely optimize—focus these patterns where they matter most. Prefer strconv over fmt When converting primitives to/from strings, strconv is faster than fmt. Source: Uber Go Style Guide Bad: for i := 0; i < b.N; i++ { s := fmt.Sprint(rand.Int()) } Good: for i := 0; i < b.N; i++ { s := strconv.Itoa(rand.Int()) } Benchmark comparison: Approach Speed Allocat...
701
7506 debug issue tirth8205/code-review-graph
Debug Issue Use the knowledge graph to systematically trace and debug issues. Steps Use semantic_search_nodes to find code related to the issue. Use query_graph with callers_of and callees_of to trace call chains. Use get_flow to see full execution paths through suspected areas. Run detect_changes to check if recent changes caused the issue. Use get_impact_radius on suspected files to see what else is affected. Tips Check both callers and callees to understand the full context. Look at affected ...
701
7507 daangn-realty-search nomadamas/k-skill
Daangn Realty Search What this skill does 당근부동산 목록의 공개 Remix _data JSON과 상세 페이지의 JSON-LD/HTML 메타를 읽어 매물 후보를 정리한다. 최종 사용자는 자연어로 요청해도 되고, 필요하면 아래의 Python helper를 직접 실행한다. 외부 패키지나 k-skill-proxy 없이 Python 표준 라이브러리만 사용한다. When to use "당근부동산 합정동 전세 찾아봐" "마포구 월세 매물 봐줘" "이 당근부동산 URL 상세 요약해줘" When not to use 당근 계정 로그인이 필요한 작업 채팅, 찜, 거래 제안, 문의, 지원, 예약, 계약, 구매처럼 상대방 또는 계정에 영향을 주는 작업 CAPTCHA/봇 차단/로그인벽 우회가 필요한 작업 Show more
701
7508 api-design-principles sickn33/antigravity-awesome-skills
API Design Principles Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers and stand the test of time. When to Use This Skill Designing new REST or GraphQL APIs Refactoring existing APIs for better usability Establishing API design standards for your team Reviewing API specifications before implementation Migrating between API paradigms (REST to GraphQL, etc.) Creating developer-friendly API documentation Optimizing APIs for ...
701
7509 agentdb advanced features ruvnet/ruflo
AgentDB Advanced Features What This Skill Does Covers advanced AgentDB capabilities for distributed systems, multi-database coordination, custom distance metrics, hybrid search (vector + metadata), QUIC synchronization, and production deployment patterns. Enables building sophisticated AI systems with sub-millisecond cross-node communication and advanced search capabilities. Performance : <1ms QUIC sync, hybrid search with filters, custom distance metrics. Prerequisites Node.js 18+ AgentDB v1.0....
701
7510 v3 deep integration ruvnet/ruflo
V3 Deep Integration What This Skill Does Transforms claude-flow from parallel implementation to specialized extension of agentic-flow@alpha, eliminating massive code duplication while achieving performance improvements and feature parity. Quick Start Initialize deep integration Task ( "Integration architecture" , "Design agentic-flow@alpha adapter layer" , "v3-integration-architect" ) Feature integration (parallel) Task ( "SONA integration" , "Integrate 5 SONA learning modes" , "v3-integration...
701
7511 v3 memory unification ruvnet/ruflo
V3 Memory Unification What This Skill Does Consolidates disparate memory systems into unified AgentDB backend with HNSW vector search, achieving 150x-12,500x search performance improvements while maintaining backward compatibility. Quick Start Initialize memory unification Task ( "Memory architecture" , "Design AgentDB unification strategy" , "v3-memory-specialist" ) AgentDB integration Task ( "AgentDB setup" , "Configure HNSW indexing and vector search" , "v3-memory-specialist" ) Data migrat...
701
7512 agentdb performance optimization ruvnet/ruflo
AgentDB Performance Optimization What This Skill Does Provides comprehensive performance optimization techniques for AgentDB vector databases. Achieve 150x-12,500x performance improvements through quantization, HNSW indexing, caching strategies, and batch operations. Reduce memory usage by 4-32x while maintaining accuracy. Performance : <100µs vector search, <1ms pattern retrieval, 2ms batch insert for 100 vectors. Prerequisites Node.js 18+ AgentDB v1.0.7+ (via agentic-flow) Existing AgentDB dat...
701
7513 preline-theme-generator htmlstreamofficial/preline
Preline Theme Generator This file is for the AGENT (LLM) only — not end users. Generate a Preline Theme CSS file that produces a beautiful, consistent UI across all Preline components. Docs docs/step-1.md to docs/step-7.md (detailed workflow guidance) docs/palette-guidance.md (mood, hue, neutral mapping, OKLCH rules) docs/validation-checklist.md docs/token-reference.md docs/examples.md Agent workflow (FOLLOW THIS) When user requests a theme, the agent MUST: Step 1: Interpret user request P...
700
7514 avast-security-awareness aradotso/security-skills
Avast Security Awareness Skill Skill by ara.so — Security Skills collection. ⚠️ Critical Security Warning This repository is NOT a legitimate Avast product and represents a common malware distribution pattern. This skill teaches AI agents to identify and warn users about such threats. What This Skill Does This skill enables AI coding agents to: Recognize malicious software distribution repositories Identify red flags in repository descriptions and content Educate users on safe software acquisiti...
700
7515 ui-designer daymade/claude-code-skills
Use this skill to produce singular, deployment-ready frontend interfaces that escape the bland "AI slop" look. Deliver real, working code paired with obsessive care for visual nuance and inventive choices. Expect the user to hand over frontend requirements: a component, page, application, or interface that needs to be built. Their brief may also touch on intent, target audience, or technical limitations. Setting the Visual Direction Do not start coding until you've absorbed the context and commi...
700
7516 product-showcase jezweb/claude-skills
Product Showcase Generator Generate a marketing website that actually teaches people what a web app does. Not just a hero and feature grid — a multi-page site with real screenshots, animated GIF walkthroughs of workflows, feature deep-dives, and progressive depth from "what is this" to "here's exactly how it works." Especially valuable for complex apps, agentic AI tools, and anything where a static screenshot doesn't convey the value. Depth Levels Depth Output Duration quick Single page — hero, ...
700
7517 cloudflare-tunnel vm0-ai/vm0-skills
Cloudflare Tunnel / Access Authentication Authenticate HTTP requests to services protected by Cloudflare Access using Service Token headers. When to Use Access internal services exposed via Cloudflare Tunnel Authenticate to Cloudflare Zero Trust protected applications Make API calls to services behind Cloudflare Access Bypass Cloudflare Access login page for automated requests Prerequisites export CF_ACCESS_CLIENT_ID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx.access export CF_ACCESS_CLIENT_SECRET=xxxxxxxxx...
700
7518 v3 swarm coordination ruvnet/ruflo
V3 Swarm Coordination What This Skill Does Orchestrates the complete 15-agent hierarchical mesh swarm for claude-flow v3 implementation, coordinating parallel execution across domains while maintaining dependencies and timeline adherence. Quick Start Initialize 15-agent v3 swarm Task ( "Swarm initialization" , "Initialize hierarchical mesh for v3 implementation" , "v3-queen-coordinator" ) Security domain (Phase 1 - Critical priority) Task ( "Security architecture" , "Design v3 threat model and...
700
7519 v3 mcp optimization ruvnet/ruflo
V3 MCP Optimization What This Skill Does Optimizes claude-flow v3 MCP (Model Context Protocol) server implementation with advanced transport layer optimizations, connection pooling, load balancing, and comprehensive performance monitoring to achieve sub-100ms response times. Quick Start Initialize MCP optimization analysis Task ( "MCP architecture" , "Analyze current MCP server performance and bottlenecks" , "mcp-specialist" ) Optimization implementation (parallel) Task ( "Connection pooling" ...
700
7520 verification & quality assurance ruvnet/ruflo
Verification & Quality Assurance Skill What This Skill Does This skill provides a comprehensive verification and quality assurance system that ensures code quality and correctness through: Truth Scoring : Real-time reliability metrics (0.0-1.0 scale) for code, agents, and tasks Verification Checks : Automated code correctness, security, and best practices validation Automatic Rollback : Instant reversion of changes that fail verification (default threshold: 0.95) Quality Metrics : Statistical an...
700
7521 agentdb learning plugins ruvnet/ruflo
AgentDB Learning Plugins What This Skill Does Provides access to 9 reinforcement learning algorithms via AgentDB's plugin system. Create, train, and deploy learning plugins for autonomous agents that improve through experience. Includes offline RL (Decision Transformer), value-based learning (Q-Learning), policy gradients (Actor-Critic), and advanced techniques. Performance : Train models 10-100x faster with WASM-accelerated neural inference. Prerequisites Node.js 18+ AgentDB v1.0.7+ (via agenti...
700
7522 text-summarizer dkyazzentwatwa/chatgpt-skills
Text Summarizer Create concise summaries from long text documents using extractive summarization. Identifies and extracts the most important sentences while preserving meaning. Quick Start from scripts.text_summarizer import TextSummarizer Summarize text summarizer = TextSummarizer() summary = summarizer.summarize(long_text, ratio=0.2) 20% of original print(summary) Summarize file summary = summarizer.summarize_file("article.txt", num_sentences=5) Features Extractive Summarization: Sele...
699
7523 docx-generator jwynia/agent-skills
DOCX Generator When to Use This Skill Use this skill when: Creating Word documents programmatically from data or specifications Populating branded templates with dynamic content while preserving corporate styling Extracting text, tables, and structure from existing DOCX files for analysis Finding and replacing placeholder text like {{TITLE}} or ${author} Automating document generation workflows (reports, contracts, letters) Do NOT use this skill when: User wants to open/view documents (use n...
699
7524 annotating-task-lineage astronomer/agents
Annotating Task Lineage with Inlets & Outlets This skill guides you through adding manual lineage annotations to Airflow tasks using inlets and outlets . Reference: See the OpenLineage provider developer guide for the latest supported operators and patterns. On Astro Lineage annotations defined with inlets and outlets are visualized in Astro's enhanced Lineage tab , which provides cross-DAG and cross-deployment lineage views. This means your annotations are immediately visible in the Astro UI, g...
699
7525 seoul-density nomadamas/k-skill
Seoul Density What this skill does 서울 실시간 도시데이터 API(data.seoul.go.kr)를 호출해 121개 핫스팟의 현재 혼잡도 단계 (여유 / 보통 / 약간 붐빔 / 붐빔)와 추정 인구 범위 를 반환한다. 데이터는 KT·SKT 통신 신호 기반 추계치이며, 5분 주기로 갱신되나 호출 시점 기준 약 15분 전 값이다. When to use "지금 강남역 얼마나 붐벼?" "홍대 지금 인파 어때?" "명동 지금 사람 많아?" "여의도한강공원 지금 여유로워?" Prerequisites 별도 API 키 발급 없이 그대로 쓸 수 있다. 모든 호출은 k-skill-proxy 경유 다. Show more
699
7526 first-customers slavingia/skills
You are a business advisor channeling the philosophy of The Minimalist Entrepreneur by Sahil Lavingia. Help the user sell to their first 100 customers. Core Principle Skip the launch. Focus on selling. "Viral success" is a myth. There is no such thing. Every seemingly overnight success is built on months or years of hard work. Your job is to sell one by one, learn from each interaction, and build momentum. The Concentric Circles of Sales Sell outward from the people who care most about you to th...
699
7527 github-issue-creator google-gemini/gemini-cli
GitHub Issue Creator This skill guides the creation of high-quality GitHub issues that adhere to the repository's standards and use the appropriate templates. Workflow Follow these steps to create a GitHub issue: Identify Issue Type : Determine if the request is a bug report, feature request, or other category. Locate Template : Search for issue templates in .github/ISSUE_TEMPLATE/ . bug_report.yml feature_request.yml website_issue.yml If no relevant YAML template is found, look for .md template...
699
7528 run-models replicate/skills
Docs Reference: https://replicate.com/docs/llms.txt OpenAPI schema: https://api.replicate.com/openapi.json MCP server: https://mcp.replicate.com Per-model docs: https://replicate.com/{owner}/{model}/llms.txt Set Accept: text/markdown when requesting docs pages for Markdown responses. Workflow Choose the right model - Search with the API or ask the user. Get model metadata - Fetch input and output schema via API. Create prediction - POST to /v1/predictions. Poll for results - GET prediction until...
699
7529 lua mindrally/skills
Lua Development You are an expert in Lua programming with deep knowledge of tables, metatables, and game development patterns. Core Principles Write clear, concise Lua code that follows idiomatic patterns Leverage Lua's dynamic typing while maintaining code clarity Prioritize modularity and code reusability Focus on end-user experience across all code contributions Lua-Specific Practices Maximize local variables for performance improvements Leverage tables effectively for data structures Imple...
699
7530 v3 performance optimization ruvnet/ruflo
V3 Performance Optimization What This Skill Does Validates and optimizes claude-flow v3 to achieve industry-leading performance through Flash Attention, AgentDB HNSW indexing, and comprehensive system optimization with continuous benchmarking. Quick Start Initialize performance optimization Task ( "Performance baseline" , "Establish v2 performance benchmarks" , "v3-performance-engineer" ) Target validation (parallel) Task ( "Flash Attention" , "Validate 2.49x-7.47x speedup target" , "v3-perfor...
699
7531 golang-patterns affaan-m/ecc
Go Development Patterns Idiomatic Go patterns and best practices for building robust, efficient, and maintainable applications. When to Activate Writing new Go code Reviewing Go code Refactoring existing Go code Designing Go packages/modules Core Principles 1. Simplicity and Clarity Go favors simplicity over cleverness. Code should be obvious and easy to read. // Good: Clear and direct func GetUser(id string) (*User, error) { user, err := db.FindUser(id) if err != nil { retur...
699
7532 e2e-testing affaan-m/ecc
E2E Testing Patterns Comprehensive Playwright patterns for building stable, fast, and maintainable E2E test suites. Test File Organization tests/ ├── e2e/ │ ├── auth/ │ │ ├── login.spec.ts │ │ ├── logout.spec.ts │ │ └── register.spec.ts │ ├── features/ │ │ ├── browse.spec.ts │ │ ├── search.spec.ts │ │ └── create.spec.ts │ └── api/ │ └── endpoints.spec.ts ├── fixtures/ │ ├── auth.ts │ └── data.ts └── playwright.config.ts Page Object Model (POM) import { Pag...
699
7533 dispatch bassimeledath/dispatch
Dispatch You are a dispatcher . Your job is to plan work as checklists, dispatch workers to execute them, track progress, and manage your config file. Routing First, determine what the user is asking for: Config request — mentions "config", "add agent", "add ... to my config", "change model", "set default", "add alias", "create alias", etc. → Modifying Config Task request — anything else → Step 0: Read Config Never handle task requests inline. The user invoked /dispatch to get non-blocking backg...
698
7534 signup-login-page-generator kostja94/marketing-skills
Pages: Signup / Login Guides signup and login page structure, domain choice, modal vs dedicated page, discount integration, and SEO. Signup is the conversion endpoint from landing pages and pricing; when discounts apply at registration (e.g., student discount), signup is the P0 placement. Distinct from landing-page-generator (acquisition); newsletter-signup-generator (email capture only). When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matt...
698
7535 python-pypi-package-builder github/awesome-copilot
Python PyPI Package Builder Skill A complete, battle-tested guide for building, testing, linting, versioning, typing, and publishing a production-grade Python library to PyPI — from first commit to community-ready release. AI Agent Instruction: Read this entire file before writing a single line of code or creating any file. Every decision — layout, backend, versioning strategy, patterns, CI — has a decision rule here. Follow the decision trees in order. This skill applies to any Python package t...
698
7536 daangn-cars-search nomadamas/k-skill
Daangn Cars Search What this skill does 당근중고차 공개 Remix _data JSON route를 사용해 차량 목록과 상세 정보를 읽기 전용으로 조회한다. 최종 사용자는 자연어로 요청해도 되고, 필요하면 아래의 Python helper를 직접 실행한다. 외부 패키지나 k-skill-proxy 없이 Python 표준 라이브러리만 사용한다. When to use "당근중고차 합정동 레이 찾아봐" "당근에서 천만원 이하 중고차 검색" "이 당근 중고차 URL 상세 봐줘" When not to use 당근 계정 로그인이 필요한 작업 채팅, 찜, 거래 제안, 문의, 지원, 예약, 계약, 구매처럼 상대방 또는 계정에 영향을 주는 작업 CAPTCHA/봇 차단/로그인벽 우회가 필요한 작업 Show more
698
7537 daangn-jobs-search nomadamas/k-skill
Daangn Jobs Search What this skill does 당근알바 공개 Remix _data JSON route로 채용/알바 공고 목록과 상세 정보를 읽기 전용으로 조회한다. 최종 사용자는 자연어로 요청해도 되고, 필요하면 아래의 Python helper를 직접 실행한다. 외부 패키지나 k-skill-proxy 없이 Python 표준 라이브러리만 사용한다. When to use "당근알바 합정동 카페 찾아봐" "홍대 근처 주말 알바 검색" "이 당근알바 공고 상세 봐줘" When not to use 당근 계정 로그인이 필요한 작업 채팅, 찜, 거래 제안, 문의, 지원, 예약, 계약, 구매처럼 상대방 또는 계정에 영향을 주는 작업 CAPTCHA/봇 차단/로그인벽 우회가 필요한 작업 Show more
698
7538 btca-cli davis7dotsh/better-context
btca CLI btca is a source-first research CLI. It hydrates resources (git, local, npm) into searchable context, then answers questions grounded in those sources. Use configured resources for ongoing work, or one-off anonymous resources directly in btca ask . Full CLI reference: https://docs.btca.dev/guides/cli-reference Add resources: Git resource btca add -n svelte-dev https://github.com/sveltejs/svelte.dev Local directory btca add -n my-docs -t local /absolute/path/to/docs npm package btca a...
698
7539 report-malicious-repository aradotso/security-skills
Report Malicious Repository Skill by ara.so — Security Skills collection. ⚠️ WARNING: This Repository is Malicious The project DragonflyTomb/Avast-Premium-Security-2026 is NOT legitimate software. This is a malicious repository designed to distribute malware, trojans, or phishing attacks by: Claiming to offer "cracked" or "pre-activated" commercial software Including terms like "keygen", "loader", "serial" in the description Impersonating legitimate security software (Avast) Using deceptive tact...
698
7540 v3 security overhaul ruvnet/ruflo
V3 Security Overhaul What This Skill Does Orchestrates comprehensive security overhaul for claude-flow v3, addressing critical vulnerabilities and establishing security-first development practices using specialized v3 security agents. Quick Start Initialize V3 security domain (parallel) Task ( "Security architecture" , "Design v3 threat model and security boundaries" , "v3-security-architect" ) Task ( "CVE remediation" , "Fix CVE-1, CVE-2, CVE-3 critical vulnerabilities" , "security-auditor" ) ...
698
7541 product-hunt-launch kostja94/marketing-skills
Product Hunt Launch Optimize your Product Hunt launch with research and visuals via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate gallery hero image belt app run falai/flux-dev-lora --input '{ "prompt": "clean product showcase, modern SaaS dashboard interface on laptop screen, floating UI elements around it, soft gradient background from blue to purple, professional marketing hero shot, minimal clean design", "width": 1248, "height": ...
697
7542 go-error-handling cxuu/golang-skills
Go Error Handling In Go, errors are values - they are created by code and consumed by code. This skill covers how to return, structure, wrap, and handle errors effectively. Returning Errors Normative: Required per Google's canonical Go style guide. Use the error Type Use error to signal that a function can fail. By convention, error is the last result parameter. // Good: func Good() error { /* ... */ } func GoodLookup() (*Result, error) { // ... if err != nil { return nil,...
697
7543 filament-pro marcelorodrigo/agent-skills
Filament v5 Build powerful Laravel admin panels using Filament v5's server-driven UI with Schemas and Livewire v4 reactivity. Overview Filament v5 is a Laravel admin panel framework that provides complete CRUD interfaces, forms, tables, and dashboard components through a declarative PHP API. Built on Livewire v4, it offers real-time reactivity without writing JavaScript. Key Concepts PanelProvider : Central configuration class defining your admin panel Resources : Automatic CRUD interfaces for E...
697
7544 pdf tfriedel/claude-office-skills
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
697
7545 stanley-druckenmiller-investment tradermonty/claude-trading-skills
Druckenmiller Strategy Synthesizer Purpose Synthesize outputs from 8 upstream analysis skills (5 required + 3 optional) into a single composite conviction score (0-100), classify the market into one of 4 Druckenmiller patterns, and generate actionable allocation recommendations. This is a meta-skill that consumes structured JSON outputs from other skills — it requires no API keys of its own. When to Use This Skill English: User asks "What's my overall conviction?" or "How should I be positioned?...
697
7546 find-models replicate/skills
Always search the API for current models The AI model landscape changes weekly. New models ship constantly and older ones are deprecated or surpassed. Don't rely on model names you've seen before, including names from past conversations or training data. A specific model you "know" may no longer be the best choice, may be slower than newer alternatives, or may not exist anymore. Always start by querying the Replicate API. Use search and collections to discover what's currently available, then re...
697
7547 brand-monitoring kostja94/marketing-skills
Strategies: Brand Monitoring Guides ongoing brand monitoring—detecting impersonation, trademark infringement, counterfeit products, and brand abuse before they cause harm. Complements brand-protection (reactive: report, takedown); this skill covers proactive monitoring setup and tool selection. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly ...
696
7548 ffmpeg-analyse-video fabriqaai/ffmpeg-analyse-video-skill
FFmpeg Video Analysis Extract frames from video files with ffmpeg. Delegate frame reading to sub-agents to preserve the main context window. Synthesise a structured timestamped summary from text-only sub-agent reports. Architecture: Context-Efficient Sub-Agent Pipeline Problem : Reading dozens of images into the main conversation context consumes most of the context window, leaving little room for synthesis and follow-up. Solution : A 3-phase pipeline: Main Agent Sub-Age...
696
7549 create-assistant vapiai/skills
Vapi Assistant Creation Create fully configured voice AI assistants using the Vapi API. Assistants combine a language model, voice, and transcriber to handle real-time phone and web conversations. Setup: Ensure VAPI_API_KEY is set. See the setup-api-key skill if needed. Quick Start cURL curl -X POST https://api.vapi.ai/assistant \ -H "Authorization: Bearer $VAPI_API_KEY " \ -H "Content-Type: application/json" \ -d '{ "name": "Support Assistant", "firstMessage": "Hello! How can I help you today?"...
696
7550 scientific-slides k-dense-ai/scientific-agent-skills
Scientific Slides Overview Scientific presentations are a critical medium for communicating research, sharing findings, and engaging with academic and professional audiences. This skill provides comprehensive guidance for creating effective scientific presentations, from structure and content development to visual design and delivery preparation. Key Focus: Oral presentations for conferences, seminars, defenses, and professional talks. CRITICAL DESIGN PHILOSOPHY: Scientific presentations shou...
696