███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 2251 | product-capability | affaan-m/everything-claude-code |
Product Capability This skill turns product intent into explicit engineering constraints. Use it when the gap is not "what should we build?" but "what exactly must be true before implementation starts?" When to Use A PRD, roadmap item, discussion, or founder note exists, but the implementation constraints are still implicit A feature crosses multiple services, repos, or teams and needs a capability contract before coding Product intent is clear, but architecture, data, lifecycle, or policy impli...
|
2.4K |
| 2252 | golang-samber-lo | samber/cc-skills-golang |
Persona: You are a Go engineer who prefers declarative collection transforms over manual loops. You reach for lo to eliminate boilerplate, but you know when the stdlib is enough and when to upgrade to lop , lom , or loi . samber/lo — Functional Utilities for Go Lodash-inspired, generics-first utility library with 500+ type-safe helpers for slices, maps, strings, math, channels, tuples, and concurrency. Zero external dependencies. Immutable by default. Official Resources: github.com/samber/lo lo....
|
2.4K |
| 2253 | address-sanitizer | trailofbits/skills |
AddressSanitizer (ASan) AddressSanitizer (ASan) is a widely adopted memory error detection tool used extensively during software testing, particularly fuzzing. It helps detect memory corruption bugs that might otherwise go unnoticed, such as buffer overflows, use-after-free errors, and other memory safety violations. Overview ASan is a standard practice in fuzzing due to its effectiveness in identifying memory vulnerabilities. It instruments code at compile time to track memory allocations an...
|
2.4K |
| 2254 | golang-samber-do | samber/cc-skills-golang |
Persona: You are a Go architect setting up dependency injection. You keep the container at the composition root, depend on interfaces not concrete types, and treat provider errors as first-class failures. Using samber/do for Dependency Injection in Go Type-safe dependency injection toolkit for Go based on Go 1.18+ generics. Official Resources: pkg.go.dev/github.com/samber/do/v2 do.samber.dev github.com/samber/do/v2 This skill is not exhaustive. Please refer to library documentation and code exam...
|
2.4K |
| 2255 | golang-samber-oops | samber/cc-skills-golang |
Persona: You are a Go engineer who treats errors as structured data. Every error carries enough context — domain, attributes, trace — for an on-call engineer to diagnose the problem without asking the developer. samber/oops Structured Error Handling samber/oops is a drop-in replacement for Go's standard error handling that adds structured context, stack traces, error codes, public messages, and panic recovery. Variable data goes in .With() attributes (not the message string), so APM tools (Datad...
|
2.4K |
| 2256 | cargo-fuzz | trailofbits/skills |
cargo-fuzz cargo-fuzz is the de facto choice for fuzzing Rust projects when using Cargo. It uses libFuzzer as the backend and provides a convenient Cargo subcommand that automatically enables relevant compilation flags for your Rust project, including support for sanitizers like AddressSanitizer. When to Use cargo-fuzz is currently the primary and most mature fuzzing solution for Rust projects using Cargo. Fuzzer Best For Complexity cargo-fuzz Cargo-based Rust projects, quick setup Low AFL++...
|
2.4K |
| 2257 | nodejs-keccak256 | affaan-m/everything-claude-code |
Node.js Keccak-256 Ethereum uses Keccak-256, not the NIST-standardized SHA3 variant exposed by Node's crypto.createHash('sha3-256') . When to Use Computing Ethereum function selectors or event topics Building EIP-712, signature, Merkle, or storage-slot helpers in JS/TS Reviewing any code that hashes Ethereum data with Node crypto directly How It Works The two algorithms produce different outputs for the same input, and Node will not warn you. import crypto from 'crypto' ; import { keccak256 , to...
|
2.4K |
| 2258 | wecomcli-manage-doc | wecomteam/wecom-cli |
企业微信文档管理 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 管理企业微信文档的创建、读取和编辑。所有接口支持通过 docid 或 url 二选一定位文档。 调用方式 通过 wecom-cli 调用,品类为 doc : wecom-cli doc < tool_name > '<json_params>' 返回格式说明 所有接口返回 JSON 对象,包含以下公共字段: 字段 类型 说明 errcode integer 返回码, 0 表示成功,非 0 表示失败 errmsg string 错误信息,成功时为 "ok" 当 errcode 不为 0 时,说明接口调用失败,可重试 1 次;若仍失败,将 errcode 和 errmsg 展示给用户。 get_doc_content 获取文档完整内容数据,只能以 Markdown 格式返回。采用 异步轮询机制 :首次调用无需传 task_id ,接口返回 task_id ;若 task_done 为 false,需携带该 task_id 再次调用,直到 task_done 为 true 时返...
|
2.4K |
| 2259 | wecomcli-manage-smartsheet-data | wecomteam/wecom-cli |
企业微信智能表格数据管理 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 管理智能表格中的记录(行数据)。所有接口支持通过 docid 或 url 二选一定位文档。 CLI 调用方式 通过 wecom-cli 调用,品类为 doc : wecom-cli doc < tool_name > '<json_params>' 返回格式说明 所有接口返回 JSON 对象,包含以下公共字段: 字段 类型 说明 errcode integer 返回码, 0 表示成功,非 0 表示失败 errmsg string 错误信息,成功时为 "ok" 当 errcode 不为 0 时,说明接口调用失败,可重试 1 次;若仍失败,将 errcode 和 errmsg 展示给用户。 smartsheet_get_records 查询子表全部记录。 通过 sheetid: wecom-cli doc smartsheet_get_records '{"docid": "DOCID", "sheet_id": "SHEETID"}' 或通过 URL: wecom-...
|
2.4K |
| 2260 | wecomcli-get-meeting | wecomteam/wecom-cli |
企业微信会议查询技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 概述 wecomcli-get-meeting 提供企业微信会议查询能力, 包含以下功能: 查询会议列表 - 按用户和时间范围查询会议 ID 列表 (限制: 当日及前后 30 天, 上限 100 个) 获取会议详情 - 通过会议 ID 查询完整会议信息 命令调用方式 执行指定命令: wecom-cli meeting < tool_name > '<json_params>' 命令详细说明 1. 查询会议列表 (list_user_meetings) 查询指定用户在时间范围内的会议 ID 列表. 执行命令 wecom-cli meeting list_user_meetings '{"begin_datetime": "2026-03-01 00:00", "end_datetime": "2026-03-31 23:59", "limit": 100}' 入参说明 参数 类型 必填 说明 begin_datetime string 否 查询起始时间, 格式: YYY...
|
2.4K |
| 2261 | wecomcli-get-todo-list | wecomteam/wecom-cli |
企业微信待办列表查询技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 通过 wecom-cli 查询企业微信待办列表,支持按时间过滤和分页。 行为策略 查完列表必须查详情 : 本接口只返回待办 ID 和状态等概要信息,不包含待办的实际内容和分派人。对用户来说,没有内容的待办列表毫无用处——他们想知道的是"要做什么",而不是一串 ID。因此,每次调用 get_todo_list 拿到结果后,都要紧接着用返回的 todo_id 列表调用 wecomcli-get-todo-detail 获取完整详情(内容、分派人等),然后再向用户展示。这不是可选步骤,而是完成用户请求的必要环节。 分页未拉完时必须提醒用户 : 接口是分页的,不要求一次性拉完所有数据。但如果响应中 has_more 为 true ,说明后面还有待办没有返回——这时你在展示当前结果的同时,必须明确告诉用户"还有更多待办未显示,是否需要继续查看?"。用户可能不知道后面还有数据,如果你不说,他们会以为看到的就是全部,这会导致遗漏重要待办。这是一个容易被忽略但后果严重的点,请务必...
|
2.4K |
| 2262 | wecomcli-manage-smartsheet-schema | wecomteam/wecom-cli |
企业微信智能表格结构管理 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 管理智能表格的子表和字段(列)结构。所有接口支持通过 docid 或 url 二选一定位文档。 调用方式 通过 wecom-cli 调用,品类为 doc : wecom-cli doc < tool_name > '<json_params>' 返回格式说明 所有接口返回 JSON 对象,包含以下公共字段: 字段 类型 说明 errcode integer 返回码, 0 表示成功,非 0 表示失败 errmsg string 错误信息,成功时为 "ok" 当 errcode 不为 0 时,说明接口调用失败,可重试 1 次;若仍失败,将 errcode 和 errmsg 展示给用户。 子表管理 smartsheet_get_sheet 查询文档中所有子表信息,返回 sheet_id、title、类型等。 wecom-cli doc smartsheet_get_sheet '{"docid": "DOCID"}' smartsheet_add_sheet 添加空子表...
|
2.4K |
| 2263 | wecomcli-edit-meeting | wecomteam/wecom-cli |
企业微信会议管理技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 概述 wecomcli-edit-meeting 提供企业微信会议管理能力, 包含以下功能: 取消会议 - 取消指定的预约会议 更新会议受邀成员 - 修改会议的参与人列表 命令调用方式 调用指定命令: wecom-cli meeting < tool_name > '<json_params>' 命令详细说明 1. 取消会议 (cancel_meeting) 取消指定的预约会议. 调用命令 wecom-cli meeting cancel_meeting '{"meetingid": "<会议id>"}' 入参说明 参数 类型 必填 说明 meetingid string 是 会议 ID, 通过 wecomcli-get-meeting 技能获取 返回参数 { "errcode" : 0 , "errmsg" : "ok" } 2. 更新会议受邀成员 (set_invite_meeting_members) 更新会议的受邀成员列表 (全量覆盖). 调用命令 wecom...
|
2.4K |
| 2264 | wecomcli-manage-schedule | wecomteam/wecom-cli |
企业微信日程管理技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 通过 wecom-cli schedule <接口名> '<json入参>' 与企业微信日程系统交互。 注意事项 日程列表查询仅支持 当日前后 30 天 ,时间格式 YYYY-MM-DD 或 YYYY-MM-DD HH:MM:SS 涉及参与者 userid 时,需先使用 wecomcli-lookup-contact 技能获取;存在同名时展示候选让用户选择(禁止暴露 userid) 创建/修改/取消前,先确认目标日程和参与者信息 errcode != 0 时展示错误信息;返回的 start_time / end_time 为 Unix 时间戳(秒),需转为可读格式 注意时间格式转换 :接口入参使用字符串格式(如 YYYY-MM-DD HH:MM:SS ),但返回值多为 Unix 时间戳,使用时需进行格式转换 接口列表 get_schedule_list_by_range — 查询日程 ID 列表 wecom-cli schedule get_schedule_list...
|
2.4K |
| 2265 | wecomcli-get-msg | wecomteam/wecom-cli |
企业微信消息技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 通过 wecom-cli msg <接口名> '<json入参>' 与企业微信消息系统交互。 接口列表 get_msg_chat_list — 获取会话列表 wecom-cli msg get_msg_chat_list '{"begin_time": "2026-03-11 00:00:00", "end_time": "2026-03-17 23:59:59"}' 按时间范围查询有消息的会话列表,支持分页。参见 API 详情 。 get_message — 拉取会话消息 wecom-cli msg get_message '{"chat_type": 1, "chatid": "zhangsan", "begin_time": "2026-03-17 09:00:00", "end_time": "2026-03-17 18:00:00"}' 根据会话类型和 ID 拉取指定时间范围内的消息记录,支持分页。支持 text/image/file/voice/video 消...
|
2.4K |
| 2266 | wecomcli-lookup-contact | wecomteam/wecom-cli |
通讯录成员查询技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 获取当前用户可见范围内的通讯录成员,并在本地按姓名/别名进行筛选匹配。 操作 1. 获取全量通讯录成员 获取当前用户可见范围内的所有企业成员信息: 调用示例: wecom-cli contact get_userlist '{}' 返回格式: { "errcode" : 0 , "errmsg" : "ok" , "userlist" : [ { "userid" : "zhangsan" , "name" : "张三" , "alias" : "Sam" } , { "userid" : "lisi" , "name" : "李四" , "alias" : "" } ] } 返回字段说明: 字段 类型 说明 errcode integer 返回码, 0 表示成功 errmsg string 错误信息 userlist array 用户列表 userlist[].userid string 用户唯一 ID userlist[].name string 用户姓名 user...
|
2.4K |
| 2267 | wecomcli-get-todo-detail | wecomteam/wecom-cli |
企业微信待办详情查询技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 通过 wecom-cli 根据待办 ID 列表批量查询完整详情,包含待办内容和分派人信息。 行为策略 人员 ID 转姓名(关键步骤) : 返回结果中的 follower_id 和 creator_id 都是系统内部 ID,直接展示给用户毫无意义——用户不认识这些 ID,只认识姓名。因此在向用户展示待办详情之前,必须先调用 wecomcli-lookup-contact 技能获取通讯录,将所有 follower_id 和 creator_id 匹配为真实姓名。具体做法: wecom-cli contact get_userlist '{}' 如果通讯录中找不到某个 ID,展示时标注"未知用户(ID: xxx)"即可。 重试策略 : 遭遇"返回 HTTP 错误"或"HTTP 请求失败"时,主动重试,最多重试三次。 调用方式 wecom-cli todo get_todo_detail '<json格式的入参>' 参数说明 参数 类型 必填 说明 todo_id_lis...
|
2.4K |
| 2268 | wecomcli-edit-todo | wecomteam/wecom-cli |
企业微信待办事项编辑技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 通过 wecom-cli 对企业微信待办事项进行写操作,支持四种操作:创建待办、更新待办、删除待办、变更用户状态。 行为策略 重试策略 : 遭遇"返回 HTTP 错误"或"HTTP 请求失败"时,主动重试,最多重试三次。 操作 1. 创建待办 创建一个新的待办事项,可指定内容、分派人和提醒时间: wecom-cli todo create_todo '<json格式的入参>' 参数说明: 需要遵循 “注意事项”中的格式要求: 参数 类型 必填 说明 content string ✅ 待办内容 follower_list object ❌ 分派人列表,格式见注意事项第 7 条 remind_time string ❌ 提醒时间,格式: YYYY-MM-DD HH:mm:ss 调用示例: wecom-cli todo create_todo '{"content": "<待办的内容>", "remind_time": "2025-06-01 09:00:00"}' 返...
|
2.4K |
| 2269 | wecomcli-create-meeting | wecomteam/wecom-cli |
企业微信会议创建技能 wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。 概述 wecomcli-create-meeting 提供企业微信预约会议的创建能力, 支持设置会议参数, 邀请参与人等. 命令调用方式 执行指定命令: wecom-cli meeting < tool_name > '<json_params>' 命令详细说明 创建预约会议 (create_meeting) 创建一个预约会议, 支持设置会议参数配置等. 执行命令 wecom-cli meeting create_meeting '{"title": "<会议标题>", "meeting_start_datetime": "<会议开始时间>", "meeting_duration": <会议持续时长(秒)>}' 入参说明 参数 类型 必填 说明 title string 是 会议标题 meeting_start_datetime string 是 会议开始时间, 格式: YYYY-MM-DD HH:mm meeting_duration integer 是 会议持续时...
|
2.4K |
| 2270 | claude-api | affaan-m/everything-claude-code |
Building LLM-Powered Applications with Claude This skill helps you build LLM-powered applications with Claude. Choose the right surface based on your needs, detect the project language, then read the relevant language-specific documentation. Before You Start Scan the target file (or, if no target file, the prompt and project) for non-Anthropic provider markers — import openai , from openai , langchain_openai , OpenAI( , gpt-4 , gpt-5 , file names like agent-openai.py or *-generic.py , or any exp...
|
2.4K |
| 2271 | proactive-self-improving-agent | yanhongxi-openclaw/proactive-self-improving-agent |
Proactive Self-Improving Agent 自动捕获经验 · 安全进化 · 记录轨迹 让 agent 在日常工作中自动识别错误、纠正和最佳实践,结构化记录,安全地将经验沉淀为长期能力。 目录 核心理念 经验记录系统 经验进化路径 操作日志 行为准则 快速参考 1. 核心理念 两条腿走路: 记录 — 每次犯错、被纠正、发现更好做法时,立刻结构化记录 进化 — 反复出现的经验自动晋升为永久能力,但有护栏防止漂移 核心法则: 如果一个经验值得记住,就必须写到文件里。脑子里的"记住了"不算数。 去重法则: 触发 ≠ 必须写入。每次触发时先判断:这个经验是否 真正新颖 ?如果没什么可学的,或者本质上已经包含在已有条目中, 直接跳过,不写入 。避免用重复的低价值记录污染 .learnings/。 2. 经验记录系统 2.1 触发条件 检测到以下 7 种场景 时, 评估是否有新经验值得记录 : 场景 记录到 类别 1 命令/操作失败 ERRORS.md - 2 用户纠正("不对"/"应该是…"/"Actually…") LEARNINGS.md correction 3 用户需要...
|
2.4K |
| 2272 | xiaohongshu-note-analyzer | softbread/xiaohongshu-doctor |
小红书笔记分析器 (XiaoHongShu Note Analyzer) 对小红书笔记进行全方位分析,提供优化建议,提升内容质量和曝光率。 分析维度 关键词分析 — 搜索热度、关键词布局、标签优化 标题/首段吸引力 — 爆款标题元素、首图文案 敏感内容风险 — 违规词检测、限流风险评估 商业化程度 — 软广硬广识别、自然度评分 互动触发潜力 — 讨论点、分享动机、收藏价值 内容结构 — 排版、emoji使用、段落节奏 分析流程 1. 提取笔记内容 → 标题、正文、标签、图片描述 2. 关键词分析 → 核心词、长尾词、布局检查 3. 敏感词扫描 → 违规风险、限流风险 4. 商业化评估 → 广告痕迹、自然度 5. 互动潜力评估 → 讨论点、情感共鸣 6. 生成优化建议 → 具体修改方案 1. 关键词分析 检查要点 维度 优秀 待改进 核心关键词 标题+首段+正文+标签都包含 仅出现1-2处 长尾关键词 3-5个相关长尾词自然分布 无长尾词或堆砌 标签数量 5-10个相关标签 <3个或>15个 关键词密度 2-3%自然出现 <1%或>5%堆砌 关键词布局公式 标题: 必含核心关键词 ...
|
2.4K |
| 2273 | health | tw93/claude-health |
Health: Audit the Six-Layer Stack Prefix your first line with 🥷 inline, not as its own paragraph. Audit the current project's Claude Code setup against the six-layer framework: CLAUDE.md → rules → skills → hooks → subagents → verifiers Find violations. Identify the misaligned layer. Calibrate to project complexity only. Output language: Check in order: (1) CLAUDE.md Communication rule (global takes precedence over local); (2) language of the user's recent conversation messages; (3) default Engl...
|
2.4K |
| 2274 | google-cloud-recipe-networking-observability | google/skills |
Google Cloud Networking Observability Expert 🛑 Core Directive: Results First Identify the Primary Source : Quickly determine if the user needs firewall logs, threat logs, Cloud NAT, VPC Flow logs, or metrics. Execute & Present : Perform the minimum required query to get a direct answer. Definitive Termination : Once you identify the requested data, regardless of the value (including 0, null, or "No traffic"), present the finding and call the finish tool in the same turn. Do NOT attempt to find "...
|
2.4K |
| 2275 | mini-browser | runablehq/mini-browser |
mini-browser (mb) — Browser CLI for Agents mb is a browser CLI where each command is a small Unix tool. It talks to Chrome over CDP (port 9222) via puppeteer-core. Setup (only if not already available) Setup is only needed when mb is not installed or Chrome is not reachable. Run these checks first — if both pass, skip straight to the Command Reference. Check if ready 1. Is mb installed? which mb && echo "mb: ok" || echo "mb: MISSING" 2. Is Chrome listening on CDP? curl -sf http://127.0.0.1:922...
|
2.4K |
| 2276 | resciencelab/opc-skills |
Reddit Skill Get posts, comments, subreddit info, and user profiles from Reddit via the public JSON API. Prerequisites No API key required! Reddit's public JSON API works without authentication. Quick Check: cd <skill_directory> python3 scripts/get_posts.py python --limit 3 Commands All commands run from the skill directory. Subreddit Posts python3 scripts/get_posts.py python --limit 20 Hot posts (default) python3 scripts/get_posts.py python --sort new --limit 20 python3 scrip...
|
2.4K | |
| 2277 | authenticate-wallet | coinbase/agentic-wallet-skills |
Authenticating with the Payments Wallet When the wallet is not signed in (detected via npx awal status or when wallet operations fail with authentication errors), use the npx awal CLI to authenticate. If you have access to email, you can authenticate the wallet yourself, otherwise you'll need to ask your human to give you an email address and to tell you the OTP code they receive. Authentication Flow Authentication uses a two-step email OTP process: Step 1: Initiate login npx awal@2.0.3 auth log...
|
2.4K |
| 2278 | microservices-architect | jeffallan/claude-skills |
Microservices Architect Senior distributed systems architect specializing in cloud-native microservices architectures, resilience patterns, and operational excellence. Role Definition You are a senior microservices architect with 15+ years of experience designing distributed systems. You specialize in service decomposition, domain-driven design, resilience patterns, service mesh technologies, and cloud-native architectures. You design systems that scale, self-heal, and enable autonomous teams...
|
2.4K |
| 2279 | fuzzing-dictionary | trailofbits/skills |
Fuzzing Dictionary A fuzzing dictionary provides domain-specific tokens to guide the fuzzer toward interesting inputs. Instead of purely random mutations, the fuzzer incorporates known keywords, magic numbers, protocol commands, and format-specific strings that are more likely to reach deeper code paths in parsers, protocol handlers, and file format processors. Overview Dictionaries are text files containing quoted strings that represent meaningful tokens for your target. They help fuzzers by...
|
2.4K |
| 2280 | algorand-vulnerability-scanner | trailofbits/skills |
Algorand Vulnerability Scanner 1. Purpose Systematically scan Algorand smart contracts (TEAL and PyTeal) for platform-specific security vulnerabilities documented in Trail of Bits' "Not So Smart Contracts" database. This skill encodes 11 critical vulnerability patterns unique to Algorand's transaction model. 2. When to Use This Skill Auditing Algorand smart contracts (stateful applications or smart signatures) Reviewing TEAL assembly or PyTeal code Pre-audit security assessment of Algorand pro...
|
2.4K |
| 2281 | asc-cli-usage | rudrankriyam/app-store-connect-cli-skills |
asc cli usage Use this skill when you need to run or design asc commands for App Store Connect. Command discovery Always use --help to discover commands and flags. asc --help asc builds --help asc builds list --help Flag conventions Use explicit long flags (e.g., --app , --output ). No interactive prompts; destructive operations require --confirm . Use --paginate when the user wants all pages. Output formats Default output is minified JSON. Use --output table or --output markdown only for human-...
|
2.4K |
| 2282 | interpreting-culture-index | trailofbits/skills |
<essential_principles> Culture Index measures behavioral traits, not intelligence or skills. There is no "good" or "bad" profile. The 0-10 scale is just a ruler. What matters is distance from the red arrow (population mean at 50th percentile). The arrow position varies between surveys based on EU. Why the arrow moves: Higher EU scores cause the arrow to plot further right; lower EU causes it to plot further left. This does not affect validity—we always measure distance from wherever the arrow...
|
2.4K |
| 2283 | figma-implement-design | openai/skills |
Implement Design Overview This skill provides a structured workflow for translating Figma designs into production-ready code with pixel-perfect accuracy. It ensures consistent integration with the Figma MCP server, proper use of design tokens, and 1:1 visual parity with designs. Skill Boundaries Use this skill when the deliverable is code in the user's repository. If the user asks to create/edit/delete nodes inside Figma itself, switch to figma-use . If the user asks to build or update a full-pa...
|
2.4K |
| 2284 | ossfuzz | trailofbits/skills |
OSS-Fuzz OSS-Fuzz is an open-source project developed by Google that provides free distributed infrastructure for continuous fuzz testing. It streamlines the fuzzing process and facilitates simpler modifications. While only select projects are accepted into OSS-Fuzz, the project's core is open-source, allowing anyone to host their own instance for private projects. Overview OSS-Fuzz provides a simple CLI framework for building and starting harnesses or calculating their coverage. Additionally...
|
2.4K |
| 2285 | google-ads-manager | claude-office-skills/skills |
Google Ads Manager Comprehensive Google Ads campaign management including campaign setup, keyword research, ad copy generation, bid optimization, and performance reporting. Overview This skill covers: Campaign structure and setup Keyword research and grouping Ad copy creation (RSA format) Bidding strategy selection Performance analysis and optimization Campaign Structure Account Hierarchy Account ├── Campaign 1: Brand │ ├── Ad Group: Brand Terms │ │ ├── Keywords: [brand name], [brand + pro...
|
2.4K |
| 2286 | prompt-engineer | jeffallan/claude-skills |
Prompt Engineer Expert prompt engineer specializing in designing, optimizing, and evaluating prompts that maximize LLM performance across diverse use cases. When to Use This Skill Designing prompts for new LLM applications Optimizing existing prompts for better accuracy or efficiency Implementing chain-of-thought or few-shot learning Creating system prompts with personas and guardrails Building structured output schemas (JSON mode, function calling) Developing prompt evaluation and testing frame...
|
2.4K |
| 2287 | aflpp | trailofbits/skills |
AFL++ AFL++ is a fork of the original AFL fuzzer that offers better fuzzing performance and more advanced features while maintaining stability. A major benefit over libFuzzer is that AFL++ has stable support for running fuzzing campaigns on multiple cores, making it ideal for large-scale fuzzing efforts. When to Use Fuzzer Best For Complexity AFL++ Multi-core fuzzing, diverse mutations, mature projects Medium libFuzzer Quick setup, single-threaded, simple harnesses Low LibAFL Custom fuzzers, r...
|
2.4K |
| 2288 | playwright-interactive | openai/skills |
Playwright Interactive Skill Use a persistent js_repl Playwright session to debug local web or Electron apps, keep the same handles alive across iterations, and run functional plus visual QA without restarting the whole toolchain unless the process ownership changed. Preconditions js_repl must be enabled for this skill. If js_repl is missing, enable it in ~/.codex/config.toml : [ features ] js_repl = true You can also start a new session with --enable js_repl (equivalent to -c features.js_repl=t...
|
2.4K |
| 2289 | csharp-testing | affaan-m/everything-claude-code |
C Testing Patterns Comprehensive testing patterns for .NET applications using xUnit, FluentAssertions, and modern testing practices. When to Activate Writing new tests for C code Reviewing test quality and coverage Setting up test infrastructure for .NET projects Debugging flaky or slow tests Test Framework Stack Tool Purpose xUnit Test framework (preferred for .NET) FluentAssertions Readable assertion syntax NSubstitute or Moq Mocking dependencies Testcontainers Real infrastructure in integrati...
|
2.3K |
| 2290 | test-master | jeffallan/claude-skills |
Test Master Comprehensive testing specialist ensuring software quality through functional, performance, and security testing. Role Definition You are a senior QA engineer with 12+ years of testing experience. You think in three testing modes: [Test] for functional correctness, [Perf] for performance, [Security] for vulnerability testing. You ensure features work correctly, perform well, and are secure. When to Use This Skill Writing unit, integration, or E2E tests Creating test strategies an...
|
2.3K |
| 2291 | source-management | anthropics/knowledge-work-plugins |
Source Management If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Knows what sources are available, helps connect new ones, and manages how sources are queried. Checking Available Sources Determine which MCP sources are connected by checking available tools. Each source corresponds to a set of MCP tools: Source Key capabilities ~~chat Search messages, read channels and threads ~~email Search messages, read individual emails ~~cloud storage Searc...
|
2.3K |
| 2292 | clerk-react-patterns | clerk/skills |
React SPA Patterns This skill covers @clerk/react for Vite/CRA SPAs. For Next.js use clerk-nextjs-patterns . For TanStack Start use clerk-tanstack-patterns . What Do You Need? Task Reference useAuth / useUser / useClerk hooks references/hooks.md Protected routes with React Router references/protected-routes.md Custom sign-in / sign-up forms references/custom-flows.md React Router v6/v7 integration references/router-integration.md References Reference Description references/hooks.md useAuth, isLo...
|
2.3K |
| 2293 | constant-time-analysis | trailofbits/skills |
Constant-Time Analysis Analyze cryptographic code to detect operations that leak secret data through execution timing variations. When to Use User writing crypto code? ──yes──> Use this skill │ no │ v User asking about timing attacks? ──yes──> Use this skill │ no │ v Code handles secret keys/tokens? ──yes──> Use this skill │ no │ v Skip this skill Concrete triggers: User implements si...
|
2.3K |
| 2294 | terminal-ops | affaan-m/everything-claude-code |
Terminal Ops Use this when the user wants real repo execution: run commands, inspect git state, debug CI or builds, make a narrow fix, and report exactly what changed and what was verified. This skill is intentionally narrower than general coding guidance. It is an operator workflow for evidence-first terminal execution. Skill Stack Pull these ECC-native skills into the workflow when relevant: verification-loop for exact proving steps after changes tdd-workflow when the right fix needs regressio...
|
2.3K |
| 2295 | hipaa-compliance | affaan-m/everything-claude-code |
HIPAA Compliance Use this as the HIPAA-specific entrypoint when a task is clearly about US healthcare compliance. This skill intentionally stays thin and canonical: healthcare-phi-compliance remains the primary implementation skill for PHI/PII handling, data classification, audit logging, encryption, and leak prevention. healthcare-reviewer remains the specialized reviewer when code, architecture, or product behavior needs a healthcare-aware second pass. security-review still applies for general...
|
2.3K |
| 2296 | testing-handbook-generator | trailofbits/skills |
Testing Handbook Skill Generator Generate and maintain Claude Code skills from the Trail of Bits Testing Handbook. When to Use Invoke this skill when: Creating new security testing skills from handbook content User mentions "testing handbook", "appsec.guide", or asks about generating skills Bulk skill generation or refresh is needed Do NOT use for: General security testing questions (use the generated skills) Non-handbook skill creation Handbook Location The skill needs the Testing Handbo...
|
2.3K |
| 2297 | email-ops | affaan-m/everything-claude-code |
Email Ops Use this when the real task is mailbox work: triage, drafting, replying, sending, or proving a message landed in Sent. This is not a generic writing skill. It is an operator workflow around the actual mail surface. Skill Stack Pull these ECC-native skills into the workflow when relevant: brand-voice before drafting anything user-facing investor-outreach for investor, partner, or sponsor-facing mail customer-billing-ops when the thread is a billing/support incident rather than generic c...
|
2.3K |
| 2298 | golang-samber-slog | samber/cc-skills-golang |
Persona: You are a Go logging architect. You design log pipelines where every record flows through the right handlers — sampling drops noise early, formatters strip PII before records leave the process, and routers send errors to Sentry while info goes to Loki. samber/slog- — Structured Logging Pipeline for Go 20+ composable slog.Handler packages for Go 1.21+. Three core pipeline libraries plus HTTP middlewares and backend sinks that all implement the standard slog.Handler interface. Official re...
|
2.3K |
| 2299 | refero-design | referodesign/refero_skill |
No SKILL.md available for this skill. View on GitHub
|
2.3K |
| 2300 | hads | wshobson/agents |
HADS Claude Skill Version 1.0.0 · Human-AI Document Standard · 2026 · HADS 1.0.0 AI READING INSTRUCTION This skill teaches Claude how to read, generate, and validate HADS documents. Read all [SPEC] blocks before responding to any HADS-related request. Read [NOTE] blocks if you need context on intent or edge cases. 1. WHAT IS HADS [SPEC] HADS = Human-AI Document Standard Convention for Markdown technical documentation Four block types: [SPEC] , [NOTE] , [BUG] , [?] Every HADS document requires: H...
|
2.3K |