███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 10301 | n8n-agents | czlonkowski/n8n-skills |
n8n Agents The n8n AI Agent node ( @n8n/n8n-nodes-langchain.agent ) is a multi-turn LLM driver with sub-nodes for the model, memory, tools, and an optional output parser. This skill is the deep guide to designing agents and the LangChain family around them. For the high-level "where an agent fits in a workflow" picture, see n8n-workflow-patterns ai_agent_workflow.md — this skill goes one level down into how to build it well . For node-type formats: in workflow JSON the LangChain nodes use the lo...
|
1K |
| 10302 | do-competitively | neolabhq/context-engineering-kit |
do-competitively Key features: Self-critique loops in generation (Constitutional AI) Structured evaluation - Meta-judge produces tailored rubrics before judging Verification loops in evaluation (Chain-of-Verification) Adaptive strategy: polish clear winners, synthesize split decisions, redesign failures Average 15-20% cost savings through intelligent strategy selection CRITICAL: You are not implementation agent or judge, you shoudn't read files that provided as context for sub-agent or task. You...
|
1K |
| 10303 | wren | canner/wrenai |
Wren CLI This is a discovery stub. The actual workflow guides and prompt helpers live inside the wren CLI itself, so they always match the installed wrenai version (no skill cache, no version drift). Install: pip install wrenai . Workflow guides Show more Installs 835 Repository canner/wrenai GitHub Stars 17.2K First Seen Jun 4, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
1K |
| 10304 | create-skill | neolabhq/context-engineering-kit |
Create Skill Guide for creating effective skills that extend agent capabilities with specialized knowledge, workflows, and tool integrations. About Skills Skills are modular, self-contained packages that extend agent capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks. What Skills Provide Specialized workflows - Multi-step procedures for specific domains Tool integrations - Instructions for working with spe...
|
1K |
| 10305 | netlify-access-control | netlify/context-and-tools |
Netlify access control (picking the protection layer) This skill ROUTES. Its job is choosing the correct protection layer for loading a site, not implementing app auth. Before recommending anything, disambiguate — three unrelated layers get called "auth": Netlify Identity — "who is this user inside my app" (issues nf_jwt ). App login, OAuth providers for your users, auth code. → Route to the netlify-identity skill. Not covered here. Password Protection / Project visibility — "can this request lo...
|
1K |
| 10306 | test-prompt | neolabhq/context-engineering-kit |
Testing Prompts With Subagents Test any prompt before deployment: commands, hooks, skills, subagent instructions, or production LLM prompts. Overview Testing prompts is TDD applied to LLM instructions. Run scenarios without the prompt (RED - watch agent behavior), write prompt addressing failures (GREEN - watch agent comply), then close loopholes (REFACTOR - verify robustness). Core principle: If you didn't watch an agent fail without the prompt, you don't know what the prompt needs to fix. REQU...
|
1K |
| 10307 | test-skill | neolabhq/context-engineering-kit |
Testing Skills With Subagents Test skill provided by user or developed before. Overview Testing skills is just TDD applied to process documentation. You run scenarios without the skill (RED - watch agent fail), write skill addressing those failures (GREEN - watch agent comply), then close loopholes (REFACTOR - stay compliant). Core principle: If you didn't watch an agent fail without the skill, you don't know if the skill prevents the right failures. REQUIRED BACKGROUND: You MUST understand supe...
|
1K |
| 10308 | review-pr | neolabhq/context-engineering-kit |
Review PR Skill Review the current pull request and write the output to review.json . Context The working directory is the PR branch checkout. The workflow provides an annotated diff in pr_diff.txt . The workflow provides the PR description in pr_description.txt . Focus on files and lines changed by this PR. Do not post comments or reviews to GitHub directly. Review Scope Prioritize correctness, security, error handling, and meaningful performance issues. Include style or nit comments only when ...
|
1K |
| 10309 | n8n-self-hosting | czlonkowski/n8n-skills |
Deploying self-hosted n8n This skill takes a fresh Linux VM (Ubuntu/Debian, root or sudo SSH) to a running, HTTPS, production n8n via Docker Compose behind Caddy (automatic Let's Encrypt TLS). It is for self-hosted n8n on Docker — not n8n Cloud, and not for building workflows (that's the rest of this pack). Two deployment modes. The architectures differ, so pick the mode before doing anything . You drive this end-to-end over SSH: preflight → install Docker → lay down the project → generate secre...
|
1K |
| 10310 | stripe-integration | sickn33/agentic-awesome-skills |
Stripe Integration Master Stripe payment processing integration for robust, PCI-compliant payment flows including checkout, subscriptions, webhooks, and refunds. When to Use This Skill Implementing payment processing in web/mobile applications Setting up subscription billing systems Handling one-time payments and recurring charges Processing refunds and disputes Managing customer payment methods Implementing SCA (Strong Customer Authentication) for European payments Building marketplace payment ...
|
1K |
| 10311 | go-style-core | cxuu/golang-skills |
Go Style Core Principles Normative: This guidance is required per Google's canonical Go style guide. Style Principles (Priority Order) When writing readable Go code, apply these principles in order of importance: 1. Clarity The code's purpose and rationale must be clear to the reader. What: Use descriptive names, helpful comments, and efficient organization Why: Add commentary explaining rationale, especially for nuances View clarity through the reader's lens, not the author's Code should ...
|
1K |
| 10312 | next-cache-components | vercel-labs/openreview |
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, ...
|
1K |
| 10313 | newapi | quantumnous/skills |
SKILL: newapi newapi ( new-api ) is an open-source unified AI gateway platform. It aggregates multiple model providers behind OpenAI / Claude / Gemini compatible interfaces, and provides model, token, group, and balance management. Security Guidelines This skill follows these security guidelines to protect API keys: Do not expose any sk- key value in chat, files, code, logs, or command arguments. To use keys securely, tell the user to run copy-token (clipboard), apply-token (config file), or exe...
|
1K |
| 10314 | hyva-alpine-component | hyva-themes/hyva-ai-tools |
Hyvä Alpine Component Overview This skill provides guidance for writing CSP-compatible Alpine.js components in Hyvä themes. Alpine CSP is a specialized Alpine.js build that operates without the unsafe-eval CSP directive, which is required for PCI-DSS 4.0 compliance on payment-related pages (mandatory from April 1, 2025). Key principle: CSP-compatible code functions in both standard and Alpine CSP builds. Write all Alpine code using CSP patterns for future-proofing. CSP Constraints Summary Cap...
|
1K |
| 10315 | legal-writing | anthropics/claude-for-legal |
/legal-writing Load ~/.claude/plugins/config/claude-for-legal/law-student/CLAUDE.md → class, writing skill level, past feedback patterns. Apply the framework below. Read full draft top to bottom. Identify structural type (memo / brief / paper / essay). Give structured feedback: structure first, analysis depth, clarity & style, top 3 fixes. Flag [VERIFY] on any substantive rule call I'm unsure about. At most 1-2 labeled example phrasings — illustrating structural moves, never substantive content ...
|
1K |
| 10316 | cangjie-skill | kangarooking/cangjie-skill |
cangjie-skill — 把一本书蒸馏成一组可执行 skills 的元 skill 使命 把一本书里沉淀的方法论,拆解成一组 原子化、可被 agent 在真实场景下调用 的 skills,让读者真正用起来。 术语约定 : 本文档及 methodology/ 、 extractors/ 中所有的"书",泛指一切被蒸馏的长内容 — 书籍、长视频转写、播客文字稿、课程、访谈、长文、资料集。 边界 : ✅ 做: 方法论 / 决策框架 / 清单 / 原则 / 概念体系的蒸馏 ❌ 不做: 书摘 / 读后感 / 作者人设角色扮演 (后者请用 nuwa-skill) 核心方法论: RIA-TV++ 一个五阶段 + 并行提取 + 三重验证 + darwin 兼容测试的流水线。详见 methodology/00-overview.md 。 Show more Installs 841 Repository kangarooking/ca…ie-skill GitHub Stars 7.9K First Seen Jun 30, 2026 Security Audits Gen Agent Trust...
|
1K |
| 10317 | n8n-agents-official | n8n-io/skills |
n8n Agents The n8n Agent node ( @n8n/n8n-nodes-langchain.agent ) is a multi-turn LLM driver with sub-nodes for the model, memory, tools, and optional output parser. When to use the Agent node vs raw chat completion Decision: Need tool calls, multi-turn reasoning, or memory? Agent. Also a fine default when you don't want to think about it: standardizing on Agent across the workflow is reasonable and makes the path to upgrade simpler. Want the lightest possible single-shot text-out call? Basic LLM...
|
1K |
| 10318 | openagent | 5dive-ai/skills |
openagent — author your persona, mint your card OpenAgent is a vendor-neutral open standard for agent identity : one *.persona.yaml file locks how you look, sound, and write so you stay consistent across text, audio, and video. This skill walks you through creating yours and rendering a shareable trading card from it — stamped with a rarity tier rolled from your identity (random, permanent, unfarmable). Repo + spec: github.com/5dive-ai/openagent (MIT). The CLI Run it with npx , no install. Run t...
|
1K |
| 10319 | drizzle | bobmatnyc/claude-mpm-skills |
Drizzle ORM Schema Style Guide Configuration Config: drizzle.config.ts Schemas: src/database/schemas/ Migrations: src/database/migrations/ Dialect: postgresql with strict: true Helper Functions Location: src/database/schemas/_helpers.ts timestamptz(name) : Timestamp with timezone createdAt() , updatedAt() , accessedAt() : Standard timestamp columns timestamps : Object with all three for easy spread Naming Conventions Tables : Plural snake_case ( users , session_groups ) Columns : snake_case ( us...
|
1K |
| 10320 | paper-spine | wubing2023/paperspine |
PaperSpine Orchestrator Use this skill as the suite entrypoint. PaperSpine exposes one main skill: paper-spine . Each stage is executed by reading the corresponding playbook under references/ . Update detection : If the user asks to update, upgrade, or check for updates, read references/update.md and execute without starting the full writing workflow. Command Routing Show more Installs 825 Repository wubing2023/paperspine GitHub Stars 4.5K First Seen May 21, 2026 Security Audits Gen Agent Trust ...
|
1K |
| 10321 | n8n-subworkflows | czlonkowski/n8n-skills |
n8n Sub-workflows A sub-workflow is a reusable function. An Execute Workflow Trigger declares typed inputs, the body does the work, and the last node returns the output. A caller invokes it through an Execute Workflow node like any other step. That framing buys you the things functions buy you everywhere: encapsulation, reuse, testability, replaceability. It's the primary reuse mechanism in n8n, and it's badly underused. Without it, the same logic gets copy-pasted across workflows — then a bug g...
|
1K |
| 10322 | n8n-debugging-official | n8n-io/skills |
n8n Debugging When something breaks, the cause is almost always: Parameter misconfiguration (wrong value, wrong type, missing field). Stale assumptions (different version, different behavior than you remember). Paths misconfigured or misconnected (wrong output index, wrong merge input, missing wire, IF/Switch wired to the wrong branch). Upstream data stripped (an intermediate node replaced $json with its own output, so downstream $json.x resolves to null even though "it should be there"). Fix: r...
|
1K |
| 10323 | wot-ui-v2 | wot-ui/open-wot |
Wot UI V2 Skill 这个 skill 用于让 Agent 在处理 wot-ui v2 相关任务时,优先采用组件库既有能力、遵守 uni-app 场景限制,并结合本仓库提供的 wot CLI 查询离线知识。 适用场景 用户询问某个 wd-* 组件的基础用法、属性、事件、插槽或样式变量。 需要生成或重构 uni-app + Vue 3 + TypeScript 的 wot-ui 页面或组件代码。 需要在 ConfigProvider 、主题变量、暗黑模式、国际化、反馈类 hooks、表单等场景下给出正确做法。 需要排查文档中常见的 Toast 、 Dialog 、 Popup 、 Tabs 、 Slider 、样式覆盖问题。 用户只是泛化地提到主题定制,但还没有明确要求按“单文件主题 SCSS + App.vue 只 @use ”的结构生成时。 推荐流程 先用本仓库 CLI 或 MCP 工具查组件知识。 再根据项目实际安装方式决定导入路径与集成方式。 优先复用现成的 wd-* 组件、hooks、主题变量与组合模式,不要退化成原生标签堆砌。 如果问题涉及约束或坑位,再查阅 参考知...
|
1K |
| 10324 | om-apply-upgrade-notes | open-mercato/skills |
Apply Upgrade Notes Upgrading the skills collection updates the skill instructions, but not the artifacts a previous skill run installed into this repository — notably tracker descriptors at .ai/trackers/<tracker>.md and browser-provider descriptors at .ai/browsers/<provider>.md . A stale descriptor can degrade or skip operations it does not define. This skill reads the collection's UPGRADE_NOTES.md , brings installed artifacts up to date, and reports what it changed. It touches only pipeline ar...
|
1K |
| 10325 | om-auto-continue-pr | open-mercato/skills |
Auto Continue PR Resume a PR that is not finished. Given a PR number, you re-enter the same worktree discipline, pick up from the first unchecked Progress step in the linked execution plan, and drive the PR to complete status with the same validation and label rules as om-auto-create-pr . The PR does not have to come from this pipeline. When it carries no execution plan — a human's PR, one from another tool, or a run that crashed before committing its plan — you adopt it: reconstruct the goal fr...
|
1K |
| 10326 | om-auto-create-pr | open-mercato/skills |
Auto Create PR Turn a free-form task brief into a disciplined autonomous run: an execution plan, phase-by-phase implementation with incremental commits in an isolated worktree, a Progress checklist that makes the run resumable, and a PR against the configured base branch with normalized pipeline labels. Arguments {brief} (required) — free-form description of the task. Can be one sentence or several paragraphs. --spec <ref> (optional) — a spec to implement: a path, a spec name/slug, or an issue/P...
|
1K |
| 10327 | om-auto-continue-pr-loop | open-mercato/skills |
Auto Continue PR (loop) Resume an om-auto-create-pr-loop run that did not finish in one go. Given a PR number, you re-enter the same worktree discipline, read HANDOFF.md for session context, parse the top-of-file Tasks table in PLAN.md (the authoritative Step-status source), pick up from the first row whose Status is not done , and drive the PR to complete status with the creator skill's lean per-Step commit, checkpoint, final-gate, and label discipline. Arguments {prNumber} (required) — the PR...
|
1K |
| 10328 | qiaomu-opencli-usage | joeseesun/qiaomu-opencli-skills |
OpenCLI Usage Guide Make any website or Electron App your CLI. Reuse Chrome login, zero risk, AI-powered discovery. Install & Run npm global install (recommended) npm install -g @jackwener/opencli opencli < command > Or from source cd ~/code/opencli && npm install npx tsx src/main.ts < command > Update to latest npm update -g @jackwener/opencli Show more Installs 439 Repository joeseesun/qiaom…i-skills GitHub Stars 979 First Seen Apr 9, 2026 Security Audits Gen Agent Trust Hub Warn Socket Pas...
|
1K |
| 10329 | growth-funnel | kostja94/marketing-skills |
Strategies: Growth Funnel (AARRR) Guides growth using the AARRR framework (Pirate Metrics)—five stages of the customer lifecycle. Created by Dave McClure (500 Startups) to focus on actionable metrics over vanity metrics. Use this skill when diagnosing growth bottlenecks, prioritizing improvements, or aligning product, marketing, and customer success. 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 s...
|
1K |
| 10330 | seo-monitoring | kostja94/marketing-skills |
Analytics: SEO Monitoring Guides building a holistic SEO data analysis system. Covers four core metrics (indexing, traffic, keywords, backlinks), benchmark setup, article database, tool selection, traffic diversification, penalty recovery, and work document management. 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 to the main output. Scope ...
|
1K |
| 10331 | premium | bergside/awesome-design-skills |
Premium Design System Skill (Universal) Mission You are an expert design-system guideline author for premium. Create practical, implementation-ready guidance that can be directly used by engineers and designers. Brand Apple design style Style Foundations Visual style: modern Typography scale: 12/14/16/18/24/30/36 | Fonts: primary=Inter, display=Inter, mono=JetBrains Mono | weights=100, 200, 300, 400, 500, 600, 700, 800, 900 Color palette: primary, neutral, success, warning, danger | Tokens: prim...
|
1K |
| 10332 | neon-functions | neondatabase/agent-skills |
FIRST : Use the parent neon skill for a Neon overview, getting started with Neon, Neon development best practices, and more. If the neon skill is not installed, fetch it from https://neon.com/docs/ai/skills/neon/SKILL.md or install it with: npx skills add neondatabase/agent-skills --skill neon Neon Functions This is a public beta feature and only available in us-east-2 . Neon Functions are long-running Node.js HTTP handlers deployed onto a Neon branch. Each function gets a public HTTPS URL, runs...
|
1K |
| 10333 | comfyui-prompt-engineer | mckruz/comfyui-expert |
ComfyUI Prompt Engineer Generates optimized prompts tailored to specific models and identity methods. Different models respond differently to prompts. Model-Specific Prompt Rules FLUX.1 (dev/schnell/Kontext) Style : Natural language descriptions work best CFG : 3.5-4 (very low) Quality tags : Minimal - FLUX doesn't need "masterpiece, best quality" Length : Medium (50-100 words) Structure : {subject description}, {setting}, {lighting}, {camera/style} Good FLUX prompt: photorealistic portrait of a...
|
1K |
| 10334 | om-auto-create-pr-loop | open-mercato/skills |
Auto Create PR (loop) Turn a free-form brief into an execution plan, implement it one commit per Step in an isolated worktree, batch verification proofs at checkpoints, keep a live handoff doc and append-only notification log, and open a labeled PR against the configured base branch. The advanced variant of om-auto-create-pr ; for small fixes, use that skill. Step 1's classification decides which contract applies. Arguments {brief} (required) — free-form task description, one sentence or several...
|
1K |
| 10335 | financial-plan | anthropics/financial-services |
Financial Plan Workflow Step 1: Client Profile Gather or confirm: Demographics : Age, spouse age, dependents, life expectancy assumptions Employment : Current income, expected raises, retirement age target Accounts : All investment accounts with balances and asset allocation Income sources : Salary, bonuses, rental income, Social Security estimates, pensions Expenses : Current annual spending, expected changes (mortgage payoff, kids' independence) Liabilities : Mortgage, student loans, other deb...
|
1K |
| 10336 | n8n-binary-and-data | czlonkowski/n8n-skills |
n8n Binary and Data Every n8n item carries two independent slots: $json for structured data and $binary for file bytes. They travel side by side through the workflow. File contents — the actual PDF, image, or zip — live in $binary , never in $json . Get that split wrong and you read an empty field, lose a file mid-flow, or hand an AI agent a tool input it can't use. This skill covers where binary lives, how to read and write it, how to keep it from being silently stripped, the hard wall between ...
|
1K |
| 10337 | fetch-and-send-data | dotnet/skills |
Fetch and Send Data Step 1 — Read AGENTS.md Check Interactivity Mode and Scope : Mode Data access None (Static SSR) Server-side: inject services/ DbContext . Use [StreamRendering] for loading UX. Server Server-side: inject services/ DbContext . Guard prerender with ??= + [PersistentState] . WebAssembly Browser-side: HttpClient only. No direct server access. Auto Both server and browser. Always go through an API. Step 2 — Register HttpClient Only needed when calling external APIs from Server, or ...
|
1K |
| 10338 | n8n-error-handling-official | n8n-io/skills |
n8n Error Handling Default n8n node behavior: error → workflow halts → caller gets nothing useful. For unattended workflows (webhook APIs, scheduled jobs, queue workers), that default is wrong. The symptom is "the integration just stopped working" with no log, no message, no clue. This skill is about handling errors so failures are loud, structured, and recoverable. Or best case scenario, handled in a way where it self heals. Non-negotiables For any API-shaped workflow (webhook trigger paired wi...
|
1K |
| 10339 | gke-ai-troubleshooting-jobset-interruption | google/skills |
GKE JobSet Interruption Troubleshooting Use this skill to systematically diagnose and resolve JobSet interruptions, restarts, and preemptions on GKE clusters hosting large-scale AI/ML workloads. ⚠️ Prerequisites & Sandbox Rules JobSet metrics package must be enabled in kube-state-metrics for your cluster. Cloud Logging and Cloud Monitoring enabled for the Google Cloud Project. Autonomous & Sandbox Execution Rule : If API queries, tools, or commands encounter 403 Permission Denied , authenticatio...
|
1K |
| 10340 | analyze-issue | neolabhq/context-engineering-kit |
No SKILL.md available for this skill. View on GitHub Installs 318 Repository neolabhq/contex…ring-kit GitHub Stars 1.0K First Seen Apr 23, 2026
|
1K |
| 10341 | configure-auth | dotnet/skills |
Configure Auth Step 1 — Read AGENTS.md Read AGENTS.md at the workspace root for the project's interactivity mode and scope before making changes. Step 2 — Register auth services in Program.cs // Program.cs (server project) builder . Services . AddCascadingAuthenticationState ( ) ; builder . Services . AddAuthorization ( ) ; For ASP.NET Core Identity add the Identity services: Show more Installs 935 Repository dotnet/skills GitHub Stars 5.2K First Seen May 26, 2026 Security Audits Gen Agent Trust...
|
1K |
| 10342 | web-motion-design | dylantarre/animation-principles |
Web Motion Design Apply Disney's 12 animation principles to CSS, JavaScript, and frontend frameworks. Quick Reference Principle Web Implementation Squash & Stretch transform: scale() on interaction states Anticipation Slight reverse movement before action Staging Focus user attention with motion hierarchy Straight Ahead / Pose to Pose JS frame-by-frame vs CSS keyframes Follow Through / Overlapping Staggered child animations, elastic easing Slow In / Slow Out ease-in-out , cubic-bezier curves Arc...
|
1K |
| 10343 | logfire-ui | pydantic/skills |
Open Logfire UI Use this skill for direct Logfire UI, browser, live-view, link, and Explore-page requests. User-Facing Progress Keep progress updates quiet. Do not narrate why this skill was selected, restate routing rules, quote local instructions, explain token scope, or announce routine helper calls. If an update is needed, use one short sentence focused on the action, such as "Opening Logfire with the error filter." After opening Logfire, do not run or narrate an extra page-state check unles...
|
1K |
| 10344 | maintain-verification-skill | cursor/plugins |
Maintain a verification skill A feature map rots the moment the app changes. This skill is the upkeep loop for a skill generated by /create-verification-skill (or any project-local verification skill with a feature map). The unit of rigor is the feature, not every sentence: cover every feature file from source and exercise every feature live, without terminalising every bullet. Outcomes Pick one, and say which: clean — every feature got source and live coverage; nothing worth shipping. No branch...
|
1K |
| 10345 | editorial | bergside/awesome-design-skills |
Editorial Design System Skill (Universal) Mission You are an expert design-system guideline author for Editorial. Create practical, implementation-ready guidance that can be directly used by engineers and designers. Brand Style Foundations Visual style: modern, editorial Typography scale: 14/16/18/24/32/40 | Fonts: primary=Gelasio, display=Gelasio, mono=Ubuntu Mono | weights=100, 200, 300, 400, 500, 600, 700, 800, 900 Color palette: primary, secondary, neutral, success | Tokens: primary=111111, ...
|
1K |
| 10346 | dataset-curation | wshobson/agents |
Dataset Curation This skill assumes finetuning-method-selection already routed here — the next step is preparing data, not choosing a method. What follows: format selection by target method, the template/packing mechanics behind the most common silent training failures, rules for mixing in synthetic data without collapse, and the dataset card that closes out Phase 2 before a run starts. Input: raw examples (demonstrations, preference judgments, or task prompts) plus a routing decision from finet...
|
1K |
| 10347 | apply-anthropic-skill-best-practices | neolabhq/context-engineering-kit |
Anthropic's official skill authoring best practices Apply Anthropic's official skill authoring best practices to your skill. Good Skills are concise, well-structured, and tested with real usage. This guide provides practical authoring decisions to help you write Skills that Claude can discover and use effectively. Core principles Skill Metadata Not every token in your Skill has an immediate cost. At startup, only the metadata (name and description) from all Skills is pre-loaded. Claude reads SKI...
|
1K |
| 10348 | ttscn | agents365-ai/365-skills |
ttscn — Multi-Platform Chinese TTS Skill Overview Generate natural speech audio from text. 11 backends — 8 China-friendly clouds plus 3 international (ElevenLabs / OpenAI / Google). Backend Cost Key strength 1 Edge TTS (default) Free No API key, works everywhere 2 Doubao (ByteDance) ~1 RMB/10K Best Chinese naturalness (9/10) 3 CosyVoice (Alibaba) ~0.2 RMB/1K Fast streaming, flexible 4 Azure (Microsoft) ~1 USD/M chars Enterprise SSML, eastasia 5 Tencent Cloud 0.75 RMB/10K Lowest cost, 380+ voice...
|
1K |
| 10349 | conversation-memory | davila7/claude-code-templates |
Conversation Memory You're a memory systems specialist who has built AI assistants that remember users across months of interactions. You've implemented systems that know when to remember, when to forget, and how to surface relevant memories. You understand that memory is not just storage—it's about retrieval, relevance, and context. You've seen systems that remember everything (and overwhelm context) and systems that forget too much (frustrating users). Your core principles: Memory types differ...
|
1K |
| 10350 | open-code-review-delegate | alibaba/open-code-review |
Open Code Review — Delegation Mode A skill for performing AI code review where OCR provides deterministic engineering (file filtering, rule resolution) and the host agent performs the actual review using its own intelligence and tools. Prerequisites which ocr || echo "NOT INSTALLED" If ocr is not installed: npm install -g @alibaba-group/open-code-review No LLM configuration is needed for delegation mode. Workflow Show more Installs 892 Repository alibaba/open-code-review GitHub Stars 20.9K First...
|
1K |