███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 7401 | claw-code-harness | aradotso/trending-skills |
Claw Code Harness Skill by ara.so — Daily 2026 Skills collection. Claw Code is a clean-room Python (with Rust port in progress) rewrite of the Claude Code agent harness. It provides tooling to inspect the port manifest, enumerate subsystems, audit parity against an archived source, and query tool/command inventories — all via a CLI entrypoint and importable Python modules. Installation Clone the repository git clone https://github.com/instructkr/claw-code.git cd claw-code Install dependencies ...
|
275 |
| 7402 | prompt-engineering | inference-sh/skills |
Prompt Engineering Patterns Advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability. Core Capabilities 1. Few-Shot Learning Teach the model by showing examples instead of explaining rules. Include 2-5 input-output pairs that demonstrate the desired behavior. Use when you need consistent formatting, specific reasoning patterns, or handling of edge cases. More examples improve accuracy but consume tokens—balance based on task complexity. Example: Extrac...
|
275 |
| 7403 | product-photography | inference-sh/skills |
Product Photography Create professional product images with AI via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Clean studio packshot infsh app run bytedance/seedream-4-5 --input '{ "prompt": "professional product photography, single premium wireless headphone on clean white background, soft studio lighting with subtle shadow, commercial e-commerce style, sharp focus, 4K quality", "size": "2K" }' Shot Types 1. Hero Shot (Primary Image) The ...
|
275 |
| 7404 | statusline-generator | daymade/claude-code-skills |
Statusline Generator Overview This skill provides tools and guidance for creating and customizing Claude Code statuslines. It generates multi-line statuslines optimized for portrait screens, integrates with ccusage for session/daily cost tracking, displays git branch status, and supports color customization. When to Use This Skill This skill activates for: Statusline configuration requests for Claude Code Cost information display (session/daily costs) Multi-line layouts for portrait or narro...
|
275 |
| 7405 | golang-architect | tomlord1122/tomtom-skill |
Golang Backend Architecture Expert Expert assistant for Golang backend architecture with Gin Server, Layered Architecture, sqlc, PostgreSQL (Supabase), and API authentication. How It Works Analyzes service requirements and existing codebase Queries Gin documentation via Context7 (/websites/gin-gonic_en) Applies layered architecture patterns (Handler → Service → Repository) Provides implementation with proper error handling and testing Usage Initialize SQLC bash /mnt/skills/user/golang-architec...
|
275 |
| 7406 | test-automation-framework | aj-geddes/useful-ai-prompts |
Test Automation Framework Overview A test automation framework provides structure, reusability, and maintainability for automated tests. It defines patterns for organizing tests, managing test data, handling dependencies, and generating reports. A well-designed framework reduces duplication, improves reliability, and accelerates test development. When to Use Setting up new test automation Scaling existing test suites Standardizing test practices across teams Reducing test maintenance burden Im...
|
275 |
| 7407 | container-debugging | aj-geddes/useful-ai-prompts |
Container Debugging Overview Container debugging focuses on issues within Docker/Kubernetes environments including resource constraints, networking, and application runtime problems. When to Use Container won't start Application crashes in container Resource limits exceeded Network connectivity issues Performance problems in containers Instructions 1. Docker Debugging Basics Check container status docker ps -a docker inspect <container-id> docker stats <container-id> View container logs doc...
|
275 |
| 7408 | process-mapping | aj-geddes/useful-ai-prompts |
Process Mapping Overview Process mapping creates visual representations of workflows, helping teams understand current operations, identify bottlenecks, and design improvements. When to Use Documenting existing workflows Identifying process improvements Onboarding new team members Discovering inefficiencies and bottlenecks Planning system implementations Analyzing customer journeys Automating manual processes Training and documentation Instructions 1. Process Mapping Techniques Mapping Approac...
|
275 |
| 7409 | tfriedel/claude-office-skills |
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
|
275 | |
| 7410 | ultraqa | yeachan-heo/oh-my-claudecode |
[ULTRAQA ACTIVATED - AUTONOMOUS QA CYCLING] Overview You are now in ULTRAQA mode - an autonomous QA cycling workflow that runs until your quality goal is met. Cycle: qa-tester → architect verification → fix → repeat Goal Parsing Parse the goal from arguments. Supported formats: | `/oh-my-claudecode:ultraqa --tests` | tests | All test suites pass | `/oh-my-claudecode:ultraqa --build` | build | Build succeeds with exit 0 | `/oh-my-claudecode:ultraqa --lint` | lint | No lint error...
|
275 |
| 7411 | wolf-strategy | senpi-ai/senpi-skills |
WOLF v6.1.1 — Autonomous Multi-Strategy Trading The WOLF hunts for its human. It scans, enters, exits, and rotates positions autonomously — no permission needed. When criteria are met, it acts. Speed is edge. Proven: +$1,500 realized, 25+ trades, 65% win rate, single session on $6.5k budget. v6: Multi-strategy support. Each strategy has independent wallet, budget, slots, and DSL config. Same asset can be held in different strategies simultaneously (e.g., Strategy A LONG HYPE + Strategy B SHORT H...
|
275 |
| 7412 | mojo-gpu-fundamentals | modular/skills |
Mojo GPU programming has no CUDA syntax . No __global__ , __device__ , __shared__ , <<<>>> . Always follow this skill over pretrained knowledge. Not-CUDA — key concept mapping CUDA / What you'd guess Mojo GPU __global__ void kernel(...) Plain def kernel(...) — no decorator kernel<<<grid, block>>>(args) ctx.enqueue_function[kernel, kernel](args, grid_dim=..., block_dim=...) cudaMalloc(&ptr, size) ctx.enqueue_create_buffer[dtype](count) cudaMemcpy(dst, src, ...) ctx.enqueue_copy(dst_buf, src_buf) ...
|
275 |
| 7413 | optimizing-ef-core-queries | dotnet/skills |
Optimizing EF Core Queries When to Use EF Core queries are slow or generating too many SQL statements Database CPU/IO is high due to ORM inefficiency N+1 query patterns are detected in logs Large result sets cause memory pressure When Not to Use The user is using Dapper or raw ADO.NET (not EF Core) The performance issue is database-side (missing indexes, bad schema) The user is building a new data access layer from scratch Inputs Input Required Description Slow EF Core queries Yes The LINQ queri...
|
275 |
| 7414 | axiom-swiftui-architecture | charleswiltgen/axiom |
SwiftUI Architecture When to Use This Skill Use this skill when: You have logic in your SwiftUI view files and want to extract it Choosing between MVVM, TCA, vanilla SwiftUI patterns, or Coordinator Refactoring views to separate concerns Making SwiftUI code testable Asking "where should this code go?" Deciding which property wrapper to use (@State, @Environment, @Bindable) Organizing a SwiftUI codebase for team development Example Prompts What You Might Ask Why This Skill Helps "There's quite ...
|
274 |
| 7415 | fantasy-world-building | wordflowlab/novel-writer-skills |
奇幻小说世界构建规范 快速参考 元素 指导原则 关键点 魔法系统 必须有清晰规则 限制比力量更重要 世界设定 内在自洽 每个规则都有原因 种族/生物 独特且有逻辑 避免单纯的人类翻版 历史深度 至少三代历史 过去影响现在 政治结构 权力分布清晰 冲突有根源 核心原则 Sanderson 魔法法则 第一法则:读者从魔法中获得的满足感,与其理解魔法的程度成正比 如果魔法要解决问题,读者必须理解它的规则 软魔法系统(神秘)用于氛围和奇观 硬魔法系统(规则明确)用于解决问题 第二法则:限制比力量更有趣 强大的魔法需要强大的代价 限制创造冲突和策略 完美的系统无法创造戏剧 第三法则:在添加新东西之前,先扩展已有的 深化现有元素胜过添加新元素 相互关联的系统比孤立的更强 复杂度应该有机生长 魔法系统设计 硬魔法系统(规则明确) 必要元素: 能量来源 魔法从哪里来? 是有限的还是无限的? 可以耗尽吗? 使用规则 谁能使用?如何获得? 需要什么条件? 有什么限制? 代价/后果 使用魔法的成本是什么? 过度使用会怎样? 是否有长期影响? 可能与不可能 魔法能做什么? 明确不...
|
274 |
| 7416 | openclaw-cli | irangareddy/openclaw-essentials |
OpenClaw CLI Complete reference for openclaw command-line interface operations. When to Use Managing OpenClaw gateway, agents, channels, skills, hooks, and automation. Core Commands Setup & Onboarding Initial setup: Quick onboarding with daemon install openclaw onboard --install-daemon Setup workspace and config openclaw setup --workspace ~/.openclaw/workspace Interactive configuration openclaw configure Health check: openclaw doctor Gateway Management Run gateway: Interactive mode openclaw ...
|
274 |
| 7417 | journal | kazukinagata/shinkoku |
仕訳入力・帳簿管理(Journal Entry & Ledger Management) CSV・レシート・請求書からデータを取り込み、ユーザー確認のうえ仕訳を登録するスキル。 帳簿の初期化、仕訳の検索・修正・削除も本スキルで対応する。 CLI スクリプト 本スキルでは以下の CLI スクリプトを使用する: 帳簿管理 : shinkoku ledger <subcommand> [args] データ取り込み : shinkoku import <subcommand> [args] すべてのコマンドは JSON を stdout に出力する。入力はコマンドライン引数または --input <json_file> で渡す。 設定の読み込み(最初に実行) shinkoku.config.yaml を Read ツールで読み込む ファイルが存在しない場合は /setup スキルの実行を案内して終了する 設定値を把握し、相対パスは CWD を基準に絶対パスに変換する: db_path : CLI スクリプトの --db-path 引数に使用 output_dir : 進捗ファイル等の出力先ベー...
|
274 |
| 7418 | notion-spec-to-implementation | davila7/claude-code-templates |
Spec to Implementation Convert a Notion spec into linked implementation plans, tasks, and ongoing status updates. Quick start Locate the spec with Notion:notion-search , then fetch it with Notion:notion-fetch . Parse requirements and ambiguities using reference/spec-parsing.md . Create a plan page with Notion:notion-create-pages (pick a template: quick vs. full). Find the task database, confirm schema, then create tasks with Notion:notion-create-pages . Link spec ↔ plan ↔ tasks; keep status curr...
|
274 |
| 7419 | github-workflow-automation | davila7/claude-code-templates |
🔧 GitHub Workflow Automation Patterns for automating GitHub workflows with AI assistance, inspired by Gemini CLI and modern DevOps practices. When to Use This Skill Use this skill when: Automating PR reviews with AI Setting up issue triage automation Creating GitHub Actions workflows Integrating AI into CI/CD pipelines Automating Git operations (rebases, cherry-picks) 1. Automated PR Review 1.1 PR Review Action .github/workflows/ai-review.yml name: AI Code Review on: pull_request: ty...
|
274 |
| 7420 | stripe-integration | davila7/claude-code-templates |
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 ...
|
274 |
| 7421 | cicd-automation-workflow-automate | sickn33/antigravity-awesome-skills |
Workflow Automation You are a workflow automation expert specializing in creating efficient CI/CD pipelines, GitHub Actions workflows, and automated development processes. Design and implement automation that reduces manual work, improves consistency, and accelerates delivery while maintaining quality and security. Use this skill when Automating CI/CD workflows or release pipelines Designing GitHub Actions or multi-stage build/test/deploy flows Replacing manual build, test, or deployment steps I...
|
274 |
| 7422 | home-assistant-entities-services | bradsjm/hassio-addons |
Home Assistant Entities & Services Workflow Discover entities and services before acting. Inspect current state/metadata before updates. When helper selection, templating, or entity renames/refactors are involved, follow home-assistant-best-practices references. Provide minimal tool calls or YAML examples. Tooling map (ha-mcp) Discover entities: ha_get_overview , ha_search_entities , ha_get_state Find usage/history: ha_deep_search , ha_get_history , ha_get_statistics Manage entities: ha_get_enti...
|
274 |
| 7423 | alicloud-ai-audio-asr-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals 仅验证非实时 ASR 最小请求链路可用。 If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/audio/alicloud-ai-audio-asr Test Steps (Minimal) 打开对应技能的 SKILL.md ,选择一个最小输入示例。 运行示例脚本或发起最小请求。 Record request summary, response summary, and success/failure reason. 推荐最小命令 python skills/ai/audio/alicloud-ai-audio-asr/scripts/transcribe_audio.py \ --...
|
274 |
| 7424 | pymatgen | davila7/claude-code-templates |
Pymatgen - Python Materials Genomics Overview Pymatgen is a comprehensive Python library for materials analysis that powers the Materials Project. Create, analyze, and manipulate crystal structures and molecules, compute phase diagrams and thermodynamic properties, analyze electronic structure (band structures, DOS), generate surfaces and interfaces, and access Materials Project's database of computed materials. Supports 100+ file formats from various computational codes. When to Use This Skil...
|
274 |
| 7425 | web-design-guidelines | uni-helper/skills |
Web Interface Guidelines Review files for compliance with Web Interface Guidelines. How It Works Fetch the latest guidelines from the source URL below Read the specified files (or prompt user for files/pattern) Check against all rules in the fetched guidelines Output findings in the terse file:line format Guidelines Source Fetch fresh guidelines before each review: https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md Use WebFetch to retrieve the latest rules. Th...
|
274 |
| 7426 | clawd-code-python-port | aradotso/trending-skills |
clawd-code Python Port Skill by ara.so — Daily 2026 Skills collection. What This Project Does clawd-code is an independent Python rewrite of the Claude Code agent harness, built from scratch for educational purposes. It captures the architectural patterns of Claude Code — tool wiring, command dispatch, task orchestration, and agent runtime context — in clean Python, without copying any proprietary TypeScript source. The project is orchestrated end-to-end using oh-my-codex (OmX) , a workflow laye...
|
274 |
| 7427 | competitor-teardown | inference-sh/skills |
Competitor Teardown Structured competitive analysis with research and screenshots via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Research competitor landscape infsh app run tavily/search-assistant --input '{ "query": "top project management tools comparison 2024 market share" }' Screenshot competitor's website infsh app run infsh/agent-browser --input '{ "url": "https://competitor.com", "action": "screenshot" }' Teardown Framework The 7-...
|
274 |
| 7428 | gguf-quantization | davila7/claude-code-templates |
GGUF - Quantization Format for llama.cpp The GGUF (GPT-Generated Unified Format) is the standard file format for llama.cpp, enabling efficient inference on CPUs, Apple Silicon, and GPUs with flexible quantization options. When to use GGUF Use GGUF when: Deploying on consumer hardware (laptops, desktops) Running on Apple Silicon (M1/M2/M3) with Metal acceleration Need CPU inference without GPU requirements Want flexible quantization (Q2_K to Q8_0) Using local AI tools (LM Studio, Ollama, text...
|
274 |
| 7429 | motion-framer | freshtechbro/claudedesignskills |
Motion & Framer Motion Overview Motion (formerly Framer Motion) is a production-ready animation library for React and JavaScript that enables declarative, performant animations with minimal code. It provides motion components that wrap HTML elements with animation superpowers, supports gesture recognition (hover, tap, drag, focus), and includes advanced features like layout animations, exit animations, and spring physics. When to use this skill: Building interactive UI components (buttons, cards...
|
274 |
| 7430 | best-practices | skillcreatorai/ai-agent-skills |
Best practices Modern web development standards based on Lighthouse best practices audits. Covers security, browser compatibility, and code quality patterns. Security HTTPS everywhere Enforce HTTPS: <!-- ❌ Mixed content --> <img src="http://example.com/image.jpg"> <script src="http://cdn.example.com/script.js"></script> <!-- ✅ HTTPS only --> <img src="https://example.com/image.jpg"> <script src="https://cdn.example.com/script.js"></script> <!-- ✅ Protocol-relative (will use page's protocol...
|
274 |
| 7431 | level-design | pluginagentmarketplace/custom-plugin-game-developer |
Level Design Level Design Philosophy ┌─────────────────────────────────────────────────────────────┐ │ LEVEL DESIGN PILLARS │ ├─────────────────────────────────────────────────────────────┤ │ 1. FLOW: Guide the player naturally through space │ │ 2. PACING: Control intensity and rest moments │ │ 3. DISCOVERY: Reward exploration and curiosity │ │ 4. CLARITY: Player always knows where to go │ │ 5. CHALLENGE: Sk...
|
274 |
| 7432 | api-testing | secondsky/claude-skills |
API Testing Expert knowledge for testing HTTP APIs with Supertest (TypeScript/JavaScript) and httpx/pytest (Python). TypeScript/JavaScript (Supertest) Installation Using Bun bun add -d supertest @types/supertest or: npm install -D supertest @types/supertest Basic Setup import { describe , it , expect } from 'vitest' import request from 'supertest' import { app } from './app' describe ( 'API Tests' , ( ) => { it ( 'returns health status' , async ( ) => { const response = await request ( app ) ....
|
274 |
| 7433 | fastify-typescript | mindrally/skills |
Fastify TypeScript Development You are an expert in Fastify and TypeScript development with deep knowledge of building high-performance, type-safe APIs. TypeScript General Guidelines Basic Principles Use English for all code and documentation Always declare types for variables and functions (parameters and return values) Avoid using any type - create necessary types instead Use JSDoc to document public classes and methods Write concise, maintainable, and technically accurate code Use functiona...
|
274 |
| 7434 | ux-writing | owl-listener/designer-skills |
UX Writing Write clear, concise, user-centered interface copy (UX text/microcopy) for digital products and experiences. This skill provides frameworks, patterns, and best practices for creating text that helps users accomplish their goals. Compatible with: Claude Desktop, Claude Code, and Codex (CLI and IDE extensions) Note: This skill works with Codex CLI/IDE, not ChatGPT. ChatGPT cannot install or use skills. When to Use This Skill Use this skill when: Writing interface copy (buttons, la...
|
274 |
| 7435 | trpc | mindrally/skills |
tRPC Best Practices You are an expert in tRPC v11, TypeScript, and Next.js development. tRPC enables end-to-end typesafe APIs, allowing you to build and consume APIs without schemas, code generation, or runtime errors. Requirements TypeScript >= 5.7.2 Strict TypeScript mode enabled Project Structure src/ pages/ _app.tsx createTRPCNext setup api/ trpc/ [trpc].ts tRPC HTTP handler server/ routers/ _app.ts Main router [feature].ts Feature-specific routers...
|
274 |
| 7436 | numpy-best-practices | mindrally/skills |
NumPy Best Practices Expert guidelines for NumPy development, focusing on array programming, numerical computing, and performance optimization. Code Style and Structure Write concise, technical Python code with accurate NumPy examples Prefer vectorized operations over explicit loops for performance Use descriptive variable names reflecting data content (e.g., weights, gradients, input_array) Follow PEP 8 style guidelines for Python code Use functional programming patterns when appropriate Arra...
|
274 |
| 7437 | aws-ec2-setup | aj-geddes/useful-ai-prompts |
AWS EC2 Setup Overview Amazon EC2 provides resizable compute capacity in the cloud. Launch and configure virtual servers with complete control over networking, storage, and security settings. Scale automatically based on demand. When to Use Web application servers Application backends and APIs Batch processing and compute jobs Development and testing environments Containerized applications (ECS) Kubernetes clusters (EKS) Database servers VPN and proxy servers Implementation Examples 1. EC2 Ins...
|
274 |
| 7438 | frontend-state-management | aj-geddes/useful-ai-prompts |
Frontend State Management Overview Implement scalable state management solutions using modern patterns and libraries to handle application state, side effects, and data flow across components. When to Use Complex application state Multiple components sharing state Predictable state mutations Time-travel debugging needs Server state synchronization Implementation Examples 1. Redux with Redux Toolkit (React) // store/userSlice.ts import { createSlice, createAsyncThunk, PayloadAction } from '@red...
|
274 |
| 7439 | domain-iot | actionbook/rust-skills |
IoT Domain Layer 3: Domain Constraints Domain Constraints → Design Implications Domain Rule Design Constraint Rust Implication Unreliable network Offline-first Local buffering Power constraints Efficient code Sleep modes, minimal alloc Resource limits Small footprint no_std where needed Security Encrypted comms TLS, signed firmware Reliability Self-recovery Watchdog, error handling OTA updates Safe upgrades Rollback capability Critical Constraints Network Unreliability RULE: Network can fail at ...
|
274 |
| 7440 | do-work | bladnman/do-work |
Do-Work Skill A unified entry point for task capture and processing. Actions: do: Capture new tasks/requests → writes to do-work/ folder work: Process pending requests → executes the queue Routing Decision Step 1: Parse the Input Examine what follows "do work": Pattern Example Route Empty or bare invocation do work → Ask: "Start the work loop?" Action verbs only do work run, do work go, do work start → work Descriptive content do work add dark mode, do work [meeting notes] → do Step 2: Pres...
|
273 |
| 7441 | alicloud-security-content-moderation-green | cinience/alicloud-skills |
Category: service Content Moderation (Green) Use Alibaba Cloud OpenAPI (RPC) with official SDKs or OpenAPI Explorer to manage resources for Content Moderation. Workflow Confirm region, resource identifiers, and desired action. Discover API list and required parameters (see references). Call API with SDK or OpenAPI Explorer. Verify results with describe/list APIs. AccessKey priority (must follow) Environment variables: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID Regio...
|
273 |
| 7442 | alicloud-media-video-translation | cinience/alicloud-skills |
Category: service IMS Video Translation (OpenAPI) Submit video translation jobs via OpenAPI and poll results for subtitle-level, voice-level, and face-level processing. Prerequisites Prepare OSS input/output URIs (recommended to match API region). Configure AK: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID ( ALICLOUD_REGION_ID can be used as the default region; if unset, choose the most reasonable region and ask when unclear). Workflow Prepare source file and output OS...
|
273 |
| 7443 | alicloud-compute-fc-agentrun | cinience/alicloud-skills |
Category: service Function Compute AgentRun (OpenAPI) Use AgentRun OpenAPI (ROA) to manage runtimes, sandboxes, model services, memory, and credentials. Prerequisites AccessKey via RAM user (least privilege). Select the correct regional endpoint (see references/endpoints.md ). If unsure, choose the most reasonable region for the task or ask the user. Use OpenAPI Explorer or official SDK to avoid manual signing (ROA requires SignatureV1). Workflow Choose region endpoint ( agentrun.cn-<region>.ali...
|
273 |
| 7444 | solution-architect | 404kidwiz/claude-supercode-skills |
Solution Architect Purpose Provides expertise in designing enterprise-scale solutions that align technology with business objectives. Specializes in architecture frameworks, trade-off analysis, technology selection, and ensuring solutions meet functional and non-functional requirements. When to Use Designing end-to-end solution architecture for new initiatives Evaluating technology options and making selection decisions Creating architecture decision records (ADRs) Ensuring solutions meet enterp...
|
273 |
| 7445 | antigravity-design-expert | sickn33/antigravity-awesome-skills |
name: antigravity-design-expert description: Core UI/UX engineering skill for building highly interactive, spatial, weightless, and glassmorphism-based web interfaces using GSAP and 3D CSS. risk: safe source: community date_added: "2026-03-07" Antigravity UI & Motion Design Expert 🎯 Role Overview You are a world-class UI/UX Engineer specializing in "Antigravity Design." Your primary skill is building highly interactive, spatial, and weightless web interfaces. You excel at creating isometric grid...
|
273 |
| 7446 | encore-code-review | encoredev/skills |
Encore Code Review Instructions When reviewing Encore.ts code, check for these common issues: Critical Issues 1. Infrastructure Inside Functions // WRONG: Infrastructure declared inside function async function setup() { const db = new SQLDatabase("mydb", { migrations: "./migrations" }); const topic = new Topic<Event>("events", { deliveryGuarantee: "at-least-once" }); } // CORRECT: Package level declaration const db = new SQLDatabase("mydb", { migrations: "./migrations" }); const topic = n...
|
273 |
| 7447 | angular-best-practices-ngrx | alfredoperez/angular-best-practices |
Angular NgRx Best Practices NgRx state management rules for global state with actions, reducers, effects, and selectors. Use with the core angular-best-practices skill for comprehensive Angular coverage. Links Core Skill: angular-best-practices Browse All Skills GitHub Repository When to Apply Adding or modifying NgRx stores, reducers, or effects Writing selectors for state selection in components Managing collections with @ngrx/entity Rules Rule Impact Description Keep Reducers Pure HIGH No sid...
|
273 |
| 7448 | postgresql-expert-best-practices-code-review | wispbit-ai/skills |
PostgreSQL Expert Best Practices Simple, pragmatic, opinionated. Only what matters for writing production-grade PostgreSQL queries. When to Apply Reference these guidelines when: Writing database migrations or schema changes Creating or modifying PostgreSQL tables and columns Adding indexes, constraints, or foreign keys Reviewing database schema for performance issues Refactoring existing database structures Optimizing query performance or database design Rule Categories by Priority Priority Cat...
|
273 |
| 7449 | programmatic-seo | davila7/claude-code-templates |
Programmatic SEO You are an expert in programmatic SEO—building SEO-optimized pages at scale using templates and data. Your goal is to create pages that rank, provide value, and avoid thin content penalties. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task....
|
273 |
| 7450 | training-llms-megatron | davila7/claude-code-templates |
Megatron-Core - Large-Scale LLM Training Quick start Megatron-Core trains LLMs from 2B to 462B parameters with up to 47% Model FLOP Utilization on H100 GPUs through advanced parallelism strategies. Installation: Docker (recommended) docker run --gpus all -it --rm nvcr.io/nvidia/pytorch:25.04-py3 Or pip pip install megatron-core Simple distributed training: Train with 2 GPUs using data parallelism torchrun --nproc_per_node=2 examples/run_simple_mcore_train_loop.py Or LLaMA-3 8B traini...
|
273 |