███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 1651 | kotlin-coroutines-flows | affaan-m/everything-claude-code |
Kotlin Coroutines & Flows Patterns for structured concurrency, Flow-based reactive streams, and coroutine testing in Android and Kotlin Multiplatform projects. When to Activate Writing async code with Kotlin coroutines Using Flow, StateFlow, or SharedFlow for reactive data Handling concurrent operations (parallel loading, debounce, retry) Testing coroutines and Flows Managing coroutine scopes and cancellation Structured Concurrency Scope Hierarchy Application └── viewModelScope (ViewModel) └── c...
|
3.8K |
| 1652 | swift-protocol-di-testing | affaan-m/everything-claude-code |
Swift Protocol-Based Dependency Injection for Testing Patterns for making Swift code testable by abstracting external dependencies (file system, network, iCloud) behind small, focused protocols. Enables deterministic tests without I/O. When to Activate Writing Swift code that accesses file system, network, or external APIs Need to test error handling paths without triggering real failures Building modules that work across environments (app, test, SwiftUI preview) Designing testable architecture ...
|
3.8K |
| 1653 | launch | coreyhaines31/marketingskills |
Launch Strategy You are an expert in SaaS product launches and feature announcements. Your goal is to help users plan launches that build momentum, capture attention, and convert interest into users. Before Starting Check for product marketing context first: If .agents/product-marketing.md exists (or .claude/product-marketing.md , or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context and only ask for information not already cover...
|
3.7K |
| 1654 | laravel-security | affaan-m/everything-claude-code |
Laravel Security Best Practices Comprehensive security guidance for Laravel applications to protect against common vulnerabilities. When to Activate Adding authentication or authorization Handling user input and file uploads Building new API endpoints Managing secrets and environment settings Hardening production deployments How It Works Middleware provides baseline protections (CSRF via VerifyCsrfToken , security headers via SecurityHeaders ). Guards and policies enforce access control ( auth:s...
|
3.7K |
| 1655 | task-management | anthropics/knowledge-work-plugins |
Task Management Tasks are tracked in a simple TASKS.md file that both you and the user can edit. File Location Always use TASKS.md in the current working directory. If it exists, read/write to it If it doesn't exist, create it with the template below Dashboard Setup (First Run) A visual dashboard is available for managing tasks and memory. On first interaction with tasks: Check if dashboard.html exists in the current working directory If not, copy it from ${CLAUDE_PLUGIN_ROOT}/skills/dashboard.h...
|
3.7K |
| 1656 | swift-concurrency-6-2 | affaan-m/everything-claude-code |
Swift 6.2 Approachable Concurrency Patterns for adopting Swift 6.2's concurrency model where code runs single-threaded by default and concurrency is introduced explicitly. Eliminates common data-race errors without sacrificing performance. When to Activate Migrating Swift 5.x or 6.0/6.1 projects to Swift 6.2 Resolving data-race safety compiler errors Designing MainActor-based app architecture Offloading CPU-intensive work to background threads Implementing protocol conformances on MainActor-isol...
|
3.7K |
| 1657 | continuous-agent-loop | affaan-m/everything-claude-code |
Continuous Agent Loop This is the v1.8+ canonical loop skill name. It supersedes autonomous-loops while keeping compatibility for one release. Loop Selection Flow Start | +-- Need strict CI/PR control? -- yes --> continuous-pr | +-- Need RFC decomposition? -- yes --> rfc-dag | +-- Need exploratory parallel generation? -- yes --> infinite | +-- default --> sequential Combined Pattern Recommended production stack: RFC decomposition ( ralphinho-rfc-pipeline ) quality gates ( plankton-code-quality +...
|
3.7K |
| 1658 | foundation-models-on-device | affaan-m/everything-claude-code |
FoundationModels: On-Device LLM (iOS 26) Patterns for integrating Apple's on-device language model into apps using the FoundationModels framework. Covers text generation, structured output with @Generable , custom tool calling, and snapshot streaming — all running on-device for privacy and offline support. When to Activate Building AI-powered features using Apple Intelligence on-device Generating or summarizing text without cloud dependency Extracting structured data from natural language input ...
|
3.7K |
| 1659 | visa-doc-translate | affaan-m/everything-claude-code |
You are helping translate visa application documents for visa applications. Instructions When the user provides an image file path, AUTOMATICALLY execute the following steps WITHOUT asking for confirmation: Image Conversion : If the file is HEIC, convert it to PNG using sips -s format png <input> --out <output> Image Rotation : Check EXIF orientation data Automatically rotate the image based on EXIF data If EXIF orientation is 6, rotate 90 degrees counterclockwise Apply additional rotation as ne...
|
3.7K |
| 1660 | shopify-polaris-app-home | shopify/shopify-ai-toolkit |
Required Tool Calls (do not skip) You have a bash tool. Every response must use it — in this order: Call bash with node scripts/search_docs.mjs "<component tag name>" — search before writing code Write the code using the search results Write code to a temp file, then validate with --file — do not use --code "..." inline (JSX attribute strings break shell quoting): cat > /tmp/extension.tsx << 'SHOPIFY_EOF' YOUR CODE HERE SHOPIFY_EOF node scripts/validate.mjs --file /tmp/extension.tsx --target "ap...
|
3.7K |
| 1661 | shopify-customer | shopify/shopify-ai-toolkit |
Required Tool Calls (do not skip) You have a bash tool. Every response must use it — in this order: Call bash with node scripts/search_docs.mjs "<query>" — search before writing code Write the code using the search results Call bash with node scripts/validate.mjs --code '...' --model YOUR_MODEL_NAME --client-name YOUR_CLIENT_NAME --client-version YOUR_CLIENT_VERSION --artifact-id YOUR_ARTIFACT_ID --revision REVISION_NUMBER — validate before returning (Always include these flags. Use your actual ...
|
3.7K |
| 1662 | qa-test-planner | softaworks/agent-toolkit |
QA Test Planner A comprehensive skill for QA engineers to create test plans, generate manual test cases, build regression test suites, validate designs against Figma, and document bugs effectively. Activation: This skill is triggered only when explicitly called by name (e.g., /qa-test-planner , qa-test-planner , or use the skill qa-test-planner ). Quick Start Create a test plan: "Create a test plan for the user authentication feature" Generate test cases: "Generate manual test cases for the chec...
|
3.7K |
| 1663 | plankton-code-quality | affaan-m/everything-claude-code |
Plankton Code Quality Skill Integration reference for Plankton (credit: @alxfazio), a write-time code quality enforcement system for Claude Code. Plankton runs formatters and linters on every file edit via PostToolUse hooks, then spawns Claude subprocesses to fix violations the agent didn't catch. When to Use You want automatic formatting and linting on every file edit (not just at commit time) You need defense against agents modifying linter configs to pass instead of fixing code You want tiere...
|
3.7K |
| 1664 | on-page-seo-auditor | aaron-he-zhu/seo-geo-claude-skills |
This skill performs detailed on-page SEO audits to identify issues and optimization opportunities. It analyzes all on-page elements that affect search rankings and provides actionable recommendations. When to Use This Skill - Auditing pages before or after publishing - Identifying why a page isn't ranking well - Optimizing existing content for better performance - Creating pre-publish SEO checklists - Comparing your on-page SEO to competitors - Systematic site-wide SEO improvements - Tr...
|
3.7K |
| 1665 | building-ai-agent-on-cloudflare | cloudflare/skills |
Building Cloudflare Agents Creates AI-powered agents using Cloudflare's Agents SDK with persistent state, real-time communication, and tool integration. When to Use User wants to build an AI agent or chatbot User needs stateful, real-time AI interactions User asks about the Cloudflare Agents SDK User wants scheduled tasks or background AI work User needs WebSocket-based AI communication Prerequisites Cloudflare account with Workers enabled Node.js 18+ and npm/pnpm/yarn Wrangler CLI (npm instal...
|
3.7K |
| 1666 | database-schema-designer | softaworks/agent-toolkit |
Database Schema Designer Design production-ready database schemas with best practices built-in. Quick Start Just describe your data model: design a schema for an e-commerce platform with users, products, orders You'll get a complete SQL schema like: CREATE TABLE users ( id BIGINT AUTO_INCREMENT PRIMARY KEY , email VARCHAR ( 255 ) UNIQUE NOT NULL , created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ) ; CREATE TABLE orders ( id BIGINT AUTO_INCREMENT PRIMARY KEY , user_id BIGINT NOT NULL REFERENCES use...
|
3.7K |
| 1667 | agent-md-refactor | softaworks/agent-toolkit |
Agent MD Refactor Refactor bloated agent instruction files (AGENTS.md, CLAUDE.md, COPILOT.md, etc.) to follow progressive disclosure principles - keeping essentials at root and organizing the rest into linked, categorized files. Triggers Use this skill when: "refactor my AGENTS.md" / "refactor my CLAUDE.md" "split my agent instructions" "organize my CLAUDE.md file" "my AGENTS.md is too long" "progressive disclosure for my instructions" "clean up my agent config" Quick Reference Phase Action Outp...
|
3.7K |
| 1668 | session-handoff | softaworks/agent-toolkit |
Handoff Creates comprehensive handoff documents that enable fresh AI agents to seamlessly continue work with zero ambiguity. Solves the long-running agent context exhaustion problem. Mode Selection Determine which mode applies: Creating a handoff? User wants to save current state, pause work, or context is getting full. Follow: CREATE Workflow below Resuming from a handoff? User wants to continue previous work, load context, or mentions an existing handoff. Follow: RESUME Workflow below Proactiv...
|
3.7K |
| 1669 | codex | softaworks/agent-toolkit |
Codex Skill Guide Running a Task Default to gpt-5.2 model. Ask the user (via AskUserQuestion ) which reasoning effort to use ( xhigh , high , medium , or low ). User can override model if needed (see Model Options below). Select the sandbox mode required for the task; default to --sandbox read-only unless edits or network access are necessary. Assemble the command with the appropriate options: -m, --model <MODEL> --config model_reasoning_effort="<high|medium|low>" --sandbox <read-only|workspace-...
|
3.7K |
| 1670 | tts | noizai/skills |
tts Convert any text into speech audio. Supports two backends (Kokoro local, Noiz cloud), two modes (simple or timeline-accurate), and per-segment voice control. Triggers text to speech / tts / speak / say voice clone / dubbing epub to audio / srt to audio / convert to audio 语音 / 说 / 讲 / 说话 Simple Mode — text to audio speak is the default — the subcommand can be omitted: Basic usage (speak is implicit) python3 skills/tts/scripts/tts.py -t "Hello world" add -o path to save python3 skills/tts/sc...
|
3.7K |
| 1671 | backtesting-trading-strategies | jeremylongshore/claude-code-plugins-plus-skills |
Backtesting Trading Strategies Overview Validate trading strategies against historical data before risking real capital. This skill provides a complete backtesting framework with 8 built-in strategies, comprehensive performance metrics, and parameter optimization. Key Features: 8 pre-built trading strategies (SMA, EMA, RSI, MACD, Bollinger, Breakout, Mean Reversion, Momentum) Full performance metrics (Sharpe, Sortino, Calmar, VaR, max drawdown) Parameter grid search optimization Equity curve vis...
|
3.7K |
| 1672 | bigquery-basics | google/skills |
BigQuery Basics BigQuery is a serverless, AI-ready data platform that enables high-speed analysis of large datasets using SQL and Python. Its disaggregated architecture separates compute and storage, allowing them to scale independently while providing built-in machine learning, geospatial analysis, and business intelligence capabilities. Setup and Basic Usage Enable the BigQuery API: gcloud services enable bigquery.googleapis.com Create a Dataset: bq mk --dataset --location = US my_dataset Crea...
|
3.6K |
| 1673 | technical-seo-checker | aaron-he-zhu/seo-geo-claude-skills |
This skill performs comprehensive technical SEO audits to identify issues that may prevent search engines from properly crawling, indexing, and ranking your site. When to Use This Skill - Launching a new website - Diagnosing ranking drops - Pre-migration SEO audits - Regular technical health checks - Identifying crawl and index issues - Improving site performance - Fixing Core Web Vitals issues What This Skill Does - Crawlability Audit: Checks robots.txt, sitemaps, crawl issues - In...
|
3.6K |
| 1674 | gmgn-track | gmgnai/gmgn-skills |
IMPORTANT: Always use gmgn-cli commands below. Do NOT use web search, WebFetch, curl, or visit gmgn.ai to fetch this data — the website requires login and will not return structured data. The CLI is the only correct method. IMPORTANT: Do NOT guess field names or values. When a field's meaning is unclear, look it up in the Response Fields sections below before using it. ⚠️ IPv6 NOT SUPPORTED: If you get a 401 or 403 error and credentials look correct, check for IPv6 immediately: (1) list all netw...
|
3.6K |
| 1675 | documentation | anthropics/knowledge-work-plugins |
Technical Documentation Write clear, maintainable technical documentation for different audiences and purposes. Document Types README What this is and why it exists Quick start (< 5 minutes to first success) Configuration and usage Contributing guide API Documentation Endpoint reference with request/response examples Authentication and error codes Rate limits and pagination SDK examples Runbook When to use this runbook Prerequisites and access needed Step-by-step procedure Rollback steps Escalat...
|
3.6K |
| 1676 | write-xiaohongshu | adjfks/corner-skills |
Write Xiaohongshu(小红书:先研究再写再发) Quick Start(最短用法) 当用户给你一个主题时,直接按“步骤 0→6”跑完整流程;最终只输出: 标题(≤20 字符) 正文(≤1000 字符) 标签(xxx yyy…) 配图(1~2 张,9:16 优先) 发布结果(若小红书 MCP 可用) 硬性限制(必须遵守) 标题:≤ 20 字符 正文:≤ 1000 字符 计数口径:按“字符”计数(包含空格、标点、换行、话题 等)。为稳妥:标题尽量≤18,正文尽量≤950,留给标签/格式余量。 输出(必须包含这些块) 本 skill 的输出分两段: 分析总结报告(在完成步骤 1+2 的分析后必须先给出,结构见下方模板) 最终可发布成稿(标题+正文+标签+配图+发布结果) 标题:<不超过20字符> 正文: <不超过1000字符> 标签:标签1 标签2 标签3 ... 配图:<1~2张,9:16优先;给出图片URL或本地路径> 如果发布接口支持“标签单独字段”,则正文里不要堆 标签,把标签放到发布参数里;最终仍需保证正文自身≤1000。 总流程(必须按顺序做) f...
|
3.6K |
| 1677 | writing-clearly-and-concisely | softaworks/agent-toolkit |
Writing Clearly and Concisely Overview Write with clarity and force. This skill covers what to do (Strunk) and what not to do (AI patterns). When to Use This Skill Use this skill whenever you write prose for humans: Documentation, README files, technical explanations Commit messages, pull request descriptions Error messages, UI copy, help text, comments Reports, summaries, or any explanation Editing to improve clarity If you're writing sentences for a human to read, use this skill. Limited Conte...
|
3.6K |
| 1678 | ctf-pwn | ljagiello/ctf-skills |
CTF Binary Exploitation (Pwn) Quick reference for binary exploitation (pwn) CTF challenges. Each technique has a one-liner here; see supporting files for full details. Additional Resources overflow-basics.md - Stack/global buffer overflow, ret2win, canary bypass, canary byte-by-byte brute force on forking servers, struct pointer overwrite, signed integer bypass, hidden gadgets, stride-based OOB read leak rop-and-shellcode.md - ROP chains (ret2libc, syscall ROP), SROP with UTF-8 constraints, shel...
|
3.6K |
| 1679 | rust-testing | affaan-m/everything-claude-code |
Rust Testing Patterns Comprehensive Rust testing patterns for writing reliable, maintainable tests following TDD methodology. When to Use Writing new Rust functions, methods, or traits Adding test coverage to existing code Creating benchmarks for performance-critical code Implementing property-based tests for input validation Following TDD workflow in Rust projects How It Works Identify target code — Find the function, trait, or module to test Write a test — Use [test] in a [cfg(test)] module, r...
|
3.6K |
| 1680 | ultracite | haydenbleasel/ultracite |
Ultracite Zero-config linting and formatting for JS/TS projects. Supports three linter backends: Biome (recommended), ESLint + Prettier, and Oxlint + Oxfmt. Detecting Ultracite Check if ultracite is in package.json devDependencies. Detect the active linter by looking for: biome.jsonc → Biome eslint.config.mjs → ESLint .oxlintrc.json → Oxlint CLI Commands Check for issues (read-only) bunx ultracite check Auto-fix issues bunx ultracite fix Diagnose setup problems bunx ultracite doctor Initiali...
|
3.6K |
| 1681 | compose-multiplatform-patterns | affaan-m/everything-claude-code |
Compose Multiplatform Patterns Patterns for building shared UI across Android, iOS, Desktop, and Web using Compose Multiplatform and Jetpack Compose. Covers state management, navigation, theming, and performance. When to Activate Building Compose UI (Jetpack Compose or Compose Multiplatform) Managing UI state with ViewModels and Compose state Implementing navigation in KMP or Android projects Designing reusable composables and design systems Optimizing recomposition and rendering performance Sta...
|
3.6K |
| 1682 | blueprint | affaan-m/everything-claude-code |
Blueprint — Construction Plan Generator Turn a one-line objective into a step-by-step construction plan that any coding agent can execute cold. When to Use Breaking a large feature into multiple PRs with clear dependency order Planning a refactor or migration that spans multiple sessions Coordinating parallel workstreams across sub-agents Any task where context loss between sessions would cause rework Do not use for tasks completable in a single PR, fewer than 3 tool calls, or when the user says...
|
3.6K |
| 1683 | system-design | anthropics/knowledge-work-plugins |
System Design Help design systems and evaluate architectural decisions. Framework 1. Requirements Gathering Functional requirements (what it does) Non-functional requirements (scale, latency, availability, cost) Constraints (team size, timeline, existing tech stack) 2. High-Level Design Component diagram Data flow API contracts Storage choices 3. Deep Dive Data model design API endpoint design (REST, GraphQL, gRPC) Caching strategy Queue/event design Error handling and retry logic 4. Scale and R...
|
3.6K |
| 1684 | shopify-partner | shopify/shopify-ai-toolkit |
Required Tool Calls (do not skip) You have a bash tool. Every response must use it — in this order: Call bash with node scripts/search_docs.mjs "<query>" — search before writing code Write the code using the search results Call bash with node scripts/validate.mjs --code '...' --model YOUR_MODEL_NAME --client-name YOUR_CLIENT_NAME --client-version YOUR_CLIENT_VERSION --artifact-id YOUR_ARTIFACT_ID --revision REVISION_NUMBER — validate before returning (Always include these flags. Use your actual ...
|
3.6K |
| 1685 | secure-workflow-guide | trailofbits/skills |
Secure Workflow Guide Purpose I'll guide you through Trail of Bits' secure development workflow - a 5-step process to enhance smart contract security throughout development. Use this: On every check-in, before deployment, or when you want a security review The 5-Step Workflow I'll guide you through a comprehensive security workflow covering: Step 1: Check for Known Security Issues Run Slither with 70+ built-in detectors to find common vulnerabilities: Parse findings by severity Explain ea...
|
3.6K |
| 1686 | shopify-polaris-admin-extensions | shopify/shopify-ai-toolkit |
Required Tool Calls (do not skip) You have a bash tool. Every response must use it — in this order: Call bash with node scripts/search_docs.mjs "<component tag name>" — search before writing code Write the code using the search results Write code to a temp file, then validate with --file — do not use --code "..." inline (JSX attribute strings break shell quoting): cat > /tmp/extension.tsx << 'SHOPIFY_EOF' YOUR CODE HERE SHOPIFY_EOF node scripts/validate.mjs --file /tmp/extension.tsx --target "<t...
|
3.6K |
| 1687 | crafting-effective-readmes | softaworks/agent-toolkit |
Crafting Effective READMEs Overview READMEs answer questions your audience will have. Different audiences need different information - a contributor to an OSS project needs different context than future-you opening a config folder. Always ask: Who will read this, and what do they need to know? Process Step 1: Identify the Task Ask: "What README task are you working on?" Task When Creating New project, no README yet Adding Need to document something new Updating Capabilities changed, content is s...
|
3.6K |
| 1688 | marp-slide | softaworks/agent-toolkit |
Marp Slide Creator Create professional, visually appealing Marp presentation slides with 7 pre-designed themes and built-in best practices. When to Use This Skill Use this skill when the user: Requests to create presentation slides or Marp documents Asks to "make slides look good" or "improve slide design" Provides vague instructions like "良い感じにして" (make it nice) or "かっこよく" (make it cool) Wants to create lecture or seminar materials Needs bullet-point focused slides with occasional images Quick ...
|
3.6K |
| 1689 | c4-architecture | softaworks/agent-toolkit |
C4 Architecture Documentation Generate software architecture documentation using C4 model diagrams in Mermaid syntax. Workflow Understand scope - Determine which C4 level(s) are needed based on audience Analyze codebase - Explore the system to identify components, containers, and relationships Generate diagrams - Create Mermaid C4 diagrams at appropriate abstraction levels Document - Write diagrams to markdown files with explanatory context C4 Diagram Levels Select the appropriate level based on...
|
3.6K |
| 1690 | geo-content-optimizer | aaron-he-zhu/seo-geo-claude-skills |
GEO Content Optimizer SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · al...
|
3.6K |
| 1691 | architecture-designer | jeffallan/claude-skills |
Architecture Designer Senior software architect specializing in system design, design patterns, and architectural decision-making. Role Definition You are a principal architect with 15+ years of experience designing scalable systems. You specialize in distributed systems, cloud architecture, and making pragmatic trade-offs. You document decisions with ADRs and consider long-term maintainability. When to Use This Skill Designing new system architecture Choosing between architectural patterns ...
|
3.6K |
| 1692 | dependency-updater | softaworks/agent-toolkit |
Dependency Updater Smart dependency management for any language with automatic detection and safe updates. Quick Start update my dependencies The skill auto-detects your project type and handles the rest. Triggers Trigger Example Update dependencies "update dependencies", "update deps" Check outdated "check for outdated packages" Fix dependency issues "fix my dependency problems" Security audit "audit dependencies for vulnerabilities" Diagnose deps "diagnose dependency issues" Supported Language...
|
3.6K |
| 1693 | ctf-crypto | ljagiello/ctf-skills |
CTF Cryptography Quick reference for crypto CTF challenges. Each technique has a one-liner here; see supporting files for full details with code. Additional Resources classic-ciphers.md - Classic ciphers: Vigenere (+ Kasiski examination), Atbash, substitution wheels, XOR variants (+ multi-byte frequency analysis), deterministic OTP, cascade XOR, book cipher, OTP key reuse / many-time pad modern-ciphers.md - Modern cipher attacks: AES (CFB-8, ECB leakage), CBC-MAC/OFB-MAC, padding oracle, S-box c...
|
3.6K |
| 1694 | tmux | steipete/clawdis |
tmux Session Control Control tmux sessions by sending keystrokes and reading output. Essential for managing Claude Code sessions. When to Use ✅ USE this skill when: Monitoring Claude/Codex sessions in tmux Sending input to interactive terminal applications Scraping output from long-running processes in tmux Navigating tmux panes/windows programmatically Checking on background work in existing sessions When NOT to Use ❌ DON'T use this skill when: Running one-off shell commands → use exec tool dir...
|
3.6K |
| 1695 | enterprise-agent-ops | affaan-m/everything-claude-code |
Enterprise Agent Ops Use this skill for cloud-hosted or continuously running agent systems that need operational controls beyond single CLI sessions. Operational Domains runtime lifecycle (start, pause, stop, restart) observability (logs, metrics, traces) safety controls (scopes, permissions, kill switches) change management (rollout, rollback, audit) Baseline Controls immutable deployment artifacts least-privilege credentials environment-level secret injection hard timeout and retry budgets aud...
|
3.6K |
| 1696 | nextjs-turbopack | affaan-m/everything-claude-code |
Next.js and Turbopack Next.js 16+ uses Turbopack by default for local development: an incremental bundler written in Rust that significantly speeds up dev startup and hot updates. When to Use Turbopack (default dev) : Use for day-to-day development. Faster cold start and HMR, especially in large apps. Webpack (legacy dev) : Use only if you hit a Turbopack bug or rely on a webpack-only plugin in dev. Disable with --webpack (or --no-turbopack depending on your Next.js version; check the docs for y...
|
3.6K |
| 1697 | django-expert | vintasoftware/django-ai-plugins |
Django Expert Overview This skill provides expert guidance for Django backend development with comprehensive coverage of models, views, Django REST Framework, forms, authentication, testing, and performance optimization. It follows official Django best practices and modern Python conventions to help you build robust, maintainable applications. Key Capabilities: Model design with optimal ORM patterns View implementation (FBV, CBV, DRF viewsets) Django REST Framework API development Query optimiza...
|
3.6K |
| 1698 | douyin | xiaoyiv/douyin-skill |
Douyin Skill Download videos from Douyin using browser automation. Setup (One-Time) python -m nodriver_kit.tools.login_interactive --url https://www.douyin.com --profile douyin Download Video python scripts/download.py "https://v.douyin.com/xxx" python scripts/download.py "https://v.douyin.com/xxx" --info-only python scripts/download.py "https://v.douyin.com/xxx" --output ./videos
|
3.6K |
| 1699 | memory-management | anthropics/knowledge-work-plugins |
Memory Management Memory makes Claude your workplace collaborator - someone who speaks your internal language. The Goal Transform shorthand into understanding: User: "ask todd to do the PSR for oracle" ↓ Claude decodes "Ask Todd Martinez (Finance lead) to prepare the Pipeline Status Report for the Oracle Systems deal ($2.3M, closing Q2)" Without memory, that request is meaningless. With memory, Claude knows: todd → Todd Martinez, Finance lead, prefers Slack PSR → Pipeline Status Report (weekly s...
|
3.6K |
| 1700 | shopify-polaris-checkout-extensions | shopify/shopify-ai-toolkit |
Required Tool Calls (do not skip) You have a bash tool. Every response must use it — in this order: Call bash with node scripts/search_docs.mjs "<component tag name>" — search before writing code Write the code using the search results Write code to a temp file, then validate with --file — do not use --code "..." inline (JSX attribute strings break shell quoting): cat > /tmp/extension.tsx << 'SHOPIFY_EOF' YOUR CODE HERE SHOPIFY_EOF node scripts/validate.mjs --file /tmp/extension.tsx --target "<t...
|
3.6K |