Agent skills

Other skills

21,420 skills an agent can load when the work is Other — read straight from the source repositories, with what each one does, what ships alongside it, and where it came from.

Toolclaude-code 62,644codex 9,699cursor 6,852copilot 2,269windsurf 126cline 82
CategoryWorkflow & Productivity 11,684AI & Agents 4,965Data & Analytics 4,693Code Review & Quality 2,936Security 2,762Backend & API 2,480Design & Presentation 2,329Documentation 2,157Content & Marketing 2,001Testing & QA 1,723DevOps & Cloud 1,266Databases 1,124Frontend 1,015Business & Finance 706Media & Video 507Other 21,420
21,420 found
7,2977,344 · page 153 / 447
Сериализация структур C# в C++ через байтовый массивСериализует структуру C# в массив байтов с помощью BinaryWriter и десериализует её в C++ с помощью memcpy, используя GCHandle для…ECNU-ICALKСериализация структуры C# в байтовый массив для передачи в C++Реализует передачу сложных структур данных из C# в C++ путем ручной сериализации в байтовый массив (BinaryWriter) и…ECNU-ICALKC++ Code Golf ExpertGenerates the shortest possible C++ code for specified tasks, prioritizing brevity and character count minimization over…ECNU-ICALKC++ Coding Style: Pass by Value and Avoid ConstEnforces a specific C++ coding style where string parameters are passed by value (std::string) instead of by reference…ECNU-ICALKC 언어 인접 리스트 기반 방향성 그래프 생성 및 인접 행렬 출력C 언어를 사용하여 인접 리스트 구조로 방향성 그래프(Digraph)를 생성하고, 동시에 인접 행렬 형태로 출력합니다. 중복 간선, 자기 루프를 방지하며 음수 비용을 허용하는 조건을 충족합니다.ECNU-ICALKРеализация паттерна Фабрика для десериализации из файла в C++Создает расширяемую фабрику объектов в C++, которая создает экземпляры классов-наследников из файлового потока (std::istream) на…ECNU-ICALKC++类继承与多态代码实现根据用户提供的类继承关系描述、数据成员定义、输入输出样例及参考主函数,生成符合要求的C++代码。包含构造函数、成员函数重写及输入合法性校验。ECNU-ICALKC++通用容器模板编程规范编写支持std::map和std::unordered_map的通用C++模板函数,要求使用模板模板参数而非硬编码类型,处理const类型特征,并在指定时支持allocator参数且不构建临时对象。ECNU-ICALKC++代码添加中文注释当用户提供C++代码(如结构体、类定义)时,根据变量和函数名称的含义,在代码中添加中文注释以解释其功能。ECNU-ICALKC++多访问方式向量结构体生成生成使用union实现的C++结构体,支持通过xyz、rgb及数组v[3]三种方式访问同一内存,并遵循特定的typedef命名规范。ECNU-ICALKC++ 宏参数化命名空间重构将硬编码的命名空间及警告控制宏重构为参数化宏,支持通过配置文件更改库名前缀,实现头文件跨项目复用。ECNU-ICALKC# 数组分组与元素拼接将C#整数数组按照指定大小进行分组,并将每组内的元素转换为字符串后拼接(可指定分隔符),最终返回字符串数组。ECNU-ICALKC# 读取视频时长并格式化提供使用 C# 读取视频文件时长并将其格式化为指定位数(如7位数字符串)的代码方案。支持多种库(如FFmpeg、DirectShow.NET、WMPLib、FFmpeg.AutoGen)或命令行调用方式。ECNU-ICALKДекодирование битовых плоскостей в C++Создает код на C++ для извлечения символов из двумерного массива bitmap, где данные были скрыты в конкретных битовых слоях…ECNU-ICALKРеализация левого поворота АВЛ-дерева на C++Реализация алгоритма левого поворота (включая большой левый поворот) для АВЛ-дерева, представленного в виде массива структур, с…ECNU-ICALKРеализация паттерна Фабрика в C++ с чтением из файлаРеализация класса-фабрики (Singleton) для создания объектов по целочисленному ID, поддерживающего создание по умолчанию и…ECNU-ICALKC Election Vote Counter with Dynamic AlignmentA C program to read candidate names and votes from a file, calculate statistics (total, valid, invalid votes), determine winners…ECNU-ICALKC++ enable_if 模板参数约束根据用户指定的条件(如指针引用、继承关系),使用 std::enable_if 限制 C++ 模板函数的实例化,并移除不符合条件的重载。ECNU-ICALKC++ Exam Question ExplainerExplains the reasoning behind correct answers to C++ exam questions and provides comprehensive details on related topics.ECNU-ICALKC++ Explicit Constructor PolicyEnforce the use of the `explicit` keyword for all constructors to prevent implicit conversions and ensure type safety in the C++…ECNU-ICALKC get_digit_at_position function with while loopWrite a C function named get_digit_at_position that extracts a digit from a number at a specific position using a while loop.ECNU-ICALKC# HttpWebRequest 自动 Cookie 管理实现使用共享的 CookieContainer 实现 HttpWebRequest 的自动 Cookie 管理,包括初始 Cookie 设置、会话保持及跨请求状态同步,避免手动处理响应头。ECNU-ICALKC# HttpWebRequest Cookie自动管理提供使用C# HttpWebRequest和CookieContainer实现自动Cookie管理及会话保持的代码方案,适用于需要跨请求维持登录状态的场景。ECNU-ICALKC++ Line Game Pathfinding with Obstacle ConstraintsSolves the 'Line' game problem in C++ where a character must reach the end by jumping over non-empty sets of obstacles, optimized…ECNU-ICALKC Longest Consecutive Subsequence with HashingSolves the longest consecutive subsequence problem in C using a hashing approach, adhering to specific constraints on input size…ECNU-ICALKC++通用容器模板支持(支持Map/UnorderedMap及Allocator)编写C++通用模板函数,支持std::map和std::unordered_map作为通用容器传入,处理const正确性,支持可选的allocator模板参数,且禁止在函数内部构建临时对象。ECNU-ICALKC# Monte Carlo Tree Search Implementation with K&R StyleGenerates C# code for Monte Carlo Tree Search (MCTS) components, including game states, search nodes, UCB1 selection policies…ECNU-ICALKC Polynomial DAC/ADC Linearization with Temperature CompensationGenerates C code for linearizing DAC or ADC outputs using 3rd degree polynomial regression, including specific logic for…ECNU-ICALKC++ Priority Event Queue ImplementationRefactors a C++ EventManager to use a priority queue (std::priority_queue) instead of a standard FIFO queue, ensuring events are…ECNU-ICALKC Program for Currency Arbitrage DetectionSolve the currency arbitrage problem in C by finding the shortest sequence of exchanges that yields a profit greater than 1…ECNU-ICALKC Program Generation with Specific ConstraintsGenerates C code adhering to specific user-defined constraints regarding control flow structures, logical operators, and I/O…ECNU-ICALKC Program with Input Validation and Parity CheckGenerates C code that prompts for an integer, validates it within a range using a while loop and logical operators, and prints…ECNU-ICALKC++ Quantificational Logic Solver ImplementationImplements a C++ function to evaluate a 3-variable quantificational logic formula (QxQyQz F(x,y,z)) based on a 4x4x4 boolean…ECNU-ICALKC++ Raylib Province Class ImplementationImplement a C++ class using Raylib to manage, draw, save, and load 2D polygon provinces (map regions) with support for world…ECNU-ICALKC++ Recursive Fibonacci CLI Program GeneratorGenerates a C++ program that calculates the nth Fibonacci number using recursion, accepts input via command line arguments, and…ECNU-ICALKC# SendInput автоматизация мышиСоздание методов на C# для эмуляции действий мыши через WinAPI SendInput, включая криволинейное движение, прямолинейное…ECNU-ICALKcLanguage-specific super-code guidelines for c.sickn33C# SqlSugar 事务选择性回滚逻辑实现针对C# SqlSugar框架,设计顺序执行A、B、C三个操作的事务逻辑。要求:若C操作报错,仅回滚A操作,保留B操作;若B操作报错,回滚A操作;所有操作需在同一事务上下文中顺序执行。ECNU-ICALKc_stack_based_big_integer_additionImplements a C program to add two arbitrary-size integers using a linked-list stack structure. It reads operands from command…ECNU-ICALKC TCP Socket Optimization FunctionGenerates a C function to configure TCP socket options (TCP_NODELAY, TCP_CORK, TCP_NOPUSH, TCP_QUICKACK, IP_TOS) for either low…ECNU-ICALKC++ union结构体多别名访问实现使用union实现C++结构体,支持通过xyz、rgb及数组v[3]三种方式访问同一内存,并采用typedef tagFoo {} Foo;的命名风格。ECNU-ICALKРазработка графики и обработки изображений в C# Windows FormsГенерация кода для рисования геометрических примитивов с настраиваемыми стилями, создания анимации объектов и программной…ECNU-ICALKC++ Windows Winsock Multi-threaded URL VisitorDevelops a C++ console application for Windows that uses Winsock to perform concurrent TCP connections to a user-specified URL.…ECNU-ICALKУправление предметами в C# WinForms с динамическими свойствамиРеализация логики управления предметами в ListView, где иконка и имя зависят от уровня и зачарования, а свойства сбрасываются при…ECNU-ICALKC# WinForms HTTP监听器(.NET 4.0 兼容)在C# Windows Forms应用程序中编写一个HTTP监听函数,用于接收网页提交的数据。该技能特别针对.NET 4.0及旧版Visual…ECNU-ICALKC# WinForms Local Game Launcher LogicGenerates C# code for a Windows Forms 'Play' button that launches a game executable located in a relative subdirectory, handling…ECNU-ICALKca-a-cancer-journal-for-cliniciansUse when targeting CA: A Cancer Journal for Clinicians (CA Cancer J Clin) or deciding whether an oncology manuscript fits this…brycewang-stanfordca-add-depVet a new or changed third-party dependency for license, provenance, and supply-chain risk before any install runs.arbiterForge
← Prev153 / 447Next →
How the catalog works
What is an agent skill?

A folder with a SKILL.md inside — instructions, and often scripts and assets, that an AI agent loads when the task matches. Claude Code, Codex, Cursor and Copilot all read the same format, so one skill usually works across them.

Where does this catalog come from?

We read 660 source repositories straight from their file trees rather than from submitted listings — what you see is what is actually published. 98 repositories were rejected because they advertise skills but contain none: link lists, not folders.

Why is there no install counter?

Because install counts live in the registry that serves `npx skills add`, and that is not ours — publishing a number we cannot verify would be worse than showing none. Instead we show where a skill comes from and whether attention around its source is actually growing, measured from our own weekly snapshots.

Do you deduplicate?

Yes, and it matters more than expected. Aggregator repositories republish the same skill in several places — one source carried 6,317 SKILL.md files for 2,001 actual skills. We collapse by folder name and keep the canonical copy, so the catalog counts things, not copies.

Keep going