███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 14751 | setup-timescaledb-hypertables | timescale/pg-aiguide |
TimescaleDB Complete Setup Instructions for insert-heavy data patterns where data is inserted but rarely changed: Time-series data (sensors, metrics, system monitoring) Event logs (user events, audit trails, application logs) Transaction records (orders, payments, financial transactions) Sequential data (records with auto-incrementing IDs and timestamps) Append-only datasets (immutable records, historical data) Step 1: Create Hypertable CREATE TABLE your_table_name ( timestamp TIMESTAMPTZ ...
|
50 |
| 14752 | content-repurposing | openclaudia/openclaudia-skills |
Content Repurposing Turn one piece of content into many formats via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Generate a quote card from a blog pull-quote infsh app run falai/flux-dev-lora --input '{ "prompt": "minimal quote card design, dark navy background, large white quotation marks, clean sans-serif typography space, modern professional design, social media post format", "widt...
|
50 |
| 14753 | fullstack-feature | mgd34msu/goodvibes-plugin |
Resources scripts/ validate-feature-workflow.sh references/ phase-templates.md Fullstack Feature Orchestration This skill defines the end-to-end workflow for implementing complete features that span multiple layers of the stack. It orchestrates specialized agents through 7 distinct phases, from requirements clarification through delivery. When to Use This Skill Use fullstack-feature when the user requests: A complete feature that requires database, API, and UI changes End-to-end implementation w...
|
50 |
| 14754 | yijing-fengshui | wolke/yijing-fengshui |
基於倪海廈老師的易經陽宅學說,分析家庭與辦公室的風水格局。 核心理念 重「神」不重「形」:本技能著重於「位置」與「格局」,而非風水擺件。 核心原則:名位相等、長幼有序 使用時機 當用戶詢問以下內容時啟用: - 家庭成員臥室方位分析 - 房屋格局風水診斷 - 廚房、廁所方位問題 - 辦公室風水、老闆座位 - 關鍵詞:「風水」「陽宅」「方位」「臥室」「辦公室」 技能結構 ``` yijing-fengshui/ ├── SKILL.md ← 本文件 ├── scripts/ │ └── fengshui_calc.py ← 卦象計算工具 └── references/ ├── 64gua.md ← 六十四卦詳解 ├── bagua-wanwu.md ← 八卦萬物類象 ├── yangzhai-theory.md← 陽宅風水理論 ├── room-fengshui.md ← 房間風水規則 └── office-fengshui.md← 辦公室風水 ``` 八卦方...
|
50 |
| 14755 | contract drafter | eddiebe147/claude-settings |
Contract Drafter The Contract Drafter skill automates the generation of legal contracts and agreements from templates. It handles variable substitution, conditional clauses, signature blocks, and document formatting. This skill is essential for creating NDAs, service agreements, employment contracts, and other legal documents consistently and efficiently. IMPORTANT DISCLAIMER: This skill generates documents from templates and does NOT provide legal advice. All generated contracts should be revie...
|
50 |
| 14756 | interactive-bot | terrylica/cc-skills |
Interactive Bot Gmail Commander Telegram bot — slash commands for email access + AI-powered free-text routing. Mandatory Preflight Step 1: Check Bot Script Exists ls -la " $HOME /.claude/plugins/marketplaces/cc-skills/plugins/gmail-commander/scripts/bot.ts" 2 > /dev/null || echo "SCRIPT_NOT_FOUND" Step 2: Verify Environment echo "TELEGRAM_BOT_TOKEN: ${TELEGRAM_BOT_TOKEN :+ SET} " echo "TELEGRAM_CHAT_ID: ${TELEGRAM_CHAT_ID :- NOT_SET} " echo "GMAIL_OP_UUID: ${GMAIL_OP_UUID :- NOT_SET} " echo "HAI...
|
50 |
| 14757 | configure-pre-commit | laurigates/claude-plugins |
/configure:pre-commit Check and configure pre-commit hooks against project standards. When to Use This Skill Use this skill when... Use another approach when... Setting up or validating pre-commit hooks Project doesn't use pre-commit framework (use git hooks directly) Checking compliance with project standards Just running hooks manually (use pre-commit run command) Installing project-type-specific hooks Hooks are already properly configured Migrating to pre-commit framework Simple project with ...
|
50 |
| 14758 | nextjs-expert | cin12211/orca-q |
Nextjs Expert next js When reviewing or writing code, apply these guidelines: Follow Next.js docs for Data Fetching, Rendering, and Routing when Next JS is used instead of React Remix. next js 14 general rules When reviewing or writing code, apply these guidelines: Use the App Router: All components should be created within the app directory, following Next.js 14 conventions. Implement Server Components by default: Only use Client Components when absolutely necessary for interactivity or client-...
|
50 |
| 14759 | doc-validator | vladm3105/aidoc-flow-framework |
doc-validator Cross-document validation for SDD framework compliance. For single-document validation, use the dedicated layer validators. Purpose Validates relationships and consistency ACROSS documents in the SDD framework. Core Functions: Identifies broken cross-references between documents Detects orphaned artifacts (documents with no upstream references) Validates bidirectional link consistency Checks cumulative tagging hierarchy across layers Detects duplicate IDs across documents Vali...
|
50 |
| 14760 | vercel-composition-patterns | kimny1143/claude-code-template |
React Composition Patterns Composition patterns for building flexible, maintainable React components. Avoid boolean prop proliferation by using compound components, lifting state, and composing internals. These patterns make codebases easier for both humans and AI agents to work with as they scale. When to Apply Reference these guidelines when: Refactoring components with many boolean props Building reusable component libraries Designing flexible component APIs Reviewing component architecture W...
|
50 |
| 14761 | affiliate marketing manager | eddiebe147/claude-settings |
Affiliate Marketing Manager Set up and manage affiliate marketing programs for growth and revenue When to Use This Skill Use this skill when you need to: Improve business operations and strategy Make data-driven business decisions Optimize processes and outcomes Not recommended for: Tasks requiring creative design work technical coding Quick Reference Action Command/Trigger Create affiliate marketing manager affiliate marketing Review and optimize review affiliate marketing manager Get best prac...
|
50 |
| 14762 | google-calendar | sanjay3290/postgres-skill |
Google Calendar Interact with Google Calendar for event management, scheduling, and availability checking. Installation Dependencies : pip install --user google-auth google-auth-oauthlib google-api-python-client keyring pyyaml Setup Verification After installation, verify the skill is properly configured: $SKILL_DIR /scripts/google-calendar.py check This will check: Python dependencies (google-auth, google-auth-oauthlib, google-api-python-client, keyring, pyyaml) Authentication configuration Con...
|
50 |
| 14763 | agent orchestrator | eddiebe147/claude-settings |
Agent Orchestrator The Agent Orchestrator skill coordinates multiple specialized AI agents, skills, and tools to accomplish complex tasks that benefit from distributed expertise. It acts as a conductor, delegating subtasks to appropriate agents, managing dependencies, integrating results, and ensuring coherent final outputs. This skill understands the capabilities of available agents (general-purpose, operations-manager, specialized skills), determines optimal task decomposition, manages inter-a...
|
50 |
| 14764 | raise-negotiation-prep | onewave-ai/claude-skills |
Raise Negotiation Prep Market salary research, accomplishment quantification, negotiation scripts, total compensation analysis, timing strategy. Instructions You are an expert salary negotiation coach. Prepare comprehensive negotiation strategies with market data, scripts, and confidence-building frameworks. Output Format Raise Negotiation Prep Output Generated: {timestamp} --- Results [Your formatted output here] --- Recommendations [Actionable next steps] Best Practices Be Spec...
|
50 |
| 14765 | configure-ux-testing | laurigates/claude-plugins |
/configure:ux-testing Check and configure UX testing infrastructure with Playwright as the primary tool for E2E, accessibility, and visual regression testing. When to Use This Skill Use this skill when... Use another approach when... Setting up Playwright E2E testing infrastructure for a project Running existing Playwright tests (use bun test:e2e or test-runner agent) Adding accessibility testing with axe-core to a project Performing manual accessibility audits on a live site Configuring visual ...
|
50 |
| 14766 | automation architect | eddiebe147/claude-settings |
Automation Architect Design workflow automations using Zapier, Make, n8n, and other automation tools When to Use This Skill Use this skill when you need to: Automate workflows and processes Integrate tools and systems Optimize technical operations Not recommended for: Tasks requiring creative content manual processes Quick Reference Action Command/Trigger Create automation architect workflow automation Review and optimize review automation architect Get best practices automation architect best p...
|
50 |
| 14767 | schema-markup | openclaudia/openclaudia-skills |
Schema Markup You are an expert in structured data and schema markup. Your goal is to implement schema.org markup that helps search engines understand content and enables rich results in search. 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. Before imple...
|
50 |
| 14768 | chinese-copyright-application | okooo5km/skills4u |
中国软件著作权申请材料生成 核心原则 所有文档直接生成 .tex 文件,用 XeLaTeX 编译为 PDF。 快速开始 环境检查与安装引导 收集著作权人信息与关键参数 分析项目结构和代码 生成四份 LaTeX 文档 + 编译脚本 生成截图清单 运行一致性校验 工作流程 第零步:环境检查 在开始生成前,主动询问用户是否已安装 XeLaTeX 环境。执行 xelatex --version 检测。 如已安装 :继续下一步。 如未安装 :告知用户需要安装 LaTeX 环境才能将 .tex 编译为 PDF,询问是否立即安装。用户同意后按以下命令执行: macOS: brew install --cask basictex && sudo tlmgr update --self && sudo tlmgr install ctex xecjk fancyhdr lastpage fancyvrb tabularx enumitem float xcolor longtable collection-fontsrecommended Linux: sudo apt install texlive-...
|
50 |
| 14769 | claude-code-usage | 0xlayerghost/solidity-agent-kit |
Claude Code Best Practices Language Rule Always respond in the same language the user is using. If the user asks in Chinese, respond in Chinese. If in English, respond in English. Context Management Rules Rule Why One window = one task Mixing tasks pollutes context and degrades output quality Use /clear over /compact Clean start is more reliable than compressed context /clear after complex tasks Prevents old context from interfering with new work Copy key info to new windows Don't rely on contex...
|
50 |
| 14770 | data-storyteller | dkyazzentwatwa/chatgpt-skills |
Data Storyteller Automatically transform raw data into compelling, insight-rich reports. Upload any CSV or Excel file and get back a complete analysis with visualizations, statistical summaries, and narrative explanations - all without writing code. Core Workflow 1. Load and Analyze Data from scripts . data_storyteller import DataStoryteller Initialize with your data file storyteller = DataStoryteller ( "your_data.csv" ) Or from a pandas DataFrame import pandas as pd df = pd . read_csv ( "your...
|
50 |
| 14771 | nuqs-setup | andrelandgraf/fullstackrecipes |
URL State with nuqs To set up URL State with nuqs, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/nuqs-setup If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/nuqs-setup
|
50 |
| 14772 | database-schema-designer | onewave-ai/claude-skills |
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...
|
50 |
| 14773 | analyze-stock | jssfy/k-skills |
Analyze Stock — 一键股票综合分析 输入公司名称或股票代码,自动并行采集五个维度的数据,综合分析后输出标准报告。 When to Use 当用户请求以下操作时触发: "分析腾讯" / "分析贵州茅台" / "分析 600519" "analyze NVDA" / "analyze Tesla" "XX股票怎么样" / "XX最近为什么涨/跌" "帮我看看XX" / "XX值得买吗" Phase 0: 解析输入 根据用户输入,识别以下信息: 先确定此 SKILL.md 文件所在目录为 SKILL_DIR ,如需调用脚本,统一使用: SKILL_DIR = "<此 SKILL.md 文件所在目录的绝对路径>" 公司名称与股票代码 如果用户给了代码则直接使用 如果用户给了公司名,通过 WebSearch 查询对应代码 A股代码格式: 6位数字 (600519, 000858) 美股代码格式: 英文字母 (NVDA, AAPL, TSLA) 识别市场类型 6位纯数字 → A股 4-5位数字 或 含 .HK 后缀 → 港股 英文字母 → 美股 公司名含中文且为中国公司 → 先搜索确...
|
50 |
| 14774 | steve | aaarnv/claude-skills |
Steve — wavybaby + GSD + Ralph Autonomous Execution Combines three systems: wavybaby : Self-equipping toolchain (CoVe verification, skill discovery via skills.sh, MCP server setup, project config) GSD : Structured project management ( .planning/ , roadmaps, phases, plans, discovery, verification, state tracking) Ralph : Autonomous while-true loop (circuit breakers, dual-condition exit, session persistence, rate limiting) The result: describe what you want. Steve equips itself with the best tools...
|
50 |
| 14775 | revenue-operations | dengineproblem/agents-monorepo |
Revenue Operations Pipeline analysis, forecast accuracy tracking, and GTM efficiency measurement for SaaS revenue teams. Table of Contents Quick Start Tools Overview Pipeline Analyzer Forecast Accuracy Tracker GTM Efficiency Calculator Revenue Operations Workflows Weekly Pipeline Review Forecast Accuracy Review GTM Efficiency Audit Quarterly Business Review Reference Documentation Templates Quick Start Analyze pipeline health and coverage python scripts/pipeline_analyzer.py --input assets/sampl...
|
50 |
| 14776 | java-developer | yennanliu/cs_basics |
Use this Skill when: - Writing new Java solutions for LeetCode problems - Implementing data structures or algorithms in Java - Converting solutions from other languages to Java - Setting up Java test cases with JUnit Instructions 1. Code Structure Follow the project's Java conventions: - Package structure: `AlgorithmJava`, `DataStructure`, `LeetCodeJava` - Use Java 8 compatibility features - Include proper imports and class declarations - Follow camelCase naming conventions For Lee...
|
50 |
| 14777 | first-principles-decomposer | hanzoskill/first-principles-decomposer |
First Principles Decomposer When To Use Designing new products or features Feeling stuck on a complex problem Existing solutions seem overcomplicated Need to challenge assumptions Starting any new project or initiative The Process Phase 1: Identify Assumptions Ask: "What am I assuming to be true that might not be?" List every assumption embedded in the current approach. Phase 2: Break to Atoms For each assumption, ask: "What is the most fundamental truth here?" Keep asking "why?" until you hit b...
|
50 |
| 14778 | gitnexus-pr-review | abhigyanpatwari/gitnexus |
PR Review with GitNexus When to Use "Review this PR" "What does PR 42 change?" "Is this safe to merge?" "What's the blast radius of this PR?" "Are there missing tests for this PR?" Reviewing someone else's code changes before merge Workflow 1. gh pr diff <number> → Get the raw diff 2. gitnexus_detect_changes({scope: "compare", base_ref: "main"}) → Map diff to affected flows 3. For each changed symbol: gitnexus_impact({target: "<symbol>", direction: "upstream"}...
|
50 |
| 14779 | configure-load-tests | laurigates/claude-plugins |
/configure:load-tests Check and configure load and performance testing infrastructure for stress testing, benchmarking, and capacity planning. When to Use This Skill Use this skill when... Use another approach when... Setting up load testing infrastructure from scratch (k6, Artillery, Locust) Running existing load tests — use k6 run or artillery run directly Auditing current load testing coverage (smoke, stress, spike, soak) Writing unit or integration tests — use /configure:tests Adding CI/CD p...
|
50 |
| 14780 | swiftui-ui-patterns | dagba/ios-mcp |
SwiftUI UI Patterns Quick start Choose a track based on your goal: Existing project Identify the feature or screen and the primary interaction model (list, detail, editor, settings, tabbed). Find a nearby example in the repo with rg "TabView\(" or similar, then read the closest SwiftUI view. Apply local conventions: prefer SwiftUI-native state, keep state local when possible, and use environment injection for shared dependencies. Choose the relevant component reference from references/componen...
|
50 |
| 14781 | analyze-with-file | catlog22/claude-code-workflow |
Codex Analyze-With-File Prompt Overview Interactive collaborative analysis workflow with documented discussion process . Records understanding evolution, facilitates multi-round Q&A, and uses inline search tools for deep exploration. Core workflow : Topic → Explore → Discuss → Document → Refine → Conclude → (Optional) Quick Execute Key features : Documented discussion timeline : Captures understanding evolution across all phases Decision recording at every critical point : Mandatory recording of...
|
50 |
| 14782 | documentation-template | owl-listener/designer-skills |
Documentation Template You are an expert in creating consistent documentation structures for design systems. What You Do You generate templates that standardize how design system artifacts are documented. Template Types Component Docs Title, status, when to use, example, anatomy, variants, props, states, accessibility, content guidelines, tokens, related, changelog. Pattern Docs Problem statement, context, solution, behavior, examples (good/bad), accessibility, related patterns. Foundation Docs ...
|
50 |
| 14783 | azure-microsoft-playwright-testing-ts | sickn33/antigravity-awesome-skills |
Azure Playwright Workspaces SDK for TypeScript Run Playwright tests at scale with cloud-hosted browsers and integrated Azure portal reporting. Migration Notice: @azure/microsoft-playwright-testing is retired on March 8, 2026 . Use @azure/playwright instead. See migration guide . Installation Recommended: Auto-generates config npm init @azure/playwright@latest Manual installation npm install @azure/playwright --save-dev npm install @playwright/test@^1.47 --save-dev npm install @azure/identity -...
|
50 |
| 14784 | convex-helpers-patterns | fluid-tools/claude-skills |
Convex Helpers Library Patterns Overview The convex-helpers library provides battle-tested patterns for common Convex development needs. This skill covers Triggers (automatic side effects), Row-Level Security, Relationship helpers, Custom Functions, Rate Limiting, and Workpool for concurrency control. Installation npm install convex-helpers @convex-dev/workpool TypeScript: NEVER Use any Type CRITICAL RULE: This codebase has @typescript-eslint/no-explicit-any enabled. Using any will cause bui...
|
50 |
| 14785 | agent-browser | teachingai/full-stack-skills |
Browser Automation with agent-browser The CLI uses Chrome/Chromium via CDP directly. Install via npm i -g agent-browser , brew install agent-browser , or cargo install agent-browser . Run agent-browser install to download Chrome. Core Workflow Every browser automation follows this pattern: Navigate : agent-browser open <url> Snapshot : agent-browser snapshot -i (get element refs like @e1 , @e2 ) Interact : Use refs to click, fill, select Re-snapshot : After navigation or DOM changes, get fresh r...
|
50 |
| 14786 | local-descriptions | brave/brave-search-skills |
Local Descriptions (Search API) Requires API Key : Get one at https://api.search.brave.com Plan : Included in the Search plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe Two-step flow : This endpoint requires POI IDs from a prior web search. Call web-search with result_filter=locations to get POI IDs from locations.results[].id Pass those IDs to this endpoint to get AI-generated descriptions Quick Start (cURL) Get POI Description curl -s "https://api.search.brave.com/...
|
50 |
| 14787 | flow-nexus-platform | proffesor-for-testing/agentic-qe |
Flow Nexus Platform Management Comprehensive platform management for Flow Nexus - covering authentication, sandbox execution, app deployment, credit management, and coding challenges. Table of Contents Authentication & User Management Sandbox Management App Store & Deployment Payments & Credits Challenges & Achievements Storage & Real-time System Utilities Authentication & User Management Registration & Login Register New Account mcp__flow - nexus__user_register ( { email : "user@example.com" , ...
|
50 |
| 14788 | health-agentic-audit | laurigates/claude-plugins |
/health:agentic-audit Scan all plugin skills, commands, and agents for CLI output optimization opportunities. Checks for missing Agentic Optimizations tables, bare CLI commands without compact flags, and stale review dates. Standards reference: .claude/rules/agentic-optimization.md and .claude/rules/skill-quality.md . When to Use This Skill Use this skill when... Use another approach when... Auditing skills for agentic optimization compliance General plugin audit (use /health:audit ) Finding mis...
|
50 |
| 14789 | financial-document-management | qodex-ai/ai-agent-skills |
Invoice Organizer This skill transforms chaotic folders of invoices, receipts, and financial documents into a clean, tax-ready filing system without manual effort. When to Use This Skill Preparing for tax season and need organized records Managing business expenses across multiple vendors Organizing receipts from a messy folder or email downloads Setting up automated invoice filing for ongoing bookkeeping Archiving financial records by year or category Reconciling expenses for reimbursement Pr...
|
50 |
| 14790 | better-auth-emails | andrelandgraf/fullstackrecipes |
Better Auth Emails To set up Better Auth Emails, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/better-auth-emails If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/better-auth-emails
|
50 |
| 14791 | pattern-library | owl-listener/designer-skills |
Pattern Library You are an expert in documenting reusable design patterns that solve recurring UX problems. What You Do You create pattern library entries capturing design knowledge in a reusable format. Pattern Entry Structure Problem Statement — What need does this address? What contexts? Solution — The pattern, key principles, visual/interaction description Anatomy — Components, layout, required vs optional elements Variants — Context-specific implementations, responsive adaptations Behavior ...
|
50 |
| 14792 | feature-flags-setup | andrelandgraf/fullstackrecipes |
Feature Flags with Flags SDK To set up Feature Flags with Flags SDK, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/feature-flags-setup If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/feature-flags-setup
|
50 |
| 14793 | cryptography | melodic-software/claude-code-plugins |
Cryptography Comprehensive guidance for implementing cryptographic operations securely, covering encryption algorithms, password hashing, TLS, and key management. When to Use This Skill Use this skill when: Choosing encryption algorithms Implementing password hashing Configuring TLS/SSL Managing cryptographic keys Implementing digital signatures Generating random values Reviewing cryptographic implementations Considering post-quantum readiness Algorithm Quick Reference Encryption Algorithms ...
|
50 |
| 14794 | gtm-implementation | aimonk2025/google-tag-manager-automation |
GTM Implementation - DataLayer + GTM API Implement complete GTM tracking by adding dataLayer events to your code AND creating GTM variables, triggers, and tags via API. Core Mission Transform analytics-ready DOM elements into fully tracked events with: Code Implementation : Add dataLayer.push() calls to React/Next.js/Vue components GTM Configuration : Create variables, triggers, and tags via GTM API Workflow Phase 0: Load Business Context (if available) Check for gtm-context.md in the project ro...
|
50 |
| 14795 | design-review-process | owl-listener/designer-skills |
Design Review Process You are an expert in establishing design review processes that maintain quality without slowing teams down. What You Do You create review processes with clear gates, criteria, and workflows that ensure design quality. Review Gates Gate 1: Concept Review Problem clearly defined User needs supported by research Multiple concepts explored Strategic alignment confirmed Stakeholder input gathered Gate 2: Design Review Visual design meets brand standards Interaction patterns are ...
|
50 |
| 14796 | atf-testing | groeimetai/snow-flow |
Automated Test Framework (ATF) for ServiceNow ATF provides automated testing capabilities for ServiceNow applications, enabling regression testing and continuous integration. ATF Architecture Test Hierarchy Test Suite: Incident Management Tests ├── Test: Create Incident │ ├── Step 1: Impersonate User │ ├── Step 2: Open New Record │ ├── Step 3: Set Field Values │ ├── Step 4: Submit Form │ └── Step 5: Assert Values ├── Test: Assign Incident │ └── Steps... └── Test: Resolve Incident ...
|
50 |
| 14797 | photo-collage-maker | dkyazzentwatwa/chatgpt-skills |
Create beautiful photo collages from multiple images. Features - Grid Layouts: 2x2, 3x3, custom grids - Custom Arrangements: Free-form positioning - Borders: Add spacing and frames - Backgrounds: Solid colors, gradients, images - Image Fitting: Fit, fill, stretch options - Text Labels: Add captions to images - Templates: Pre-built collage templates Quick Start ``` from collage_maker import CollageMaker collage = CollageMaker() Simple 2x2 grid collage.grid(2, 2, gap=10) collage.add...
|
50 |
| 14798 | better-auth-profile | andrelandgraf/fullstackrecipes |
Better Auth Profile & Account To set up Better Auth Profile & Account, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/better-auth-profile If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/better-auth-profile
|
50 |
| 14799 | finops-overview | laurigates/claude-plugins |
/finops:overview Display a quick FinOps summary including org-level billing (if admin) and current repository workflow/cache statistics. Context Current repo: ! gh repo view --json nameWithOwner --jq '.nameWithOwner' Repo org/owner: ! gh repo view --json owner --jq '.owner.login' Parameters Parameter Description Default org GitHub organization name Current repo's owner Execution bash " ${SKILL_DIR} /scripts/billing-summary.sh" $ARGS Output Format === Org Billing: orgname === Minutes: 1234/2000 i...
|
50 |
| 14800 | game-strategy-simulator | onewave-ai/claude-skills |
Game Strategy Simulator What-if scenario analyzer for sports. Play-calling recommendations, clock management, substitution patterns, risk/reward calculations. Instructions You are an expert sports strategist and game theory analyst. Simulate game scenarios with: what-if analysis, play-calling recommendations, clock management decisions, substitution patterns, risk/reward calculations, and probability-based outcomes. Output Format Game Strategy Simulator Output Generated: {timestamp} --- ...
|
50 |