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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
11751 comment-mode shipshitdev/library
Comment Mode Generate highlighted HTML with click-to-reveal comments for granular feedback on text. Alternative to rewrites—user keeps their voice, reviews feedback incrementally. When to Use User says: "comment on this", "leave comments on", "give feedback on" User pastes text and asks for feedback/critique User wants targeted feedback without a full rewrite Clarify Before Commenting Use AskUserQuestion to clarify scope when the request is ambiguous. Avoid over-commenting (overwhelming) or u...
64
11752 llmfit-hardware-model-matcher aradotso/trending-skills
llmfit Hardware Model Matcher Skill by ara.so — Daily 2026 Skills collection. llmfit detects your system's RAM, CPU, and GPU then scores hundreds of LLM models across quality, speed, fit, and context dimensions — telling you exactly which models will run well on your hardware. It ships with an interactive TUI and a CLI, supports multi-GPU, MoE architectures, dynamic quantization, and local runtime providers (Ollama, llama.cpp, MLX, Docker Model Runner). Installation macOS / Linux (Homebrew) brew...
64
11753 capacitor-performance cap-go/capacitor-skills
Performance Optimization for Capacitor Make your Capacitor apps fast and responsive. When to Use This Skill User has slow app User wants to optimize User has memory issues User needs profiling User has janky animations Quick Wins 1. Lazy Load Plugins // BAD - All plugins loaded at startup import { Camera } from '@capacitor/camera' ; import { Filesystem } from '@capacitor/filesystem' ; import { Geolocation } from '@capacitor/geolocation' ; // GOOD - Load when needed async function takePhoto ( ) {...
64
11754 groove-utilities-memory-log-daily andreadellacorte/groove
groove-utilities-memory-log-daily Outcome <memory>/daily/YYYY-MM-DD.md is created or updated with a structured end entry. The file may already exist from daily start (start-of-day structure); if so, append the closeout sections. The file is written so that the next daily start can verify yesterday had an end. Acceptance Criteria File exists at <memory>/daily/YYYY-MM-DD.md after command completes "Done today" section contains granular multi-level bullets sourced from completed tasks and git diff ...
64
11755 financial-goal-planner onewave-ai/claude-skills
Financial Goal Planner Create timelines for house down payment, retirement, college fund. Monthly savings targets, investment strategies, milestone tracking. Instructions You are an expert financial planner. Create detailed goal plans with realistic timelines, savings targets, and investment recommendations. Output Format Financial Goal Planner Output Generated: {timestamp} --- Results [Your formatted output here] --- Recommendations [Actionable next steps] Best Practices Be Spec...
64
11756 code-quality-expert oimiragieo/agent-studio
Code Quality Expert clean code When reviewing or writing code, apply these guidelines: Clean Code Guidelines Constants Over Magic Numbers Replace hard-coded values with named constants Use descriptive constant names that explain the value's purpose Keep constants at the top of the file or in a dedicated constants file Meaningful Names Variables, functions, and classes should reveal their purpose Names should explain why something exists and how it's used Avoid abbreviations unless they're univ...
64
11757 debugging-capacitor cap-go/capacitor-skills
Debugging Capacitor Applications Complete guide to debugging Capacitor apps on iOS and Android. When to Use This Skill User reports app crashes User needs to debug WebView/JavaScript User needs to debug native code User has network/API issues User sees unexpected behavior User asks how to debug Quick Reference: Debugging Tools Platform WebView Debug Native Debug Logs iOS Safari Web Inspector Xcode Debugger Console.app Android Chrome DevTools Android Studio adb logcat WebView Debugging iOS: Safar...
64
11758 api-error-handling secondsky/claude-skills
API Error Handling Overview Build robust error handling systems with standardized error responses, detailed logging, error categorization, and user-friendly error messages. When to Use Handling API errors consistently Debugging production issues Implementing error recovery strategies Monitoring error rates Providing meaningful error messages to clients Tracking error patterns Instructions 1. Standardized Error Response Format { "error": { "code": "VALIDATION_ERROR", "message": "Input...
64
11759 sentry-setup andrelandgraf/fullstackrecipes
Sentry Setup To set up Sentry Setup, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/sentry-setup If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/sentry-setup
64
11760 social-media epicenterhq/epicenter
Social Media Content Skill This skill provides guidelines for creating engaging social media content that drives engagement and shares. When to Use This Skill Use this skill when asked to: Write a LinkedIn post Create a Twitter/X thread Draft social media announcements Repurpose blog content for social Research First (Required) Before writing any social media content, you MUST delegate research: Use the task tool with subagent_type: "researcher" In the description, specify BOTH the topic A...
64
11761 umbraco-quickstart umbraco/umbraco-cms-backoffice-skills
Umbraco Quickstart Sets up everything needed for Umbraco extension development in one command. Usage Full setup with custom credentials /umbraco-quickstart MyUmbracoSite MyExtension --email a@a.co.uk --password Admin123456 With default credentials (admin@test.com / SecurePass1234) /umbraco-quickstart MyUmbracoSite MyExtension Just Umbraco instance name (will prompt for extension name) /umbraco-quickstart MyUmbracoSite No arguments (will detect existing or prompt for names) /umbraco-quickstar...
64
11762 jk avivsinai/jenkins-cli
`jk` is a GitHub CLI–style interface for Jenkins controllers. It provides modern, scriptable workflows for developers and operators. Dependency Check Before executing any `jk` command, verify the CLI is installed: ``` jk --version ``` If the command fails or `jk` is not found, install it using one of these methods: | macOS/Linux | `brew install avivsinai/tap/jk` | Windows | `scoop bucket add avivsinai https://github.com/avivsinai/scoop-bucket && scoop install jk` | Go | `go install...
64
11763 i18n-frontend-implementer patricio0312rev/skills
i18n Frontend Implementer Implement internationalization with next-intl, react-i18next, or similar libraries. Core Setup 1. Install: npm install next-intl or react-i18next 2. Create dictionaries: locales/en.json, locales/es.json 3. Provider setup: Wrap app with IntlProvider 4. Translation keys: Hierarchical namespace structure 5. Formatters: Date, number, currency formatting 6. Language switcher: Dropdown or flags UI Translation Structure { "common": { "nav": { "home": "Home", "about": "Ab...
64
11764 frontend-design s-hiraoku/synapse-a2a
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
64
11765 web-scraper liranudi/openclaw-web-scraper
No SKILL.md available for this skill. View on GitHub
64
11766 cli-building siviter-xyz/dot-agent
CLI Building Guidelines for building command-line interfaces with modern patterns and best practices. When to Use Creating new CLI tools or commands Building interactive terminal applications Adding commands to existing projects Implementing command-line interfaces Working with CLI frameworks Core Principles Async-first: All I/O operations should be async/await, avoid blocking operations Composable commands: Commands should be modular and reusable, use command composition Strategy pattern: Use...
64
11767 sql-expert personamanagmentlayer/pcl
SQL Expert Skill Expert guidance for writing, optimizing, and managing SQL databases across PostgreSQL, MySQL, SQLite, and SQL Server. Core Capabilities This skill enables you to: Write complex SQL queries with JOINs, subqueries, CTEs, and window functions Optimize slow queries using EXPLAIN plans and index recommendations Design database schemas with proper normalization (1NF, 2NF, 3NF, BCNF) Create effective indexes for query performance Write database migrations safely with rollback suppo...
64
11768 tvscreener ninehills/skills
tvscreener Use this skill for market queries with simple scripts first, then native Python when needed. Install python3 -m pip install -U tvscreener Python must be >=3.10 . Quick commands (run from skill root) Use Python 3.10+ in your preferred environment (venv/pyenv/system Python). Preset single-symbol output (recommended) python3 scripts/query_symbol.py --symbol HKEX:700 --market HONGKONG Custom query (fields + filters) bash scripts/run_query.sh \ --market CHINA \ --symbol SHSE:600519 \ --f...
64
11769 opensrc third774/dotfiles
opensrc CLI tool to fetch source code for packages/repos, giving AI coding agents deeper implementation context. When to Use Need to understand how a library/package works internally (not just its interface) Debugging issues where types alone are insufficient Exploring implementation patterns in dependencies Agent needs to reference actual source code of a package Quick Start Install globally or use npx npm install -g opensrc Fetch npm package (auto-detects installed version from lockfile) npx...
64
11770 groove-utilities-task-install andreadellacorte/groove
groove-utilities-task-install Outcome The configured task backend is installed and verified reachable. User is informed of what was installed and how to use it. Acceptance Criteria Backend CLI is available in PATH after install User is shown a confirmation with the installed version or a reachability check No-op if tasks: none If tasks: beans : AGENTS.md contains a <!-- groove:task:start --> stub pointing to beans prime Constraints Read tasks: from .groove/index.md to determine backend If tasks:...
64
11771 video-optimization kostja94/marketing-skills
SEO On-Page: Video Optimization Guides video optimization for Google Search (main results, video mode, Google Images, Discover), video sitemap, VideoObject schema, and indexing. Note : Google now prioritizes YouTube video results in search; YouTube + Reddit comprise ~78% of social media citations in AI Overviews. For YouTube-specific optimization, see youtube-seo ; for GEO distribution via YouTube, see generative-engine-optimization . References: Google Video SEO , Semrush YouTube SEO . When inv...
64
11772 groove-utilities-check andreadellacorte/groove
groove-utilities-check Bash fast-path This skill has a bash script at scripts/check.sh . Run it directly for faster, model-free execution: bash .agents/skills/groove-utilities-check/scripts/check.sh If the script exits 0, report its stdout and stop — do not continue with the steps below. If it exits non-zero or bash is unavailable, continue with the markdown steps. Outcome The latest published groove version is compared against the installed version. If a newer version is available, the user is ...
64
11773 react-doctor brianlovin/claude-config
React Doctor Scans your React codebase for security, performance, correctness, and architecture issues. Outputs a 0-100 score with actionable diagnostics. Usage npx -y react-doctor@latest . --verbose --diff Workflow Run after making changes to catch issues early. Fix errors first, then re-run to verify the score improved.
64
11774 spider-weave autumnsgrove/groveengine
Spider Weave The spider doesn't rush. It spins one thread at a time, anchoring each carefully before moving to the next. The web grows organically—radial strands first, then the spiral, each connection tested for strength. When complete, the web catches what matters while letting the wind pass through. Authentication woven this way is strong, resilient, and beautiful in its structure. When to Activate User asks to "add auth" or "set up authentication" User says "protect this route" or "add login...
64
11775 project-scaffolding autumnsgrove/groveengine
Project Scaffolding Skill When to Activate Activate this skill when: Creating new projects from scratch Setting up project directory structure Initializing configuration files Starting from BaseProject template Setting up technology-specific projects Quick Setup Methods Method Best For Time Automated Script Standard projects 2-3 min Manual Setup Custom configurations 10-15 min Directory Naming Conventions Directories: CamelCase (VideoProcessor, AudioTools) Date-based: kebab-case with YY...
64
11776 windows-kernel-security gmh5225/awesome-game-security
Windows Kernel Security Overview This skill covers Windows kernel security topics from the awesome-game-security collection, including driver development, system callbacks, security feature bypasses, and kernel-mode exploitation. Core Kernel Concepts Important Structures EPROCESS / ETHREAD PEB / TEB DRIVER_OBJECT DEVICE_OBJECT IRP (I/O Request Packet) Key Tables SSDT (System Service Descriptor Table) IDT (Interrupt Descriptor Table) GDT (Global Descriptor Table) PspCidTable (Process/Thread han...
64
11777 docker-workflows autumnsgrove/groveengine
Docker Workflows Skill When to Activate Activate this skill when: Creating Dockerfiles for applications Setting up docker-compose environments Containerizing Python/UV projects Configuring multi-stage builds Managing container secrets Quick Commands Build image docker build -t my-app:latest . Run container docker run -d -p 8000 :8000 --name my-app my-app:latest View logs docker logs -f my-app Execute in container docker exec -it my-app bash Stop and remove docker stop my-app && docker rm my...
64
11778 design-ui-window sharex/xerahs
You are an expert Avalonia UI/UX designer and refactor specialist. Follow these instructions exactly and in order. Do not skip steps, do not add business logic changes, do not break existing bindings or view-model public API. <ui_ux_reference_characteristics> Visual consistency across the entire window. Uniform spacing margins and alignment. Controls aligned to a clear grid. Controls use available space appropriately. Predictable control placement. Clear visual hierarchy with one primary action ...
64
11779 pdf-helper zackkorman/skills
PDF Helper Guidelines Jk this skill doesn't really do anything.
64
11780 b2c-ecdn salesforcecommercecloud/b2c-developer-tooling
B2C eCDN Skill Use the b2c CLI plugin to manage eCDN (embedded Content Delivery Network) zones, certificates, security settings, and more. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli ecdn zones list ). Prerequisites OAuth credentials with sfcc.cdn-zones scope (read operations) OAuth credentials with sfcc.cdn-zones.rw scope (write operations) Tenant ID for your B2C Commerce organization Examples List CDN Zones list all CDN zones for a...
64
11781 speckit-constitution dceoy/speckit-agent-skills
Spec Kit Constitution Skill When to Use Initial project setup or when governance principles need updates. Inputs User-provided principles or amendments. Existing .specify/memory/constitution.md and templates. If the request is missing or ambiguous, ask focused questions before proceeding. Workflow You are updating the project constitution at .specify/memory/constitution.md . This file is a TEMPLATE containing placeholder tokens in square brackets (e.g. [PROJECT_NAME] , [PRINCIPLE_1_NAME] ). Your...
64
11782 workflow-automation shipshitdev/library
Workflow Automation When to use this skill Repetitive tasks : running the same commands every time Complex builds : multi-step build processes Team onboarding : a consistent development environment Instructions Step 1: npm scripts package.json : { "scripts" : { "dev" : "nodemon src/index.ts" , "build" : "tsc && vite build" , "test" : "jest --coverage" , "test:watch" : "jest --watch" , "lint" : "eslint src --ext .ts,.tsx" , "lint:fix" : "eslint src --ext .ts,.tsx --fix" , "format" : "prettier --w...
64
11783 theme-factory 404kidwiz/claude-supercode-skills
Theme Factory Skill This skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact. Purpose To apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes: A cohesive color palette with hex codes Complementary font pairings for headers and body text A distinct visual identity suitable for different contexts an...
64
11784 svelte5-development autumnsgrove/groveengine
Svelte 5 Development Skill When to Activate Activate this skill when: Creating Svelte 5 components Working with SvelteKit routing Implementing runes ($state, $derived, $effect) Building forms with actions Setting up SvelteKit projects Quick Commands npx sv create my-app Create SvelteKit project cd my-app && pnpm install pnpm dev Start dev server (localhost:5173) pnpm build Build for production Runes Quick Reference Rune Purpose Example $state Reactive state let count = $state(0) $derived Comp...
64
11785 pytest-advanced laurigates/claude-plugins
Advanced Pytest Patterns Advanced pytest features for robust, maintainable test suites. When to Use This Skill Use this skill when... Use python-testing instead when... Writing fixtures with scopes/factories Basic test structure questions Parametrizing with complex data Simple assert patterns Setting up pytest plugins (cov, xdist) Running existing tests Organizing conftest.py hierarchy Test discovery basics Async testing with pytest-asyncio Synchronous unit tests Installation Core + common plug...
64
11786 react-optimise pproenca/dot-skills
React Optimise Best Practices Application-level performance optimization guide for React applications. Contains 43 rules across 8 categories, prioritized by impact from critical (React Compiler, bundle optimization) to incremental (memory management). When to Apply Optimizing React application performance or bundle size Adopting or troubleshooting React Compiler v1.0 Splitting bundles and configuring code splitting Improving Core Web Vitals (INP, LCP, CLS) Profiling render performance and identi...
64
11787 ecosystem-guide spences10/svelte-skills-kit
Claude Code Ecosystem Guide A curated set of tools for enhanced Claude Code workflows. The Stack Tool Type Purpose toolkit-skills Plugin Forced-eval hook + core skills (pair with any skills plugin) svelte-skills-kit Plugin Svelte/SvelteKit skills (pair with toolkit-skills) cclog CLI Sync transcripts → SQLite for analytics mcp-omnisearch MCP Unified search (Tavily, Kagi, GitHub, etc.) mcp-sqlite-tools MCP Safe SQLite operations mcpick CLI Toggle MCP servers dynamically research Skill Verified s...
64
11788 vulnerability-scanning secondsky/claude-skills
Vulnerability Scanning Overview Systematically identify security vulnerabilities in applications, dependencies, and infrastructure using automated scanning tools and manual security assessments. When to Use Pre-deployment security checks Continuous security monitoring Compliance audits (PCI-DSS, SOC 2) Dependency vulnerability detection Container security scanning Infrastructure security assessment Implementation Examples 1. Node.js Vulnerability Scanner // scanner.js - Comprehensive vulnerabi...
64
11789 file-manager ninehills/skills
文件管理技能 本技能提供文件和文件夹管理能力。 核心功能 1. 文件操作 创建文件 复制/移动文件 重命名文件 删除文件 2. 文件夹操作 创建文件夹 列出目录内容 删除文件夹(递归) 复制文件夹 3. 批量处理 按类型分类 批量重命名 查找重复文件 整理下载文件夹 安全规则 禁止操作 系统目录(/System, /usr, /bin 等) 其他用户的文件 没有明确确认的删除操作 需要确认 删除文件前列出将被删除的内容 覆盖已存在的文件前提醒 批量操作前显示预览 常用操作示例 整理下载文件夹 1. 创建分类目录 mkdir -p ~/Downloads/ { Documents,Images,Videos,Archives,Others } 2. 按扩展名移动 mv ~/Downloads/*.pdf ~/Downloads/Documents/ mv ~/Downloads/*. { jpg,png,gif } ~/Downloads/Images/ mv ~/Downloads/*. { mp4,mov,avi } ~/Downloads/Videos/ mv ~/Downlo...
64
11790 compose-patterns-2025 josiahsiegel/claude-plugin-marketplace
Docker Compose Patterns for Production (2025) Overview This skill documents production-ready Docker Compose patterns and best practices for 2025, based on official Docker documentation and industry standards. File Format Changes (2025) IMPORTANT: The version field is now obsolete in Docker Compose v2.42+. Correct (2025): services: app: image: myapp:latest Incorrect (deprecated): version: '3.8' DO NOT USE services: app: image: myapp:latest Multiple Environment Strategy Patt...
64
11791 firecrawl-scraper jackspace/claudeskillz
Firecrawl Web Scraper Skill Status : Production Ready Last Updated : 2026-01-20 Official Docs : https://docs.firecrawl.dev API Version : v2 SDK Versions : firecrawl-py 4.13.0+, @mendable/firecrawl-js 4.11.1+ What is Firecrawl? Firecrawl is a Web Data API for AI that turns websites into LLM-ready markdown or structured data. It handles: JavaScript rendering - Executes client-side JavaScript to capture dynamic content Anti-bot bypass - Gets past CAPTCHA and bot detection systems Format conversion ...
64
11792 automate-github-issues google-labs-code/jules-skills
Automate GitHub Issues with Jules You are setting up a repository to automatically analyze open GitHub issues, plan implementation tasks, and dispatch parallel Jules coding agents to fix them. What You're Setting Up A 5-phase automated pipeline that runs via GitHub Actions (or locally): Analyze — Fetch open issues and format as structured markdown Plan — A Jules session performs deep code-level triage and produces self-contained task prompts Validate — Verify no two tasks modify the same file (p...
64
11793 eachlabs-video-generation eachlabs/skills
EachLabs Video Generation Generate new videos from text prompts, images, or reference inputs using 165+ AI models via the EachLabs Predictions API. For editing existing videos (upscaling, lip sync, extension, subtitles), see the eachlabs-video-edit skill. Authentication Header: X-API-Key: <your-api-key> Set the EACHLABS_API_KEY environment variable or pass it directly. Get your key at eachlabs.ai . Quick Start 1. Create a Prediction curl -X POST https://api.eachlabs.ai/v1/prediction \ -H "Conten...
64
11794 configure-notifications yeachan-heo/oh-my-claudecode
Configure Notifications Set up OMC notification integrations so you're alerted when sessions end, need input, or complete background tasks. Routing Detect which provider the user wants based on their request or argument: If the trigger or argument contains "telegram" → follow the Telegram section If the trigger or argument contains "discord" → follow the Discord section If the trigger or argument contains "slack" → follow the Slack section If no provider is specified, use AskUserQuestion: Questi...
64
11795 api-security-hardening secondsky/claude-skills
API Security Hardening Overview Implement comprehensive API security measures including authentication, authorization, rate limiting, input validation, and attack prevention to protect against common vulnerabilities. When to Use New API development Security audit remediation Production API hardening Compliance requirements High-traffic API protection Public API exposure Implementation Examples 1. Node.js/Express API Security // secure-api.js - Comprehensive API security const express = require...
64
11796 xiaohongshu-automation wrt820232/xiaohongshu-automation
小红书自动化控制 Skill 概述 通过 Playwright MCP 工具连接到 OpenClaw 浏览器(CDP 端口 18800),实现小红书的自动化操作,包括发布内容、搜索、获取推荐、评论等功能。 前置条件 OpenClaw 浏览器已启动 :确保 OpenClaw 浏览器运行并开启 CDP 端口 18800 已登录小红书 :首次使用需在 OpenClaw 浏览器中手动登录小红书账号 Playwright MCP 可用 :确保 mcp__Playwright__* 工具集已配置 连接方式 使用 Playwright 的 browser_run_code 工具通过 CDP 连接到 OpenClaw 浏览器: // 连接到 OpenClaw 浏览器 const { chromium } = require ( 'playwright' ) ; const browser = await chromium . connectOverCDP ( 'http://localhost:18800' ) ; const context = browser . contexts ( ) [ 0 ...
64
11797 observability-edot-python-migrate elastic/agent-skills
EDOT Python Migration Read the migration guide before making changes: Migration guide EDOT Python setup EDOT Python configuration Guidelines Remove ALL classic APM references: elastic-apm from requirements, ElasticAPM(app) / elasticapm.contrib.* from application code, app.config['ELASTIC_APM'] blocks, and all ELASTIC_APM_* env vars Install elastic-opentelemetry via pip (add to requirements.txt or equivalent) Run edot-bootstrap --action=install during image build to install auto-instrumentation p...
64
11798 seedance-director crowscc/seedance-director
Seedance Director — AI 视频导演 1. 角色定义 你是一位专业的 AI 视频导演,精通传统影视制作方法论(剧本结构、分镜设计、镜头语言、声音设计)和即梦 Seedance 2.0 平台全部能力(纯文本生成、图生视频、运镜复刻、特效复刻、视频延长、一镜到底等)。 工作方式:像有经验的导演和用户聊天 — 快速抓住创意核心,给出专业方案,输出可直接使用的即梦提示词。根据用户水平自动调整沟通深度。 平台能力认知 :即梦 Seedance 2.0 完全支持中文对白与口型同步,角色说话时嘴型自动匹配台词。短剧/对白场景应直接使用屏幕台词,不要因为"AI 视频口型不准"而降级为旁白叙事。以 references/platform-capabilities.md 为唯一能力参考,禁止自行假设平台限制。 2. 参考文件导航 按需加载,不要一次性全部加载: 文件 何时加载 内容 references/platform-capabilities.md Phase 5 生成提示词时 10 种生成模式、技术参数、@引用规范 references/narrative-structures.m...
64
11799 video processor iamzhihuix/happy-claude-skills
Video Processor Instructions This skill provides comprehensive video processing utilities including YouTube video download, audio extraction, format conversion, and audio transcription using yt-dlp, FFmpeg, and OpenAI's Whisper model. Prerequisites Required tools (must be installed in your environment): yt-dlp : Video downloader for YouTube and thousands of other sites Install via pip pip install -U yt-dlp Verify installation yt-dlp --version FFmpeg : Multimedia framework for video/audio proce...
64
11800 accelint-ts-documentation gohypergiant/agent-skills
Code Documentation Skill Comprehensive skill for improving JavaScript/TypeScript documentation, including JSDoc comments, comment markers, and general comment quality. When to Activate This Skill Use this skill when the task involves: JSDoc Documentation Adding JSDoc comments to exported functions, types, interfaces, or classes Validating JSDoc completeness (missing @param, @returns, @template tags) Ensuring JSDoc @example tags use proper code fences Documenting object parameters with destructur...
64