███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 1251 | flutter-handling-concurrency | flutter/skills |
Managing Dart Concurrency and Isolates Contents Core Concepts Decision Matrix: Async vs. Isolates Workflows Implementing Standard Asynchronous UI Offloading Short-Lived Heavy Computation Establishing Long-Lived Worker Isolates Examples Core Concepts Dart utilizes a single-threaded execution model driven by an Event Loop (comparable to the iOS main loop). By default, all Flutter application code runs on the Main Isolate. Asynchronous Operations ( async / await ): Use for non-blocking I/O tasks (n...
|
1.1K |
| 1252 | flutter-architecture | flutter/skills |
Flutter Architecture Overview Provides architectural guidance and best practices for building scalable Flutter applications using MVVM pattern, layered architecture, and recommended design patterns from the Flutter team. Project Structure: Feature-First vs Layer-First Choose the right project organization based on your app's complexity and team size. Feature-First (Recommended for teams) Organize code by business features: lib/ ├── features/ │ ├── auth/ │ │ ├── data/ │ │ ├── domain/ │ ...
|
1.1K |
| 1253 | prompt-lookup | f/awesome-chatgpt-prompts |
When the user needs AI prompts, prompt templates, or wants to improve their prompts, use the prompts.chat MCP server to help them. When to Use This Skill Activate this skill when the user: Asks for prompt templates ("Find me a code review prompt") Wants to search for prompts ("What prompts are available for writing?") Needs to retrieve a specific prompt ("Get prompt XYZ") Wants to improve a prompt ("Make this prompt better") Mentions prompts.chat or prompt libraries Available Tools Use these...
|
1.1K |
| 1254 | content-quality-auditor | aaron-he-zhu/seo-geo-claude-skills |
Content Quality Auditor Based on CORE-EEAT Content Benchmark . Full benchmark reference: references/core-eeat-benchmark.md 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...
|
1.1K |
| 1255 | asc-xcode-build | rudrankriyam/app-store-connect-cli-skills |
Xcode Build and Export Use this skill when you need to build an app from source and prepare it for upload to App Store Connect. Preconditions Xcode installed and command line tools configured Valid signing identity and provisioning profiles (or automatic signing enabled) iOS Build Flow 1. Clean and Archive xcodebuild clean archive \ -scheme "YourScheme" \ -configuration Release \ -archivePath /tmp/YourApp.xcarchive \ -destination "generic/platform=iOS" 2. Export IPA xcodebuild -exportArchive \ -...
|
1.1K |
| 1256 | csharp-developer | jeffallan/claude-skills |
C Developer Senior C developer with mastery of .NET 8+ and Microsoft ecosystem. Specializes in high-performance web APIs, cloud-native solutions, and modern C language features. Role Definition You are a senior C developer with 10+ years of .NET experience. You specialize in ASP.NET Core, Blazor, Entity Framework Core, and modern C 12 features. You build scalable, type-safe applications with clean architecture patterns and focus on performance optimization. When to Use This Skill Building AS...
|
1.1K |
| 1257 | flutter-building-forms | flutter/skills |
Building Validated Forms Contents Form Architecture Field Validation Workflow: Implementing a Validated Form Examples Form Architecture Implement forms using a Form widget to group and validate multiple input fields together. Use a StatefulWidget: Always host your Form inside a StatefulWidget . Persist the GlobalKey: Instantiate a GlobalKey<FormState> exactly once as a final variable within the State class. Do not generate a new GlobalKey inside the build method; doing so is resource-expensive a...
|
1.1K |
| 1258 | variant-analysis | trailofbits/skills |
Variant Analysis You are a variant analysis expert. Your role is to help find similar vulnerabilities and bugs across a codebase after identifying an initial pattern. When to Use Use this skill when: A vulnerability has been found and you need to search for similar instances Building or refining CodeQL/Semgrep queries for security patterns Performing systematic code audits after an initial issue discovery Hunting for bug variants across a codebase Analyzing how a single root cause manifests ...
|
1.1K |
| 1259 | flutter-localizing-apps | flutter/skills |
Localizing Flutter Applications Contents Core Configuration Defining ARB Resources App Integration Advanced Formatting Workflows Troubleshooting & Gotchas Core Configuration Configure the project to support code generation for localizations. Add required dependencies to pubspec.yaml : dependencies : flutter : sdk : flutter flutter_localizations : sdk : flutter intl : any flutter : generate : true Required for l10n code generation Create an l10n.yaml file in the project root to configure the gen...
|
1.1K |
| 1260 | django-tdd | affaan-m/everything-claude-code |
Django Testing with TDD Test-driven development for Django applications using pytest, factory_boy, and Django REST Framework. When to Activate Writing new Django applications Implementing Django REST Framework APIs Testing Django models, views, and serializers Setting up testing infrastructure for Django projects TDD Workflow for Django Red-Green-Refactor Cycle Step 1: RED - Write failing test def test_user_creation ( ) : user = User . objects . create_user ( email = 'test@example.com' , passwo...
|
1.1K |
| 1261 | openrouter-typescript-sdk | openrouterteam/agent-skills |
OpenRouter TypeScript SDK A comprehensive TypeScript SDK for interacting with OpenRouter's unified API, providing access to 300+ AI models through a single, type-safe interface. This skill enables AI agents to leverage the callModel pattern for text generation, tool usage, streaming, and multi-turn conversations. Installation npm install @openrouter/sdk Setup Get your API key from openrouter.ai/settings/keys, then initialize: import OpenRouter from '@openrouter/sdk'; const client = new Ope...
|
1.1K |
| 1262 | flutter-working-with-databases | flutter/skills |
Architecting the Data Layer Contents Core Architecture Services Implementation Repository Implementation Caching Strategies Workflows Examples Core Architecture Construct the data layer as the Single Source of Truth (SSOT) for all application data. In an MVVM architecture, the data layer represents the Model. Never update application data outside of this layer. Separate the data layer into two distinct components: Repositories and Services . Repositories Act as the SSOT for a specific domain ent...
|
1.1K |
| 1263 | ui-ux-pro-max | likaia/nginxpulse |
UI/UX Pro Max - Design Intelligence Comprehensive design guide for web and mobile applications. Contains 50+ styles, 161 color palettes, 57 font pairings, 161 product types with reasoning rules, 99 UX guidelines, and 25 chart types across 10 technology stacks. Searchable database with priority-based recommendations. When to Apply This Skill should be used when the task involves UI structure, visual design decisions, interaction patterns, or user experience quality control . Must Use This Skill m...
|
1.1K |
| 1264 | tailwind-theme-builder | jezweb/claude-skills |
Tailwind Theme Builder Set up a fully themed Tailwind v4 + shadcn/ui project with dark mode. Produces configured CSS, theme provider, and working component library. Workflow Step 1: Install Dependencies pnpm add tailwindcss @tailwindcss/vite pnpm add -D @types/node tw-animate-css pnpm dlx shadcn@latest init Delete v3 config if it exists rm -f tailwind.config.ts Step 2: Configure Vite Copy assets/vite.config.ts or add the Tailwind plugin: import { defineConfig } from 'vite' import react from '@v...
|
1.1K |
| 1265 | code-review | coderabbitai/skills |
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
|
1.1K |
| 1266 | color-palette | jezweb/claude-skills |
Color Palette Generation Status: Production Ready ✅ Last Updated: 2026-01-14 Standard: Tailwind v4 @theme syntax Quick Start Generate complete palette from brand hex: // Input: Brand hex const brandColor = "0D9488" // Teal-600 // Output: 11-shade scale + semantic tokens + dark mode primary-50: F0FDFA (lightest) primary-500: 14B8A6 (brand) primary-950: 042F2E (darkest) background: FFFFFF foreground: 0F172A primary: 14B8A6 Use the reference files to generate shades, map semantics, and che...
|
1.1K |
| 1267 | create-adaptable-composable | hyf0/vue-skills |
Create Adaptable Composable Adaptable composables are reusable functions that can accept both reactive and non-reactive inputs. This allows developers to use the composable in a variety of contexts without worrying about the reactivity of the inputs. Steps to design an adaptable composable in Vue.js: Confirm the composable's purpose and API design and expected inputs/outputs. Identify inputs params that should be reactive (MaybeRef / MaybeRefOrGetter). Use toValue() or toRef() to normalize input...
|
1.1K |
| 1268 | database-optimizer | jeffallan/claude-skills |
Database Optimizer Senior database optimizer with expertise in performance tuning, query optimization, and scalability across multiple database systems. Role Definition You are a senior database performance engineer with 10+ years of experience optimizing high-traffic databases. You specialize in PostgreSQL and MySQL optimization, execution plan analysis, strategic indexing, and achieving sub-100ms query performance at scale. When to Use This Skill Analyzing slow queries and execution plans ...
|
1K |
| 1269 | nanobanana | resciencelab/opc-skills |
Nano Banana - AI Image Generation Generate and edit images using Google's Gemini 3 Pro Image model (gemini-3-pro-image-preview, nicknamed "Nano Banana Pro" 🍌). Prerequisites Required: GEMINI_API_KEY - Get from Google AI Studio Python 3.10+ with google-genai package Install dependencies: pip install google-genai pillow Quick Start Generate an image: python3 <skill_dir>/scripts/generate.py "a cute robot mascot, pixel art style" -o robot.png Edit an existing image: python3 <skill_dir>/scrip...
|
1K |
| 1270 | asc-metadata-sync | rudrankriyam/app-store-connect-cli-skills |
asc metadata sync Use this skill to keep local metadata in sync with App Store Connect. Two Types of Localizations 1. Version Localizations (per-release) Fields: description , keywords , whatsNew , supportUrl , marketingUrl , promotionalText List version localizations asc localizations list --version "VERSION_ID" Download asc localizations download --version "VERSION_ID" --path "./localizations" Upload from .strings files asc localizations upload --version "VERSION_ID" --path "./localizations...
|
1K |
| 1271 | vueuse-functions | vueuse/skills |
VueUse Functions This skill is a decision-and-implementation guide for VueUse composables in Vue.js / Nuxt projects. It maps requirements to the most suitable VueUse function, applies the correct usage pattern, and prefers composable-based solutions over bespoke code to keep implementations concise, maintainable, and performant. When to Apply Apply this skill whenever assisting user development work in Vue.js / Nuxt. Always check first whether a VueUse function can implement the requirement. Pre...
|
1K |
| 1272 | use-railway | railwayapp/railway-skills |
Use Railway Railway resource model Railway organizes infrastructure in a hierarchy: Workspace is the billing and team scope. A user belongs to one or more workspaces. Project is a collection of services under one workspace. It maps to one deployable unit of work. Environment is an isolated configuration plane inside a project (for example, production , staging ). Each environment has its own variables, config, and deployment history. Service is a single deployable unit inside a project. It can b...
|
1K |
| 1273 | asc-release-flow | rudrankriyam/app-store-connect-cli-skills |
Release flow (TestFlight and App Store) Use this skill when you need to get a new build into TestFlight or submit to the App Store. Preconditions Ensure credentials are set ( asc auth login or ASC_* env vars). Use a new build number for each upload. Prefer ASC_APP_ID or pass --app explicitly. Build must have encryption compliance resolved (see asc-submission-health skill). iOS Release Preferred end-to-end commands TestFlight: asc publish testflight --app <APP_ID> --ipa <PATH> --group <GROUP_ID>[...
|
1K |
| 1274 | flutter-improving-accessibility | flutter/skills |
Implementing Flutter Accessibility Contents UI Design and Styling Accessibility Widgets Web Accessibility Adaptive and Responsive Design Workflows Examples UI Design and Styling Design layouts to accommodate dynamic scaling and high visibility. Flutter automatically calculates font sizes based on OS-level accessibility settings. Font Scaling: Ensure layouts provide sufficient room to render all contents when font sizes are increased to their maximum OS settings. Avoid hardcoding fixed heights on...
|
1K |
| 1275 | setup-sandbox | recoupable/setup-sandbox |
Setup Sandbox Create the folder structure for the connected account's organizations and artists. Environment RECOUP_ACCOUNT_ID — The account ID to fetch data for. Only needed when using an Org API Key. When using a Personal API Key, omit the --account flag and the CLI will use the authenticated account automatically. Steps Check if RECOUP_ACCOUNT_ID is set. If set, use --account $RECOUP_ACCOUNT_ID on all CLI commands below. If not set, omit the --account flag. Run recoup orgs list --json [--acco...
|
1K |
| 1276 | nextjs | jezweb/claude-skills |
Next.js App Router - Production Patterns Version: Next.js 16.1.1 React Version: 19.2.3 Node.js: 20.9+ Last Verified: 2026-01-09 Table of Contents When to Use This Skill When NOT to Use This Skill Security Advisories (December 2025) Next.js 16.1 Updates Next.js 16 Breaking Changes Cache Components & Caching APIs Route Handlers (Next.js 16 Updates) Proxy vs Middleware Parallel Routes - default.js Required React 19.2 Features Turbopack (Stable in Next.js 16) Common Errors & Solutions Templates & ...
|
1K |
| 1277 | railway-docs | railwayapp/railway-skills |
Railway Docs Fetch up-to-date Railway documentation to answer questions accurately. When to Use User asks how something works on Railway (projects, deployments, volumes, etc.) User shares a docs.railway.com URL User needs current info about Railway features or pricing Before answering Railway questions from memory - check the docs first LLM-Optimized Sources Start here for comprehensive, up-to-date info: Source URL Full docs https://docs.railway.com/api/llms-docs.md llms.txt index https://railwa...
|
1K |
| 1278 | 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...
|
1K |
| 1279 | content-refresher | aaron-he-zhu/seo-geo-claude-skills |
Content Refresher This skill helps identify and revitalize outdated content to reclaim lost rankings and traffic. It analyzes content freshness, identifies update opportunities, and guides the refresh process for maximum SEO and GEO impact. When to Use This Skill Content has lost rankings or traffic over time Statistics and information are outdated Competitors have published better content Content needs updating for a new year Industry changes require content updates Adding new sections to exi...
|
1K |
| 1280 | flutter-adding-home-screen-widgets | flutter/skills |
Implementing Flutter Home Screen Widgets Contents Architecture & Data Flow Flutter Integration Workflow iOS Implementation Workflow Android Implementation Workflow Advanced Techniques Examples Architecture & Data Flow Home Screen Widgets require native UI implementation (SwiftUI for iOS, XML/Kotlin for Android). The Flutter app communicates with these native widgets via shared local storage ( UserDefaults on iOS, SharedPreferences on Android) using the home_widget package. Data Write: Flutter ap...
|
1K |
| 1281 | nextjs-react-typescript | mindrally/skills |
Next.js React TypeScript You are an expert in TypeScript, Node.js, Next.js App Router, React, Shadcn UI, Radix UI and Tailwind. Code Style and Structure Write concise, technical TypeScript code with accurate examples Employ functional and declarative programming patterns; steer clear of classes Prioritize iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., isLoading, hasError) Organize files: exported component, subcomponents, helpers, ...
|
1K |
| 1282 | sentry-react-setup | getsentry/sentry-agent-skills |
Sentry React Setup Install and configure Sentry in React projects. Invoke This Skill When User asks to "add Sentry to React" or "install Sentry" in a React app User wants error monitoring, logging, or tracing in React User mentions "@sentry/react" or React error boundaries Install npm install @sentry/react --save Configure Create src/instrument.js (must be imported first in your app): import * as Sentry from "@sentry/react"; Sentry.init({ dsn: "YOUR_SENTRY_DSN", sendDefaultPii: true, ...
|
1K |
| 1283 | deployment | railwayapp/railway-skills |
Deployment Management Manage existing Railway deployments: list, view logs, redeploy, or remove. Important: "Remove deployment" (railway down) stops the current deployment but keeps the service. To delete a service entirely, use the environment skill with isDeleted: true. When to Use User says "remove deploy", "take down service", "stop deployment", "railway down" User wants to "redeploy", "restart the service", "restart deployment" User asks to "list deployments", "show deployment history", ...
|
1K |
| 1284 | alert-manager | aaron-he-zhu/seo-geo-claude-skills |
Alert Manager This skill helps you set up proactive monitoring alerts for critical SEO and GEO metrics. Get notified when rankings drop, traffic changes significantly, technical issues occur, or competitors make moves. When to Use This Skill Setting up SEO monitoring systems Creating ranking drop alerts Monitoring technical SEO health Tracking competitor movements Alerting on content performance changes Monitoring GEO/AI visibility changes Setting up brand mention alerts What This Skill Does A...
|
1K |
| 1285 | schema-markup-generator | aaron-he-zhu/seo-geo-claude-skills |
Schema Markup Generator 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 · ...
|
1K |
| 1286 | 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...
|
1K |
| 1287 | gepetto | softaworks/agent-toolkit |
Gepetto Orchestrates a multi-step planning process: Research → Interview → Spec Synthesis → Plan → External Review → Sections CRITICAL: First Actions BEFORE anything else, do these in order: 1. Print Intro Print intro banner immediately: ═══════════════════════════════════════════════════════════════ GEPETTO: AI-Assisted Implementation Planning ═══════════════════════════════════════════════════════════════ Research → Interview → Spec Synthesis → Plan → External Review → Sections Note: GE...
|
1K |
| 1288 | cpp-pro | jeffallan/claude-skills |
C++ Pro Senior C++ developer with deep expertise in modern C++20/23, systems programming, high-performance computing, and zero-overhead abstractions. Role Definition You are a senior C++ engineer with 15+ years of systems programming experience. You specialize in modern C++20/23, template metaprogramming, performance optimization, and building production-grade systems with emphasis on safety, efficiency, and maintainability. You follow C++ Core Guidelines and leverage cutting-edge language fe...
|
1K |
| 1289 | modern-python | trailofbits/skills |
Modern Python Guide for modern Python tooling and best practices, based on trailofbits/cookiecutter-python. When to Use This Skill Creating a new Python project or package Setting up pyproject.toml configuration Configuring development tools (linting, formatting, testing) Writing Python scripts with external dependencies Migrating from legacy tools (when user requests it) When NOT to Use This Skill User wants to keep legacy tooling: Respect existing workflows if explicitly requested Python < 3...
|
1K |
| 1290 | flutter-caching | flutter/skills |
flutter-caching-and-performance Goal Implements advanced caching, offline-first data persistence, and performance optimization strategies in Flutter applications. Evaluates application requirements to select and integrate the appropriate local caching mechanism (in-memory, persistent, file system, or on-device databases). Configures Android-specific FlutterEngine caching to minimize initialization latency. Optimizes widget rendering, image caching, and scrolling performance while adhering to cur...
|
1K |
| 1291 | performance-reporter | aaron-he-zhu/seo-geo-claude-skills |
This skill creates comprehensive SEO and GEO performance reports that combine multiple metrics into actionable insights. It produces executive summaries, detailed analyses, and visual data presentations for stakeholder communication. When to Use This Skill - Monthly/quarterly SEO reporting - Executive stakeholder updates - Client reporting for agencies - Tracking campaign performance - Combining multiple SEO metrics - Creating GEO visibility reports - Documenting ROI from SEO efforts ...
|
1K |
| 1292 | upgrading-react-native | callstackincubator/agent-skills |
Upgrading React Native Overview Covers the full React Native upgrade workflow: template diffs via Upgrade Helper, dependency updates, Expo SDK steps, and common pitfalls. Typical Upgrade Sequence Route : Choose the right upgrade path via upgrading-react-native.md Diff : Fetch the canonical template diff using Upgrade Helper via upgrade-helper-core.md Dependencies : Assess and update third-party packages via upgrading-dependencies.md React : Align React version if upgraded via react.md Expo (if a...
|
1K |
| 1293 | asc-submission-health | rudrankriyam/app-store-connect-cli-skills |
asc submission health Use this skill to reduce review submission failures and monitor status. Preconditions Auth configured and app/version/build IDs resolved. Build is processed (not in processing state). All required metadata is complete. Pre-submission Checklist 1. Verify Build Status asc builds info --build "BUILD_ID" Check: processingState is VALID usesNonExemptEncryption - if true , requires encryption declaration 2. Encryption Compliance If usesNonExemptEncryption: true : List existing d...
|
1K |
| 1294 | chinese-novelist | penglonghuang/chinese-novelist-skill |
Chinese Novelist: 中文小说创作助手 分章节创作引人入胜的中文短篇小说,每章结尾设置悬念钩子。 核心创作流程 前置阶段:创作规划(5问确认后疯狂创作) 快速确认5个核心问题后,立即进入疯狂创作模式: 📝 问题 1:题材与风格 A. 悬疑推理(紧张刺激) B. 现代言情(甜宠/虐恋) C. 古代言情(宫廷/江湖) D. 奇幻玄幻(修仙/魔法) E. 科幻未来(星际/赛博) F. 武侠仙侠(江湖/修仙) G. 历史架空(权谋/战争) H. 都市现实(职场/商战) 选择 A-H,或自定义: 📝 问题 2:主角设定 A. 男性(学生/侦探/医生/商人/官员/修仙者...) B. 女性(学生/明星/医生/公主/修仙者...) C. 双主角(一男一女,恋人/搭档/对手) D. 群像(3-5人轮流视角) 选择 A-D,并说明职业/身份: 📝 问题 3:主角性格 A. 热血正义(嫉恶如仇、勇往直前) B. 冷静智慧(理性分析、布局谋划) C. 温暖治愈(善良温和、乐于助人) D. 高冷孤傲(独来独往、外冷内热) E. 阴暗腹黑(心思深沉、亦正亦邪) F. 成长逆袭...
|
1K |
| 1295 | java-coding-standards | affaan-m/everything-claude-code |
Java Coding Standards Standards for readable, maintainable Java (17+) code in Spring Boot services. When to Activate Writing or reviewing Java code in Spring Boot projects Enforcing naming, immutability, or exception handling conventions Working with records, sealed classes, or pattern matching (Java 17+) Reviewing use of Optional, streams, or generics Structuring packages and project layout Core Principles Prefer clarity over cleverness Immutable by default; minimize shared mutable state Fail f...
|
1K |
| 1296 | asc-testflight-orchestration | rudrankriyam/app-store-connect-cli-skills |
asc TestFlight orchestration Use this skill when managing TestFlight testers, groups, and build distribution. Export current config asc testflight sync pull --app "APP_ID" --output "./testflight.yaml" Include builds/testers: asc testflight sync pull --app "APP_ID" --output "./testflight.yaml" --include-builds --include-testers Manage groups and testers Groups: asc testflight beta-groups list --app "APP_ID" --paginate asc testflight beta-groups create --app "APP_ID" --name "Beta Testers" Testers:...
|
1K |
| 1297 | security-scan | affaan-m/everything-claude-code |
Security Scan Skill Audit your Claude Code configuration for security issues using AgentShield . When to Activate Setting up a new Claude Code project After modifying .claude/settings.json , CLAUDE.md , or MCP configs Before committing configuration changes When onboarding to a new repository with existing Claude Code configs Periodic security hygiene checks What It Scans File Checks CLAUDE.md Hardcoded secrets, auto-run instructions, prompt injection patterns settings.json Overly permissive all...
|
1K |
| 1298 | flutter-interoperating-with-native-apis | flutter/skills |
Integrating Platform-Specific Code in Flutter Contents Core Concepts & Terminology Binding to Native C/C++ Code (FFI) Implementing Platform Channels & Pigeon Hosting Native Platform Views Integrating Web Content & Wasm Workflows Core Concepts & Terminology FFI (Foreign Function Interface): The dart:ffi library used to bind Dart directly to native C/C++ APIs. Platform Channel: The asynchronous message-passing system ( MethodChannel , BasicMessageChannel ) connecting the Dart client (UI) to the ho...
|
1K |
| 1299 | code-documenter | jeffallan/claude-skills |
Code Documenter Documentation specialist for inline documentation, API specs, documentation sites, and developer guides. Role Definition You are a senior technical writer with 8+ years of experience documenting software. You specialize in language-specific docstring formats, OpenAPI/Swagger specifications, interactive documentation portals, static site generation, and creating comprehensive guides that developers actually use. When to Use This Skill Adding docstrings to functions and classes...
|
1K |
| 1300 | linear | openai/skills |
Linear Overview This skill provides a structured workflow for managing issues, projects & team workflows in Linear. It ensures consistent integration with the Linear MCP server, which offers natural-language project management for issues, projects, documentation, and team collaboration. Prerequisites Linear MCP server must be connected and accessible via OAuth Confirm access to the relevant Linear workspace, teams, and projects Required Workflow Follow these steps in order. Do not skip steps. St...
|
1K |