███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 1151 | video-extend | doany-ai/skills |
Video Extend Continue an existing video clip past its per-call duration cap, or chain a narrative shot-by-shot from a single seed. This skill routes to Google Veo 3-1's extend-video endpoints and ships the documented prompting patterns + the exact runcomfy run invoke. runcomfy.com · Veo 3-1 extend-video · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy/cli --version 2. Sign in runcomfy login or in CI: export RU...
|
7.2K |
| 1152 | nano-banana-edit | runcomfy-com/skills |
Nano Banana Edit — Pro Pack on RunComfy runcomfy.com · Edit endpoint · GitHub Google Nano Banana 2 Edit — the image-to-image edit endpoint of the Gemini-family flash-tier image model — hosted on the RunComfy Model API . Up to 20 input images per call for batch edits and multi-reference variation. npx skills add agentspace-so/runcomfy-skills --skill nano-banana-edit -g When to pick this model (vs siblings) You want Use Preserve subject identity, swap background or clothing Nano Banana Edit Edit u...
|
7.2K |
| 1153 | video-edit | runcomfy-com/skills |
Video Edit — Pro Pack on RunComfy runcomfy.com · Wan 2.7 Edit-Video · Kling Motion-Control Pro · Lucy Edit Restyle · GitHub Video edit, intent-routed. This skill doesn't lock you to one model — it picks the right video-edit model in the RunComfy catalog based on what the user actually wants: general restyle, motion transfer from a reference clip, or lightweight identity-stable outfit / background swap. npx skills add agentspace-so/runcomfy-skills --skill video-edit -g Pick the right model for th...
|
7.2K |
| 1154 | video-outpainting | doany-ai/skills |
Video Outpainting Extend a video's spatial canvas — uncrop vertically or horizontally, change aspect ratio while preserving the central action. This skill routes spatial extension through Wan 2-7 edit-video for prompt-shaped canvas changes, and points the agent at dedicated ComfyUI outpaint workflows when hero-grade seam quality matters. runcomfy.com · Wan 2-7 edit-video · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @r...
|
7.2K |
| 1155 | image-edit | doany-ai/skills |
Image Edit — Pro Pack on RunComfy runcomfy.com · Nano Banana Edit · GPT Image 2 Edit · Flux Kontext · Z-Image Inpaint · GitHub Image edit, intent-routed. This skill doesn't lock you to one model — it picks the right edit model in the RunComfy catalog based on what the user actually wants: batch identity-preservation, multilingual text rewrite, single-shot precise edit, or mask-driven region replacement. npx skills add agentspace-so/runcomfy-skills --skill image-edit -g Pick the right model for t...
|
7.2K |
| 1156 | controlnet-pose | doany-ai/skills |
ControlNet & Pose Condition image or video generation on a pose, skeleton, or motion reference. This skill routes across the pose-driven Model API endpoints reachable today and points the agent at ComfyUI workflows for richer ControlNet rigs. runcomfy.com · Kling motion control · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy/cli --version 2. Sign in runcomfy login or in CI: export RUNCOMFY_TOKEN=<token> 3. P...
|
7.2K |
| 1157 | video-inpainting | runcomfy-com/skills |
Video Inpainting Region edits across video frames — remove an object that appears across many frames, clean up wires or watermarks, replace a region with motion that matches the rest of the clip. This skill routes across the prompt-driven video edit endpoints in the RunComfy catalog and gives the agent a clear default for each intent. runcomfy.com · Wan 2-7 edit-video · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runc...
|
7.2K |
| 1158 | flutter-fix-layout-issues | flutter/skills |
Resolving Flutter Layout Errors Contents Constraint Violation Diagnostics Layout Error Resolution Workflow Examples Constraint Violation Diagnostics Flutter layout operates on a strict rule: Constraints go down. Sizes go up. Parent sets position. Layout errors occur when this negotiation fails, typically due to unbounded constraints or unconstrained children. Diagnose layout failures using the following error signatures: "Vertical viewport was given unbounded height" : Triggered when a scrollabl...
|
7.2K |
| 1159 | flutter-add-widget-test | flutter/skills |
Writing Flutter Widget Tests Contents Setup & Configuration Core Components Workflow: Implementing a Widget Test Interaction & State Management Examples Setup & Configuration Ensure the testing environment is properly configured before authoring widget tests. Add the flutter_test dependency to the dev_dependencies section of pubspec.yaml . Place all test files in the test/ directory at the root of the project. Suffix all test file names with _test.dart (e.g., widget_test.dart ). Core Components ...
|
7.2K |
| 1160 | 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...
|
7.2K |
| 1161 | coding-standards | affaan-m/everything-claude-code |
Coding Standards & Best Practices Universal coding standards applicable across all projects. When to Activate Starting a new project or module Reviewing code for quality and maintainability Refactoring existing code to follow conventions Enforcing naming, formatting, or structural consistency Setting up linting, formatting, or type-checking rules Onboarding new contributors to coding conventions Code Quality Principles 1. Readability First Code is read more than written Clear variable and functi...
|
7.2K |
| 1162 | wan-2-7 | runcomfy-com/skills |
Wan 2.7 — Pro Pack on RunComfy runcomfy.com · Text-to-video · GitHub Wan-AI's Wan 2.7 — flagship video model with multi-reference conditioning and audio-driven lip-sync — hosted on the RunComfy Model API . npx skills add agentspace-so/runcomfy-skills --skill wan-2-7 -g When to pick this model (vs siblings) You want Use Lip-sync video to an audio track you supply Wan 2.7 ( audio_url ) Multi-reference fine motion control Wan 2.7 Smooth transitions, accurate motion physics Wan 2.7 Currently-1 blind...
|
7.1K |
| 1163 | gpt-image-edit | runcomfy-com/skills |
GPT Image Edit — Pro Pack on RunComfy runcomfy.com · Edit endpoint · Text-to-image sibling · GitHub OpenAI GPT Image 2 — /edit endpoint (ChatGPT Images 2.0 image-to-image) on the RunComfy Model API . Strongest in its class at preserving identity through targeted edits and rewriting embedded text in any script (Latin, kana, CJK, Cyrillic, Arabic). npx skills add agentspace-so/runcomfy-skills --skill gpt-image-edit -g When to pick this model (vs siblings) You want Use Edit multilingual / embedded ...
|
7.1K |
| 1164 | image-edit | runcomfy-com/skills |
Image Edit — Pro Pack on RunComfy runcomfy.com · Nano Banana Edit · GPT Image 2 Edit · Flux Kontext · Z-Image Inpaint · GitHub Image edit, intent-routed. This skill doesn't lock you to one model — it picks the right edit model in the RunComfy catalog based on what the user actually wants: batch identity-preservation, multilingual text rewrite, single-shot precise edit, or mask-driven region replacement. npx skills add agentspace-so/runcomfy-skills --skill image-edit -g Pick the right model for t...
|
7.1K |
| 1165 | kling-3-0 | runcomfy-com/skills |
Kling 3.0 - Pro Pack on RunComfy runcomfy.com · docs · GitHub Kling 3.0 is Kuaishou Technology's third-generation cinematic video model. This skill covers all six Kling 3.0 rendering endpoints on RunComfy: three quality tiers (Standard, Pro, 4K) across two modes (text-to-video and image-to-video). What Kling 3.0 is Kling 3.0 is the V3 generation of the Kling video model. It produces multi-shot cinematic video with synchronized native audio, consistent character identity across shots, and physics...
|
7.1K |
| 1166 | elevenlabs-music-generation | doany-ai/skills |
ElevenLabs AI Music Generation — Pro Pack on RunComfy Generate full songs and instrumental tracks from a text description — studio-quality 44.1 kHz stereo, 5 seconds to 5 minutes, with section-level structure control. ElevenLabs Music on the RunComfy Model API , called through the runcomfy CLI. runcomfy.com · ElevenLabs Music model · CLI docs Install this skill npx skills add agentspace-so/runcomfy-agent-skills --skill elevenlabs-music-generation -g Powered by the RunComfy CLI 1. Install (one o...
|
7.1K |
| 1167 | happyhorse-1-0 | doany-ai/skills |
HappyHorse 1.0 — Pro Pack on RunComfy runcomfy.com · Text-to-video · GitHub HappyHorse 1.0 — currently 1 on Artificial Analysis Video Arena (Elo 1333 t2v / 1392 i2v) — hosted on the RunComfy Model API . Native 1080p video with in-pass synchronized audio (dialogue, ambient, Foley) and multi-shot character consistency. npx skills add agentspace-so/runcomfy-skills --skill happyhorse-1-0 -g When to pick this model (vs siblings) You want Use Multi-shot story with character / wardrobe consistency Happ...
|
7.1K |
| 1168 | image-inpainting | doany-ai/skills |
Image Inpainting Mask-driven region edits — remove objects, fill gaps, replace masked areas — on RunComfy via the runcomfy CLI. This skill routes to Z-Image Turbo Inpainting when a mask is available, and to instruction-driven edit models when the region must be described in prose. runcomfy.com · Z-Image Inpainting · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy/cli --version 2. Sign in runcomfy login or in CI...
|
7.1K |
| 1169 | controlnet-pose | runcomfy-com/skills |
ControlNet & Pose Condition image or video generation on a pose, skeleton, or motion reference. This skill routes across the pose-driven Model API endpoints reachable today and points the agent at ComfyUI workflows for richer ControlNet rigs. runcomfy.com · Kling motion control · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy/cli --version 2. Sign in runcomfy login or in CI: export RUNCOMFY_TOKEN=<token> 3. P...
|
7.1K |
| 1170 | video-outpainting | runcomfy-com/skills |
Video Outpainting Extend a video's spatial canvas — uncrop vertically or horizontally, change aspect ratio while preserving the central action. This skill routes spatial extension through Wan 2-7 edit-video for prompt-shaped canvas changes, and points the agent at dedicated ComfyUI outpaint workflows when hero-grade seam quality matters. runcomfy.com · Wan 2-7 edit-video · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @r...
|
7.1K |
| 1171 | flutter-setup-declarative-routing | flutter/skills |
Implementing Routing and Deep Linking Contents Core Concepts Workflow: Initializing the Application and Router Workflow: Configuring Platform Deep Linking Workflow: Implementing Nested Navigation Examples Core Concepts Use the go_router package for declarative routing in Flutter. It provides a robust API for complex routing scenarios, deep linking, and nested navigation. GoRouter : The central configuration object defining the application's route tree. GoRoute : A standard route mapping a URL pa...
|
7.1K |
| 1172 | flutter-add-integration-test | flutter/skills |
Implementing Flutter Integration Tests Contents Project Setup and Dependencies Interactive Exploration via MCP Test Authoring Guidelines Execution and Profiling Workflow: End-to-End Integration Testing Examples Project Setup and Dependencies Configure the project to support integration testing and Flutter Driver extensions. Add required development dependencies to pubspec.yaml : flutter pub add 'dev:integration_test:{"sdk":"flutter"}' flutter pub add 'dev:flutter_test:{"sdk":"flutter"}' Enable t...
|
7.1K |
| 1173 | flutter-implement-json-serialization | flutter/skills |
Serializing JSON Manually in Flutter Contents Core Guidelines Workflow: Implementing a Serializable Model Workflow: Fetching and Parsing JSON Examples Core Guidelines Import dart:convert : Utilize Flutter's built-in dart:convert library for manual JSON encoding ( jsonEncode ) and decoding ( jsonDecode ). Enforce Type Safety : Always cast the dynamic result of jsonDecode() to the expected type, typically Map<String, dynamic> for objects or List<dynamic> for arrays. Encapsulate Serialization Logic...
|
7.1K |
| 1174 | langchain-fundamentals | langchain-ai/langchain-skills |
<create_agent> Creating Agents with create_agent create_agent() is the recommended way to build agents. It handles the agent loop, tool execution, and state management. Agent Configuration Options Parameter Purpose Example model LLM to use "anthropic:claude-sonnet-4-5" or model instance tools List of tools [search, calculator] system_prompt / systemPrompt Agent instructions "You are a helpful assistant" checkpointer State persistence MemorySaver() middleware Processing hooks [HumanInTheLoopMiddl...
|
7.1K |
| 1175 | workflow-orchestration-patterns | wshobson/agents |
Workflow Orchestration Patterns Master workflow orchestration architecture with Temporal, covering fundamental design decisions, resilience patterns, and best practices for building reliable distributed systems. When to Use Workflow Orchestration Ideal Use Cases (Source: docs.temporal.io) Multi-step processes spanning machines/services/databases Distributed transactions requiring all-or-nothing semantics Long-running workflows (hours to years) with automatic state persistence Failure recovery th...
|
7.1K |
| 1176 | deep-research | 199-biotechnologies/claude-deep-research-skill |
Deep Research Core System Instructions Purpose: Deliver citation-backed, verified research reports through 8-phase pipeline (Scope → Plan → Retrieve → Triangulate → Synthesize → Critique → Refine → Package) with source credibility scoring and progressive context management. Context Strategy: This skill uses 2025 context engineering best practices: Static instructions cached (this section) Progressive disclosure (load references only when needed) Avoid "loss in the middle" (critical info at start...
|
7.1K |
| 1177 | request-refactor-plan | mattpocock/skills |
This skill will be invoked when the user wants to create a refactor request. You should go through the steps below. You may skip steps if you don't consider them necessary. Ask the user for a long, detailed description of the problem they want to solve and any potential ideas for solutions. Explore the repo to verify their assertions and understand the current state of the codebase. Ask whether they have considered other options, and present other options to them. Interview the user about the im...
|
7.1K |
| 1178 | frontend-patterns | affaan-m/everything-claude-code |
Frontend Development Patterns Modern frontend patterns for React, Next.js, and performant user interfaces. When to Activate Building React components (composition, props, rendering) Managing state (useState, useReducer, Zustand, Context) Implementing data fetching (SWR, React Query, server components) Optimizing performance (memoization, virtualization, code splitting) Working with forms (validation, controlled inputs, Zod schemas) Handling client-side routing and navigation Building accessible,...
|
7.1K |
| 1179 | apify-actor-development | apify/agent-skills |
Apify Actor Development Important: Before you begin, fill in the generatedBy property in the meta section of .actor/actor.json. Replace it with the tool and model you're currently using, such as "Claude Code with Claude Sonnet 4.5". This helps Apify monitor and improve AGENTS.md for specific AI tools and models. What are Apify Actors? Actors are serverless programs inspired by the UNIX philosophy - programs that do one thing well and can be easily combined to build complex systems. They're pa...
|
7.1K |
| 1180 | memory-safety-patterns | wshobson/agents |
Memory Safety Patterns Cross-language patterns for memory-safe programming including RAII, ownership, smart pointers, and resource management. When to Use This Skill Writing memory-safe systems code Managing resources (files, sockets, memory) Preventing use-after-free and leaks Implementing RAII patterns Choosing between languages for safety Debugging memory issues Core Concepts 1. Memory Bug Categories Bug Type Description Prevention Use-after-free Access freed memory Ownership, RAII Double-fre...
|
7.1K |
| 1181 | backend-patterns | affaan-m/everything-claude-code |
Backend Development Patterns Backend architecture patterns and best practices for scalable server-side applications. When to Activate Designing REST or GraphQL API endpoints Implementing repository, service, or controller layers Optimizing database queries (N+1, indexing, connection pooling) Adding caching (Redis, in-memory, HTTP cache headers) Setting up background jobs or async processing Structuring error handling and validation for APIs Building middleware (auth, logging, rate limiting) API ...
|
7.1K |
| 1182 | api-security-best-practices | sickn33/antigravity-awesome-skills |
API Security Best Practices Overview Guide developers in building secure APIs by implementing authentication, authorization, input validation, rate limiting, and protection against common vulnerabilities. This skill covers security patterns for REST, GraphQL, and WebSocket APIs. When to Use This Skill Use when designing new API endpoints Use when securing existing APIs Use when implementing authentication and authorization Use when protecting against API attacks (injection, DDoS, etc.) Use whe...
|
7.1K |
| 1183 | search | brightdata/skills |
Search Skill Search the web and get relevant results optimized for LLM consumption. Authentication The script uses OAuth via the Tavily MCP server. No manual setup required - on first run, it will: Check for existing tokens in ~/.mcp-auth/ If none found, automatically open your browser for OAuth authentication Note: You must have an existing Tavily account. The OAuth flow only supports login — account creation is not available through this flow. Sign up at tavily.com first if you don't have an a...
|
7.1K |
| 1184 | code-review-expert | sanyuan0704/code-review-expert |
Code Review Expert Overview Perform a structured review of the current git changes with focus on SOLID, architecture, removal candidates, and security risks. Default to review-only output unless the user asks to implement changes. Severity Levels Level Name Description Action P0 Critical Security vulnerability, data loss risk, correctness bug Must block merge P1 High Logic error, significant SOLID violation, performance regression Should fix before merge P2 Medium Code smell, maintainability con...
|
7.1K |
| 1185 | nano-banana-edit | doany-ai/skills |
Nano Banana Edit — Pro Pack on RunComfy runcomfy.com · Edit endpoint · GitHub Google Nano Banana 2 Edit — the image-to-image edit endpoint of the Gemini-family flash-tier image model — hosted on the RunComfy Model API . Up to 20 input images per call for batch edits and multi-reference variation. npx skills add agentspace-so/runcomfy-skills --skill nano-banana-edit -g When to pick this model (vs siblings) You want Use Preserve subject identity, swap background or clothing Nano Banana Edit Edit u...
|
7K |
| 1186 | flux-kontext | runcomfy-com/skills |
Flux Kontext Pro — Pro Pack on RunComfy runcomfy.com · Model page · GitHub Black Forest Labs' Flux 1 Kontext Pro — single-reference precise local image edit — hosted on the RunComfy Model API . Strong prompt control, consistent outputs, high fidelity. npx skills add agentspace-so/runcomfy-skills --skill flux-kontext -g When to pick this model (vs siblings) You want Use Single-image precise local edit ("she's now holding X") Flux Kontext High-fidelity preservation of source identity Flux Kontext ...
|
7K |
| 1187 | image-to-video | doany-ai/skills |
Image-to-Video — Pro Pack on RunComfy runcomfy.com · HappyHorse I2V · Wan 2.7 · Seedance 2.0 Pro · GitHub Image-to-video, intent-routed. This skill doesn't lock you to one model — it picks the right i2v model in the RunComfy catalog based on what the user actually wants: portrait animation, custom-voiceover lip-sync, or multi-modal composition. npx skills add agentspace-so/runcomfy-skills --skill image-to-video -g Pick the right model for the user's intent User intent Model Why Animate a portrai...
|
7K |
| 1188 | image-outpainting | runcomfy-com/skills |
Image Outpainting Extend a still beyond its original canvas — uncrop, change aspect ratio, fill in what the camera didn't capture. This skill routes across the identity-preserving edit endpoints in the RunComfy catalog, picking the right one for prose-driven extension, reference-style matching, or brand-locked continuation. runcomfy.com · best-image-editing-models · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy...
|
7K |
| 1189 | face-swap | runcomfy-com/skills |
Face Swap Swap a face into a still or a video — RunComfy supports both via the runcomfy CLI. This skill routes across the available model API endpoints (community Wan 2-2 Animate, GPT Image 2 Edit, Nano Banana Edit, Flux Kontext, Kling Motion Control) by the user's actual intent. runcomfy.com · Character-swap feature · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy/cli --version 2. Sign in runcomfy login or in...
|
7K |
| 1190 | gpt-image-2 | doany-ai/skills |
🪞 GPT Image 2 — Image Generation via Your ChatGPT Subscription agentspace.so · GitHub Generate images with GPT Image 2 (ChatGPT Images 2.0) inside your agent, using your existing ChatGPT Plus or Pro subscription — no separate OpenAI access, no Fal or Replicate tokens, no per-image billing. Text-to-image, image-to-image editing, style transfer, and multi-reference composition. Runs entirely through the local codex CLI you're already logged into. Heads up — this skill requires a ChatGPT Plus or Pr...
|
7K |
| 1191 | video-inpainting | doany-ai/skills |
Video Inpainting Region edits across video frames — remove an object that appears across many frames, clean up wires or watermarks, replace a region with motion that matches the rest of the clip. This skill routes across the prompt-driven video edit endpoints in the RunComfy catalog and gives the agent a clear default for each intent. runcomfy.com · Wan 2-7 edit-video · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runc...
|
7K |
| 1192 | video-edit | doany-ai/skills |
Video Edit — Pro Pack on RunComfy runcomfy.com · Wan 2.7 Edit-Video · Kling Motion-Control Pro · Lucy Edit Restyle · GitHub Video edit, intent-routed. This skill doesn't lock you to one model — it picks the right video-edit model in the RunComfy catalog based on what the user actually wants: general restyle, motion transfer from a reference clip, or lightweight identity-stable outfit / background swap. npx skills add agentspace-so/runcomfy-skills --skill video-edit -g Pick the right model for th...
|
7K |
| 1193 | video-extend | runcomfy-com/skills |
Video Extend Continue an existing video clip past its per-call duration cap, or chain a narrative shot-by-shot from a single seed. This skill routes to Google Veo 3-1's extend-video endpoints and ships the documented prompting patterns + the exact runcomfy run invoke. runcomfy.com · Veo 3-1 extend-video · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy/cli --version 2. Sign in runcomfy login or in CI: export RU...
|
7K |
| 1194 | wan-2-7 | doany-ai/skills |
Wan 2.7 — Pro Pack on RunComfy runcomfy.com · Text-to-video · GitHub Wan-AI's Wan 2.7 — flagship video model with multi-reference conditioning and audio-driven lip-sync — hosted on the RunComfy Model API . npx skills add agentspace-so/runcomfy-skills --skill wan-2-7 -g When to pick this model (vs siblings) You want Use Lip-sync video to an audio track you supply Wan 2.7 ( audio_url ) Multi-reference fine motion control Wan 2.7 Smooth transitions, accurate motion physics Wan 2.7 Currently-1 blind...
|
7K |
| 1195 | flutter-setup-localization | flutter/skills |
Internationalizing Flutter Applications Contents Core Concepts Setup Workflow Implementation Workflow Advanced Formatting Examples Core Concepts Flutter handles internationalization (i18n) and localization (l10n) via the flutter_localizations and intl packages. The standard approach uses App Resource Bundle ( .arb ) files to define localized strings, which are then compiled into a generated AppLocalizations class for type-safe access within the widget tree. Setup Workflow Copy and track this che...
|
7K |
| 1196 | python-project-structure | wshobson/agents |
Python Project Structure & Module Architecture Design well-organized Python projects with clear module boundaries, explicit public interfaces, and maintainable directory structures. Good organization makes code discoverable and changes predictable. When to Use This Skill Starting a new Python project from scratch Reorganizing an existing codebase for clarity Defining module public APIs with __all__ Deciding between flat and nested directory structures Determining test file placement strategies C...
|
7K |
| 1197 | python-packaging | wshobson/agents |
Python Packaging Comprehensive guide to creating, structuring, and distributing Python packages using modern packaging tools, pyproject.toml, and publishing to PyPI. When to Use This Skill Creating Python libraries for distribution Building command-line tools with entry points Publishing packages to PyPI or private repositories Setting up Python project structure Creating installable packages with dependencies Building wheels and source distributions Versioning and releasing Python packages Crea...
|
7K |
| 1198 | html-ppt | lewislulu/html-ppt-skill |
html-ppt — HTML PPT Studio Author professional HTML presentations as static files. One theme file = one look. One layout file = one page type. One animation class = one entry effect. All pages share a token-based design system in assets/base.css . Install npx skills add https://github.com/lewislulu/html-ppt-skill One command, no build. Pure static HTML/CSS/JS with only CDN webfonts. What the skill gives you 36 themes ( assets/themes/*.css ) — minimal-white, editorial-serif, soft-pastel, sharp-mo...
|
7K |
| 1199 | writing hookify rules | anthropics/claude-code |
Writing Hookify Rules Overview Hookify rules are markdown files with YAML frontmatter that define patterns to watch for and messages to show when those patterns match. Rules are stored in .claude/hookify.{rule-name}.local.md files. Rule File Format Basic Structure --- name : rule - identifier enabled : true event : bash | file | stop | prompt | all pattern : regex - pattern - here --- Message to show Claude when this rule triggers. Can include markdown formatting, warnings, suggestions, etc. Fro...
|
7K |
| 1200 | here-now | heredotnow/skill |
here.now Skill version: 1.6.6 Create a live URL from any file or folder. Static hosting only. To install or update (recommended): npx skills add heredotnow/skill --skill here-now -g For repo-pinned/project-local installs, run the same command without -g . If npm is unavailable, see fallback install docs: https://here.now/docsinstall-skill Requirements Required binaries: curl , file , jq Optional environment variable: $HERENOW_API_KEY Optional credentials file: ~/.herenow/credentials Create an ar...
|
7K |