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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,410
总 Skills
159.6M
总安装量
2,739
贡献者
# Skill 仓库 描述 安装量
601 arrange pbakaus/impeccable
Assess and improve layout and spacing that feels monotonous, crowded, or structurally weak — turning generic arrangements into intentional, rhythmic compositions. MANDATORY PREPARATION Invoke /impeccable — it contains design principles, anti-patterns, and the Context Gathering Protocol . Follow the protocol before proceeding — if no design context exists yet, you MUST run /impeccable teach first. Assess Current Layout Analyze what's weak about the current spatial design: Spacing : Is spacing con...
40.1K
602 prospecting coreyhaines31/marketingskills
No SKILL.md available for this skill. View on GitHub Installs 1.3K Repository coreyhaines31/m…ngskills GitHub Stars 30.9K First Seen 3 days ago
39.9K
603 expo-cicd-workflows expo/skills
EAS Workflows Skill Help developers write and edit EAS CI/CD workflow YAML files. Reference Documentation Fetch these resources before generating or validating workflow files. Use the fetch script (implemented using Node.js) in this skill's scripts/ directory; it caches responses using ETags for efficiency: Fetch resources node {baseDir}/scripts/fetch.js <url> JSON Schema — https://api.expo.dev/v2/workflows/schema It is NECESSARY to fetch this schema Source of truth for validation All jo...
39.8K
604 pexo-agent pexoai/pexo-skills
Pexo — Your AI Creative Partner Say it. See it. Shape it. Ship it. Use when: The user wants to create content and expects a finished result — not raw assets to assemble. If someone can describe what they're imagining, Pexo can make it with them. Pexo is not a tool you operate. It's a creative partner you talk to. Describe your idea like you're texting a friend — messy, half-baked, vibes-only, whatever. Pexo picks up on your intent, suggests directions you didn't think of, pulls from the best AI ...
39.6K
605 gws-gmail-triage googleworkspace/cli
gmail +triage PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Show unread inbox summary (sender, subject, date) Usage gws gmail +triage Flags Flag Required Default Description --max — 20 Maximum messages to show (default: 20) --query — — Gmail search query (default: is:unread) --labels — — Include label names in output Examples gws gmail +triage gws gmail +triage --max 5 --query 'from:boss' gws gmail +triage ...
39.5K
606 gws-sheets-append googleworkspace/cli
sheets +append PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Append a row to a spreadsheet Usage gws sheets +append --spreadsheet < ID > Flags Flag Required Default Description --spreadsheet ✓ — Spreadsheet ID --values — — Comma-separated values (simple strings) --json-values — — JSON array of rows, e.g. '[["a","b"],["c","d"]]' Examples gws sheets +append --spreadsheet ID --values 'Alice,100,true' gws sheet...
39.2K
607 fastify-best-practices mcollina/skills
When to use Use this skill when you need to: Develop backend applications using Fastify Implement Fastify plugins and route handlers Get guidance on Fastify architecture and patterns Use TypeScript with Fastify (strip types) Implement testing with Fastify's inject method Configure validation, serialization, and error handling How to use Read individual rule files for detailed explanations and code examples: rules/plugins.md - Plugin development and encapsulation rules/routes.md - Route organizat...
38.7K
608 golang-code-style samber/cc-skills-golang
Community default. A company skill that explicitly supersedes samber/cc-skills-golang@golang-code-style skill takes precedence. Go Code Style Style rules that require human judgment — linters handle formatting, this skill handles clarity. For naming see samber/cc-skills-golang@golang-naming skill; for design patterns see samber/cc-skills-golang@golang-design-patterns skill; for struct/interface design see samber/cc-skills-golang@golang-structs-interfaces skill. "Clear is better than clever." — G...
38.4K
609 remotion-upgrade remotion-dev/skills
Upgrade Remotion Inspect the project manifests and lockfile to identify the package manager and workspaces. Preserve unrelated changes. Determine whether @remotion/cli is locally available. If it is, run: npx remotion upgrade Skip the manual package upgrade below. If @remotion/cli is not available, upgrade manually: Get the latest stable Remotion version with npm view remotion version . Find every installed remotion and @remotion/* dependency across the project and upgrade them all to that exact...
38.2K
610 agent-pulse jane-o-o-o-o/agent-pulse-skill
Agent Pulse Purpose Use the installed agent-pulse CLI as the source of truth for local AI-agent activity. The PyPI package is agentpulse-cli , while the command remains agent-pulse . Prefer running commands and summarizing their output over reading the Agent Pulse source code. Always enable UTF-8 on Windows before running commands because Agent Pulse output contains emoji and box drawing: $env :PYTHONUTF8= '1' $env :PYTHONIOENCODING= 'utf-8' If agent-pulse is not on PATH, ask before installing d...
38K
611 expo-api-routes expo/skills
When to Use API Routes Use API routes when you need: Server-side secrets — API keys, database credentials, or tokens that must never reach the client Database operations — Direct database queries that shouldn't be exposed Third-party API proxies — Hide API keys when calling external services (OpenAI, Stripe, etc.) Server-side validation — Validate data before database writes Webhook endpoints — Receive callbacks from services like Stripe or GitHub Rate limiting — Control access at the server l...
37.8K
612 golang-error-handling samber/cc-skills-golang
Persona: You are a Go reliability engineer. You treat every error as an event that must either be handled or propagated with context — silent failures and duplicate logs are equally unacceptable. Modes: Coding mode — writing new error handling code. Follow the best practices sequentially; optionally launch a background sub-agent to grep for violations in adjacent code (swallowed errors, log-and-return pairs) without blocking the main implementation. Review mode — reviewing a PR's error handling ...
37.8K
613 remotion google-labs-code/stitch-skills
Stitch to Remotion Walkthrough Videos You are a video production specialist focused on creating engaging walkthrough videos from app designs. You combine Stitch's screen retrieval capabilities with Remotion's programmatic video generation to produce smooth, professional presentations. Overview This skill enables you to create walkthrough videos that showcase app screens with professional transitions, zoom effects, and contextual text overlays. The workflow retrieves screens from Stitch projects ...
37.8K
614 gws-tasks googleworkspace/cli
tasks (v1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws tasks < resource > < method > [ flags ] API Resources tasklists delete — Deletes the authenticated user's specified task list. If the list contains assigned tasks, both the assigned tasks and the original tasks in the assignment surface (Docs, Chat Spaces) are deleted. get — Returns the authenticated user's specified task list. insert — Creates a ...
37.6K
615 golang-testing samber/cc-skills-golang
Persona: You are a Go engineer who treats tests as executable specifications. You write tests to constrain behavior, not to hit coverage targets. Thinking mode: Use ultrathink for test strategy design and failure analysis. Shallow reasoning misses edge cases and produces brittle tests that pass today but break tomorrow. Modes: Write mode — generating new tests for existing or new code. Work sequentially through the code under test; use gotests to scaffold table-driven tests, then enrich with edg...
37.6K
616 weread-skills tencent/wechatreading
WeRead — 微信读书助手 通过 Agent API Gateway 调用微信读书接口,提供搜索、书架、笔记、书评等能力。 支持的能力 能力 说明 用户示例 详细说明 搜索书籍 在书城搜索 "帮我搜一下三体" search.md 书籍信息 查看书籍详情、章节目录、阅读进度 "这本书有多少章" "我读到哪了" book.md 书架管理 查看书架 "看看我的书架" shelf.md 阅读统计 阅读时长、天数、偏好分析、阅读统计摘要 "我这个月读了多久" "今年读了几本书" readdata.md 笔记划线 查看个人笔记数量与内容,包括划线、想法/点评、书签数量 "看看我在三体里的笔记" "导出我的划线" "在这本书有多少笔记" notes.md 章节热门划线 查看书籍/章节热门划线、划线热度及划线下想法 "看看这章有什么热门划线" "这段话下面有什么想法" notes.md 书籍点评 查看书籍的公开点评 "三体这本书有什么点评?" "看看推荐的点评" review.md 推荐好书 个性化推荐/相似推荐 "给我推荐几本书" discover.md 根据用户意图参考对应说明文件了解接口参数...
37.3K
617 golang-design-patterns samber/cc-skills-golang
Persona: You are a Go architect who values simplicity and explicitness. You apply patterns only when they solve a real problem — not to demonstrate sophistication — and you push back on premature abstraction. Modes: Design mode — creating new APIs, packages, or application structure: ask the developer about their architecture preference before proposing patterns; favor the smallest pattern that satisfies the requirement. Review mode — auditing existing code for design issues: scan for init() abu...
37.2K
618 golang-performance samber/cc-skills-golang
Persona: You are a Go performance engineer. You never optimize without profiling first — measure, hypothesize, change one thing, re-measure. Thinking mode: Use ultrathink for performance optimization. Shallow analysis misidentifies bottlenecks — deep reasoning ensures the right optimization is applied to the right problem. Modes: Review mode (architecture) — broad scan of a package or service for structural anti-patterns (missing connection pools, unbounded goroutines, wrong data structures). Us...
37.2K
619 design-doc-mermaid spillwavesolutions/design-doc-mermaid
Mermaid Architect - Hierarchical Diagram and Documentation Skill Mermaid diagram and documentation system with specialized guides and code-to-diagram capabilities. Table of Contents Decision Tree Available Guides and Resources Usage Patterns Resilient Workflow Unicode Semantic Symbols Python Utilities Decision Tree Examples High-Contrast Styling File Organization Workflow Summary When to Use What Best Practices Learning Path Decision Tree How this skill works: User makes a request → Skill analyz...
37.2K
620 firebase-firestore-standard firebase/agent-skills
Firestore Standard Edition This skill provides a complete guide for getting started with Cloud Firestore Standard Edition, including provisioning, securing, and integrating it into your application. Provisioning To set up Cloud Firestore in your Firebase project and local environment, see provisioning.md . Security Rules For guidance on writing and deploying Firestore Security Rules to protect your data, see security_rules.md . SDK Usage To learn how to use Cloud Firestore in your application co...
37.1K
621 vue-best-practices vuejs-ai/skills
Vue Best Practices Workflow Use this skill as an instruction set. Follow the workflow in order unless the user explicitly asks for a different order. Core Principles Keep state predictable: one source of truth, derive everything else. Make data flow explicit: Props down, Events up for most cases. Favor small, focused components: easier to test, reuse, and maintain. Avoid unnecessary re-renders: use computed properties and watchers wisely. Readability counts: write clear, self-documenting code. 1...
37.1K
622 golang-security samber/cc-skills-golang
Persona: You are a senior Go security engineer. You apply security thinking both when auditing existing code and when writing new code — threats are easier to prevent than to fix. Thinking mode: Use ultrathink for security audits and vulnerability analysis. Security bugs hide in subtle interactions — deep reasoning catches what surface-level review misses. Modes: Review mode — reviewing a PR for security issues. Start from the changed files, then trace call sites and data flows into adjacent cod...
37K
623 next-cache-components vercel-labs/next-skills
Cache Components (Next.js 16+) Cache Components enable Partial Prerendering (PPR) - mix static, cached, and dynamic content in a single route. Enable Cache Components // next.config.ts import type { NextConfig } from 'next' const nextConfig: NextConfig = { cacheComponents: true, } export default nextConfig This replaces the old experimental.ppr flag. Three Content Types With Cache Components enabled, content falls into three categories: 1. Static (Auto-Prerendered) Synchronous code, ...
36.7K
624 anysearch anysearch-ai/anysearch-skill
Installation Guide for AI Agents When an AI agent is asked by the user to install this skill, follow the workflow below: Step 1 — Confirm with the user Before writing any file or running any shell command, confirm with the user: The source URL (where the skill files come from) The target path (where to install, e.g. ~/.openclaw/skills/anysearch/ ) Whether to overwrite existing files Step 2 — Check for existing trigger rule Check whether the agent's core instructions already declare a trigger rul...
36.7K
625 golang-concurrency samber/cc-skills-golang
Persona: You are a Go concurrency engineer. You assume every goroutine is a liability until proven necessary — correctness and leak-freedom come before performance. Modes: Write mode — implement concurrent code (goroutines, channels, sync primitives, worker pools, pipelines). Follow the sequential instructions below. Review mode — reviewing a PR's concurrent code changes. Focus on the diff: check for goroutine leaks, missing context propagation, ownership violations, and unprotected shared state...
36.5K
626 golang-naming samber/cc-skills-golang
Community default. A company skill that explicitly supersedes samber/cc-skills-golang@golang-naming skill takes precedence. Go Naming Conventions Go favors short, readable names. Capitalization controls visibility — uppercase is exported, lowercase is unexported. All identifiers MUST use MixedCaps, NEVER underscores. "Clear is better than clever." — Go Proverbs "Design the architecture, name the components, document the details." — Go Proverbs To ignore a rule, just add a comment to the code. Qu...
36.2K
627 firebase-firestore-enterprise-native-mode firebase/agent-skills
Firestore Enterprise Native Mode This skill provides a complete guide for getting started with Firestore Enterprise Native Mode, including provisioning, data model, security rules, and SDK usage. Provisioning To set up Firestore Enterprise Native Mode in your Firebase project and local environment, see provisioning.md . Data Model To learn about Firestore data model and how to organize your data, see data_model.md . Security Rules For guidance on writing and deploying Firestore Security Rules to...
36.1K
628 golang-context samber/cc-skills-golang
Community default. A company skill that explicitly supersedes samber/cc-skills-golang@golang-context skill takes precedence. Go context.Context Best Practices context.Context is Go's mechanism for propagating cancellation signals, deadlines, and request-scoped values across API boundaries and between goroutines. Think of it as the "session" of a request — it ties together every operation that belongs to the same unit of work. Best Practices Summary The same context MUST be propagated through the...
36.1K
629 golang-documentation samber/cc-skills-golang
Persona: You are a Go technical writer and API designer. You treat documentation as a first-class deliverable — accurate, example-driven, and written for the reader who has never seen this codebase before. Modes: Write mode — generating or filling in missing documentation (doc comments, README, CONTRIBUTING, CHANGELOG, llms.txt). Work sequentially through the checklist in Step 2, or parallelize across packages/files using sub-agents. Review mode — auditing existing documentation for completeness...
36.1K
630 golang-data-structures samber/cc-skills-golang
Persona: You are a Go engineer who understands data structure internals. You choose the right structure for the job — not the most familiar one — by reasoning about memory layout, allocation cost, and access patterns. Go Data Structures Built-in and standard library data structures: internals, correct usage, and selection guidance. For safety pitfalls (nil maps, append aliasing, defensive copies) see samber/cc-skills-golang@golang-safety skill. For channels and sync primitives see samber/cc-skil...
36.1K
631 golang-database samber/cc-skills-golang
Persona: You are a Go backend engineer who writes safe, explicit, and observable database code. You treat SQL as a first-class language — no ORMs, no magic — and you catch data integrity issues at the boundary, not deep in the application. Modes: Write mode — generating new repository functions, query helpers, or transaction wrappers: follow the skill's sequential instructions; launch a background agent to grep for existing query patterns and naming conventions in the codebase before generating ...
36.1K
632 golang-safety samber/cc-skills-golang
Persona: You are a defensive Go engineer. You treat every untested assumption about nil, capacity, and numeric range as a latent crash waiting to happen. Go Safety: Correctness & Defensive Coding Prevents programmer mistakes — bugs, panics, and silent data corruption in normal (non-adversarial) code. Security handles attackers; safety handles ourselves. Best Practices Summary Prefer generics over any when the type set is known — compiler catches mismatches instead of runtime panics Always use co...
36K
633 golang-modernize samber/cc-skills-golang
Persona: You are a Go modernization engineer. You keep codebases current with the latest Go idioms and standard library improvements — you prioritize safety and correctness fixes first, then readability, then gradual improvements. Modes: Inline mode (developer is actively coding): suggest only modernizations relevant to the current file or feature; mention other opportunities you noticed but do not touch unrelated files. Full-scan mode (explicit /golang-modernize invocation or CI): use up to 5 p...
36K
634 gws-slides googleworkspace/cli
slides (v1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws slides < resource > < method > [ flags ] API Resources presentations batchUpdate — Applies one or more updates to the presentation. Each request is validated before being applied. If any request is not valid, then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are a...
36K
635 golang-project-layout samber/cc-skills-golang
Persona: You are a Go project architect. You right-size structure to the problem — a script stays flat, a service gets layers only when justified by actual complexity. Go Project Layout Architecture Decision: Ask First When starting a new project, ask the developer what software architecture they prefer (clean architecture, hexagonal, DDD, flat structure, etc.). NEVER over-structure small projects — a 100-line CLI tool does not need layers of abstractions or dependency injection. → See samber/cc...
35.9K
636 golang-lint samber/cc-skills-golang
Persona: You are a Go code quality engineer. You treat linting as a first-class part of the development workflow — not a post-hoc cleanup step. Modes: Setup mode — configuring .golangci.yml , choosing linters, enabling CI: follow the configuration and workflow sections sequentially. Coding mode — writing new Go code: launch a background agent running golangci-lint run --fix on the modified files only while the main agent continues implementing the feature; surface results when it completes. Inte...
35.8K
637 golang-troubleshooting samber/cc-skills-golang
Persona: You are a Go systems debugger. You follow evidence, not intuition — instrument, reproduce, and trace root causes systematically. Thinking mode: Use ultrathink for debugging and root cause analysis. Rushed reasoning leads to symptom fixes — deep thinking finds the actual root cause. Modes: Single-issue debug (default): Follow the sequential Golden Rules — read the error, reproduce, one hypothesis at a time. Do not launch sub-agents; focused sequential investigation is faster for a single...
35.7K
638 golang-observability samber/cc-skills-golang
Persona: You are a Go observability engineer. You treat every unobserved production system as a liability — instrument proactively, correlate signals to diagnose, and never consider a feature done until it is observable. Modes: Coding / instrumentation (default): Add observability to new or existing code — declare metrics, add spans, set up structured logging, wire pprof toggles. Follow the sequential instrumentation guide. Review mode — reviewing a PR's instrumentation changes. Check that new c...
35.6K
639 gws-gmail-read googleworkspace/cli
gmail +read PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Read a message and extract its body or headers Usage gws gmail +read --id < ID > Flags Flag Required Default Description --id ✓ — The Gmail message ID to read --headers — — Include headers (From, To, Subject, Date) in the output --format — text Output format (text, json) --html — — Return HTML body instead of plain text --dry-run — — Show the request...
35.6K
640 golang-dependency-management samber/cc-skills-golang
Persona: You are a Go dependency steward. You treat every new dependency as a long-term maintenance commitment — you ask whether the standard library already solves the problem before reaching for an external package. Go Dependency Management AI Agent Rule: Ask Before Adding Dependencies Before running go get to add any new dependency, AI agents MUST ask the user for confirmation. AI agents can suggest packages that are unmaintained, low-quality, or unnecessary when the standard library already ...
35.6K
641 golang-popular-libraries samber/cc-skills-golang
Persona: You are a Go ecosystem expert. You know the library landscape well enough to recommend the simplest production-ready option — and to tell the developer when the standard library is already enough. Go Libraries and Frameworks Recommendations Core Philosophy When recommending libraries, prioritize: Production-readiness - Mature, well-maintained libraries with active communities Simplicity - Go's philosophy favors simple, idiomatic solutions Performance - Libraries that leverage Go's stren...
35.6K
642 value hugmouse/skills
Value This skill does absolutely nothing. When to Use This Skill Never.
35.5K
643 golang-structs-interfaces samber/cc-skills-golang
Persona: You are a Go type system designer. You favor small, composable interfaces and concrete return types — you design for testability and clarity, not for abstraction's sake. Community default. A company skill that explicitly supersedes samber/cc-skills-golang@golang-structs-interfaces skill takes precedence. Go Structs & Interfaces Interface Design Principles Keep Interfaces Small "The bigger the interface, the weaker the abstraction." — Go Proverbs Interfaces SHOULD have 1-3 methods. Small...
35.5K
644 golang-dependency-injection samber/cc-skills-golang
Persona: You are a Go software architect. You guide teams toward testable, loosely coupled designs — you choose the simplest DI approach that solves the problem, and you never over-engineer. Modes: Design mode (new project, new service, or adding a service to an existing DI setup): assess the existing dependency graph and lifecycle needs; recommend manual injection or a library from the decision table; then generate the wiring code. Refactor mode (existing coupled code): use up to 3 parallel sub...
35.5K
645 golang-benchmark samber/cc-skills-golang
Persona: You are a Go performance measurement engineer. You never draw conclusions from a single benchmark run — statistical rigor and controlled conditions are prerequisites before any optimization decision. Thinking mode: Use ultrathink for benchmark analysis, profile interpretation, and performance comparison tasks. Deep reasoning prevents misinterpreting profiling data and ensures statistically sound conclusions. Go Benchmarking & Performance Measurement Performance improvement does not exis...
35.4K
646 golang-cli samber/cc-skills-golang
Persona: You are a Go CLI engineer. You build tools that feel native to the Unix shell — composable, scriptable, and predictable under automation. Modes: Build — creating a new CLI from scratch: follow the project structure, root command setup, flag binding, and version embedding sections sequentially. Extend — adding subcommands, flags, or completions to an existing CLI: read the current command tree first, then apply changes consistent with the existing structure. Review — auditing an existing...
35.4K
647 brand-landingpage wshobson/agents
Brand Landing Page Designer You are a design consultant embedded in a developer's workflow. Your user has built a product, side project, or service and needs a landing page -- but hasn't thought much about brand identity, visual direction, or how to communicate their product to non-technical visitors. You guide them through a focused brand interview, translate their answers into design decisions, generate screens via Stitch, lead iterative refinement through structured design feedback, and deliv...
35.4K
648 golang-grpc samber/cc-skills-golang
Persona: You are a Go distributed systems engineer. You design gRPC services for correctness and operability — proper status codes, deadlines, interceptors, and graceful shutdown matter as much as the happy path. Modes: Build mode — implementing a new gRPC server or client from scratch. Review mode — auditing existing gRPC code for correctness, security, and operability issues. Go gRPC Best Practices Treat gRPC as a pure transport layer — keep it separate from business logic. The official Go imp...
35.3K
649 golang-continuous-integration samber/cc-skills-golang
Persona: You are a Go DevOps engineer. You treat CI as a quality gate — every pipeline decision is weighed against build speed, signal reliability, and security posture. Modes: Setup — adding CI to a project for the first time: start with the Quick Reference table, then generate workflows in this order: test → lint → security → release. Prefer the latest stable major version for each GitHub Action. Improve — auditing or extending an existing pipeline: read current workflow files first, identify ...
35.3K
650 golang-stretchr-testify samber/cc-skills-golang
Persona: You are a Go engineer who treats tests as executable specifications. You write tests to constrain behavior and make failures self-explanatory — not to hit coverage targets. Modes: Write mode — adding new tests or mocks to a codebase. Review mode — auditing existing test code for testify misuse. stretchr/testify testify complements Go's testing package with readable assertions, mocks, and suites. It does not replace testing — always use *testing.T as the entry point. This skill is not ex...
35.3K