███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 14901 | database-layer | mgd34msu/goodvibes-plugin |
Resources scripts/ database-checklist.sh references/ orm-comparison.md Database Layer Implementation This skill guides you through implementing database layers in applications, from initial schema design to query optimization. It leverages GoodVibes precision tools and project analysis tools for type-safe, production-ready database implementations. When to Use This Skill Use this skill when you need to: Set up a new database connection and ORM Design and implement database schemas Create and run...
|
50 |
| 14902 | design-patterns | florianbruniaux/claude-code-ultimate-guide |
Skill 27: BK-CI 项目设计模式实践指南 概述 本指南总结了 BK-CI 项目中广泛使用的设计模式及其实际应用场景,帮助开发者理解项目架构并遵循统一的设计模式规范。 1. 工厂模式(Factory Pattern) 1.1 简单工厂(Simple Factory) 应用场景:创建特定类型的对象,通过类型参数决定实例化哪个类。 实际案例: TaskFactory - 任务工厂 位置:worker-common/src/main/kotlin/com/tencent/devops/worker/common/task/TaskFactory.kt 实现方式: object TaskFactory { private val taskMap = ConcurrentHashMap<String, KClass<out ITask>>() fun init() { // 注册内置任务 register(LinuxScriptElement.classType, LinuxScriptTask::class) ...
|
50 |
| 14903 | configure-linting | laurigates/claude-plugins |
/configure:linting Check and configure linting tools against modern best practices. When to Use This Skill Use this skill when... Use another approach when... Setting up modern linting (Biome, Ruff, Clippy) Just running linter (use /lint:check skill) Migrating from ESLint/Prettier to Biome Linters already properly configured Validating linter configuration Fixing specific lint errors (run linter and fix) Ensuring language-specific best practices Simple script with no linting needs Configuring pr...
|
50 |
| 14904 | agent-prompt | getsentry/warden |
You are a prompt engineering specialist helping users write effective agent prompts and Warden skills. Reference Documents The following documents contain detailed guidance. Read the relevant ones based on the user's question: Document Use When references/core-principles.md Writing any prompt - foundational rules references/skill-structure.md Creating or reviewing skill files references/system-prompts.md Understanding Warden's prompt architecture references/output-formats.md Designing structured...
|
50 |
| 14905 | review-doc-consistency | heyvhuang/ship-faster |
Documentation Consistency Reviewer Goal Systematically identify all "outdated" or "inconsistent with implementation" descriptions in README + docs/, outputting ≥30 issue items. Core Principles Code is truth - When documentation conflicts with code, source code/config/contract files are authoritative Evidence before conclusions - Each issue must cite code/config location as evidence Contracts first - OpenAPI/proto/schema/TS types are treated as SSOT (Single Source of Truth) Security default tight...
|
50 |
| 14906 | icon-system | owl-listener/designer-skills |
Icon System You are an expert in designing and maintaining comprehensive icon systems. What You Do You create icon system specs ensuring visual consistency and scalable management. Foundations Grid : Base size (24x24px), keylines, stroke width, corner radius Sizes : XS (12-16px), S (20px), M (24px), L (32px), XL (48px+) Style : Stroke, filled, duotone — when to use each Naming icon-[category]-[name]-[variant] Categories: action, navigation, content, communication, social, status, file, device De...
|
50 |
| 14907 | risk-management-specialist | borghei/claude-skills |
Risk Management Specialist ISO 14971:2019 risk management implementation throughout the medical device lifecycle. Table of Contents Risk Management Planning Workflow Risk Analysis Workflow Risk Evaluation Workflow Risk Control Workflow Post-Production Risk Management Risk Assessment Templates Decision Frameworks Tools and References Risk Management Planning Workflow Establish risk management process per ISO 14971. Workflow: Create Risk Management Plan Define scope of risk management activities: ...
|
50 |
| 14908 | data-visualization | owl-listener/designer-skills |
Data Visualization Skill Chart selection guidance, Python visualization code patterns, design principles, and accessibility considerations for creating effective data visualizations. Chart Selection Guide Choose by Data Relationship What You're Showing Best Chart Alternatives Trend over time Line chart Area chart (if showing cumulative or composition) Comparison across categories Vertical bar chart Horizontal bar (many categories), lollipop chart Ranking Horizontal bar chart Dot plot, slope char...
|
50 |
| 14909 | pattern-debug | commontoolsinc/labs |
Debug Pattern Use Skill("ct") for ct CLI documentation if debugging deployment or piece issues. Read First docs/development/debugging/workflow.md - 5-step debugging process docs/development/debugging/README.md - Error reference matrix Process Check TypeScript errors: deno task ct check pattern.tsx --no-run Match error to documentation: Read the error message carefully Check docs/development/debugging/README.md for matching errors Check gotchas: docs/development/debugging/gotchas/handler-inside-p...
|
50 |
| 14910 | ha-validate | laurigates/claude-plugins |
/ha:validate Validate Home Assistant configuration files for YAML syntax errors and common issues. Context Config path: {{ path or '.' }} YAML files: ! find {{ path or '.' }} -name "*.yaml" -type f Validation Steps 1. YAML Syntax Validation Validate all YAML files for proper syntax: find { { path or '.' } } -name "*.yaml" -type f -exec python3 -c " import yaml import sys try: with open('{}', 'r') as f: yaml.safe_load(f) print('OK: {}') except yaml.YAMLError as e: print('ERROR: {}') print(str(e)[...
|
50 |
| 14911 | slot-deploy | cartridge-gg/docs |
Slot Deploy Manage the lifecycle of Slot deployments — Katana (execution layer) and Torii (indexer). Prerequisites Install the Slot CLI: curl -L https://slot.cartridge.sh | bash Authenticate: slot auth login For CI/scripts, generate a token and set the SLOT_AUTH env var: slot auth token Creating Deployments Katana slot deployments create < Project Name > katana Torii Torii requires a TOML configuration file: slot deployments create < Project Name > torii --config < path/to/torii.toml > Minimal t...
|
50 |
| 14912 | image-metadata-tool | dkyazzentwatwa/chatgpt-skills |
Image Metadata Tool Extract, analyze, and manage EXIF metadata from images with GPS mapping and privacy features. Features EXIF Extraction: Camera, lens, settings, timestamps GPS Data: Extract coordinates, map locations Metadata Removal: Strip EXIF for privacy Batch Processing: Process multiple images Map Generation: Create location maps from photos Export: JSON, CSV, HTML reports Quick Start from image_metadata import ImageMetadata meta = ImageMetadata() meta.load("photo.jpg") Get all meta...
|
50 |
| 14913 | code-review | groeimetai/snow-flow |
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...
|
50 |
| 14914 | modular-architecture | melodic-software/claude-code-plugins |
Modular Architecture When to Use This Skill Use this skill when you need to: Structure a modular monolith application Define boundaries between modules (bounded contexts) Set up inter-module communication patterns Implement ports and adapters (hexagonal) architecture Isolate database contexts between modules Configure MediatR for internal domain events Keywords: modular monolith, modules, bounded contexts, ports and adapters, hexagonal architecture, module communication, data isolation, separ...
|
50 |
| 14915 | hooks | kimny1143/claude-code-template |
Hook Development Rules When working with files in .claude/hooks/: Pattern Shell wrapper (.sh) → TypeScript (.ts) via npx tsx Shell Wrapper Template !/bin/bash set -e cd "$CLAUDE_PROJECT_DIR/.claude/hooks" cat | npx tsx <handler>.ts TypeScript Handler Pattern interface HookInput { // Event-specific fields } async function main() { const input: HookInput = JSON.parse(await readStdin()); // Process input const output = { result: 'continue', // or 'block' message: 'Optional ...
|
50 |
| 14916 | mvp-case-builder | onewave-ai/claude-skills |
Mvp Case Builder Construct statistical arguments for MVP/awards. Narrative framing, comparison to past winners, advanced metrics, counter-arguments. Instructions You are an expert sports analyst and award voting strategist. Build comprehensive MVP cases with: statistical arguments, narrative framing, historical comparisons, advanced metrics explanations, counter-arguments addressed, and persuasive presentation. Output Format Mvp Case Builder Output Generated: {timestamp} --- Results [Y...
|
50 |
| 14917 | ai integration specialist | eddiebe147/claude-settings |
AI Integration Specialist Integrate AI tools and APIs into business workflows and applications 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 ai integration specialist ai integration Review and optimize review ai integration specialist Get best practices ai integration specialist be...
|
50 |
| 14918 | mcp-builder-ms | sickn33/antigravity-awesome-skills |
MCP Server Development Guide When to Use Use this skill when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK). Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Microsoft MCP Ecosystem Microsoft provides extensive MCP infrastructure for Azure and...
|
50 |
| 14919 | humanize | richtabor/agent-skills |
Humanize AI Text Transform AI-generated content into natural, human-like writing using the HumanizerAI API. How It Works When the user invokes /humanize , you should: Parse $ARGUMENTS for text and optional --intensity flag Call the HumanizerAI API to humanize the text Present the humanized text with before/after scores Show remaining credits Parsing Arguments The user may provide: Just text: /humanize [their text] With intensity: /humanize --intensity aggressive [their text] Default intensity is...
|
50 |
| 14920 | component-docs | sgcarstrends/sgcarstrends |
Component Documentation Skill This skill helps you create and maintain component documentation in packages/ui/. When to Use This Skill Writing documentation for new components Creating usage examples and code snippets Documenting component props and variants Setting up Storybook stories Generating API documentation Maintaining component README files Documentation Structure packages/ui/ ├── src/ │ ├── components/ │ │ ├── button.tsx Component implementation │ │ ├── button.sto...
|
50 |
| 14921 | quiz-generator | dmccreary/claude-skills |
Quiz Generator Quick Start 1. Generate 50 questions for chapter Focus on conceptual (75%+ Apply level), not recall 2. Redistribute answers evenly python scripts/redistribute_answers_v2.py quiz.md A 3. Validate option lengths (±3 words per question) Manually count words for ALL 50 questions Persona You generate college-level conceptual quizzes that test understanding, not memorization. Your goal is 50 comprehensive questions covering all chapter concepts with immediate feedback per answer. F...
|
50 |
| 14922 | gitlab stack secrets manager | rknall/claude-skills |
This skill manages secrets for GitLab stack projects, ensuring secrets are stored securely, never exposed in configuration files, and properly integrated with Docker secrets. When to Use This Skill Activate this skill when the user requests: - Create or manage Docker secrets - Migrate environment variables to Docker secrets - Validate secret configuration and permissions - Audit secret usage and detect leaks - Ensure secrets aren't in .env or docker-compose.yml - Check if secrets are ex...
|
50 |
| 14923 | uniappx-uview-pro | teachingai/full-stack-skills |
Use this skill whenever the user wants to: - Integrate uView Pro into UniAppX projects - Configure UniAppX projects to work with uView Pro (pages.json, manifest.json, easycom) - Handle platform-specific behaviors when using uView Pro in UniAppX (H5, mini-program, App, nvue) - Use UniAppX features (navigation, APIs, lifecycle) with uView Pro components - Build cross-platform UniAppX applications with uView Pro components - Configure easycom for automatic uView Pro component import in UniApp...
|
50 |
| 14924 | precision-mastery | mgd34msu/goodvibes-plugin |
Resources scripts/ validate-precision-usage.sh references/ tool-reference.md Precision Mastery The precision engine provides token-efficient alternatives to native tools (Read, Edit, Write, Grep, Glob, WebFetch). When used correctly, you save 75-95% of tokens on file operations. This skill teaches optimal usage. Verbosity Cheat Sheet Use the lowest verbosity that meets your needs. Verbosity directly impacts token consumption. Operation Default Recommended Why precision_write standard count_only ...
|
50 |
| 14925 | tech-stack-evaluator | borghei/claude-skills |
Technology Stack Evaluator A comprehensive evaluation framework for comparing technologies, frameworks, cloud providers, and complete technology stacks. Provides data-driven recommendations with TCO analysis, security assessment, ecosystem health scoring, and migration path analysis. Capabilities This skill provides eight comprehensive evaluation capabilities: Technology Comparison: Head-to-head comparisons of frameworks, languages, and tools (React vs Vue, PostgreSQL vs MongoDB, Node.js vs ...
|
50 |
| 14926 | mcp-builder | project-n-e-k-o/n.e.k.o |
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint coverag...
|
50 |
| 14927 | data-validation | cosmix/loom |
Data Validation Skill Pre-delivery QA checklist, common data analysis pitfalls, result sanity checking, and documentation standards for reproducibility. Pre-Delivery QA Checklist Run through this checklist before sharing any analysis with stakeholders. Data Quality Checks Source verification : Confirmed which tables/data sources were used. Are they the right ones for this question? Freshness : Data is current enough for the analysis. Noted the "as of" date. Completeness : No unexpected gaps in t...
|
50 |
| 14928 | nanobanana-skill | feiskyer/codex-settings |
Nanobanana Image Generation Skill Generate or edit images using Google Gemini API through the nanobanana tool. Requirements GEMINI_API_KEY : Must be configured in ~/.nanobanana.env or export GEMINI_API_KEY=<your-api-key> Python3 with dependent packages installed : google-genai, Pillow, python-dotenv. They could be installed via python3 -m pip install -r ${CLAUDE_PLUGIN_ROOT}/skills/nanobanana-skill/requirements.txt if not installed yet. Executable : ${CLAUDE_PLUGIN_ROOT}/skills/nanobanana-skill/...
|
50 |
| 14929 | competitor-analysis | openclaudia/openclaudia-skills |
Competitor Analysis 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 · aler...
|
50 |
| 14930 | hwp | pitzcarraldo/skills |
This skill reads Korean Hangul Word Processor files (.hwp, .hwpx) and prepares to respond based on the content using [pyhwp2md](https://github.com/pitzcarraldo/pyhwp2md). Supported Formats | HWP | `.hwp` | Binary format (HWP 5.0+) | HWPX | `.hwpx` | XML-based format (Hangul 2014+) Workflow CRITICAL: NEVER run `uvx`, `pipx`, or `pip` commands directly. ALWAYS use the complete bash script below which automatically detects and uses the correct tool. 1. Verify File Exists ``` ls -la ...
|
50 |
| 14931 | api-documentation-writer | eddiebe147/claude-settings |
API Documentation Writer Create comprehensive, developer-friendly API documentation. Instructions When a user needs API documentation: Gather API Information : API type (REST, GraphQL, WebSocket, gRPC)? Authentication method (API key, OAuth, JWT)? Base URL and versioning strategy? Available endpoints and their purposes? Request/response formats? Rate limiting or usage restrictions? Generate Complete Documentation Structure : Overview Section : What the API does (1-2 sentences) Key capabilities G...
|
50 |
| 14932 | project-discovery | laurigates/claude-plugins |
Systematic project orientation to understand codebase state before making changes. Prevents working on incorrect assumptions by establishing clear context about git state, project structure, and development tooling. Core Expertise Automatic Activation Detection: - Detects uncertainty in Claude's reasoning or responses - Activates on manual user requests for orientation - Focuses on git repositories only Discovery Capabilities: - Git state analysis (branch, changes, remote sync, commit hi...
|
50 |
| 14933 | azure-ai-document-intelligence-ts | sickn33/antigravity-awesome-skills |
Azure Document Intelligence REST SDK for TypeScript Extract text, tables, and structured data from documents using prebuilt and custom models. Installation npm install @azure-rest/ai-document-intelligence @azure/identity Environment Variables DOCUMENT_INTELLIGENCE_ENDPOINT = https:// < resource > .cognitiveservices.azure.com DOCUMENT_INTELLIGENCE_API_KEY = < api-key > Authentication Important : This is a REST client. DocumentIntelligence is a function , not a class. DefaultAzureCredential import...
|
50 |
| 14934 | using-superpowers | guanyang/antigravity-skills |
IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT. This is not negotiable. This is not optional. You cannot rationalize your way out of this. Instruction Priority Superpowers skills override default system prompt behavior, but user instructions always take precedence : User's explicit instructions (CLAUDE.md, GEMINI.md, AGENTS.md, direct requests) — highest priority Superpowers skills — override default system behavior where they conflict Default system prompt — lowest p...
|
50 |
| 14935 | docs-review | cloudflare/cloudflare-docs |
Documentation Review Skill @./../_shared/metabase-style-guide.md Review mode detection IMPORTANT: Before starting the review, determine which mode to use: PR review mode: If the mcp__github__create_pending_pull_request_review tool is available, you are reviewing a GitHub PR Use the pending review workflow to post all issues as one cohesive review Follow the workflow steps in "PR review mode format" below Local review mode: If the MCP tool is NOT available, output issues in the conversation...
|
50 |
| 14936 | freshsales | membranedev/application-skills |
Freshsales Freshsales is a CRM and sales automation platform that helps businesses manage leads, contacts, and deals. Sales teams use it to streamline their sales processes, track customer interactions, and close more deals efficiently. Official docs: https://developers.freshsales.io/ Freshsales Overview Account Contact Deal Sales Sequence User Email Product Sales Activity Appointment Task Note Call SMS Territory Email Template Custom Field Role Team Integration Email Configuration Phone Number ...
|
50 |
| 14937 | accessibility-audit | owl-listener/designer-skills |
Accessibility Audit Comprehensive WCAG 2.1 accessibility audit for Webflow pages with detailed issue detection and actionable fixes. Important Note ALWAYS use Webflow MCP tools for all operations: Use Webflow MCP's webflow_guide_tool to get best practices before starting Use Webflow MCP's data_sites_tool with action list_sites to identify available sites Use Webflow MCP's data_sites_tool with action get_site to retrieve site details Use Webflow MCP's data_pages_tool with action list_pages to...
|
50 |
| 14938 | spring-ai-alibaba | teachingai/full-stack-skills |
Spring AI Alibaba 提供了与阿里云 DashScope(通义千问)的集成,支持使用阿里云的大语言模型服务。 核心功能 1. 项目创建 依赖: ``` <dependency> <groupId>com.alibaba.cloud.ai</groupId> <artifactId>spring-ai-starter-model-aliyun-dashscope</artifactId> </dependency> ``` 或使用 Gradle: ``` dependencies { implementation 'com.alibaba.cloud.ai:spring-ai-starter-model-aliyun-dashscope' } ``` 2. 配置 application.yml: ``` spring: ai: alibaba: dashscope: api-key: ${DASHSCOPE_API_KEY} chat: optio...
|
50 |
| 14939 | reddit-insights | brianrwagner/ai-marketing-skills |
Reddit Insights MCP Semantic search across millions of Reddit posts. Unlike keyword search, this understands intent and meaning. Mode Detect from context or ask: "Quick pulse, full research, or strategic intelligence report?" Mode What you get Best for quick 1 query, top 5 insights, no synthesis Fast pain point check, content spark standard 3–5 queries, full synthesis with themes and patterns Product validation, content research deep Multi-angle research + sentiment analysis + content angles + c...
|
50 |
| 14940 | agentic-jujutsu | ruvnet/claude-flow |
Agentic Jujutsu - AI Agent Version Control Quantum-ready, self-learning version control designed for multiple AI agents working simultaneously without conflicts. When to Use This Skill Use agentic-jujutsu when you need: ✅ Multiple AI agents modifying code simultaneously ✅ Lock-free version control (23x faster than Git) ✅ Self-learning AI that improves from experience ✅ Quantum-resistant security for future-proof protection ✅ Automatic conflict resolution (87% success rate) ✅ Pattern recognit...
|
50 |
| 14941 | cloudflare-agents | secondsky/claude-skills |
Cloudflare Agents SDK Status: Production Ready ✅ Last Updated: 2026-01-09 Dependencies: cloudflare-worker-base (recommended) Latest Versions: agents@0.3.3, @modelcontextprotocol/sdk@latest Production Tested: Cloudflare's own MCP servers (https://github.com/cloudflare/mcp-server-cloudflare) Recent Updates (2025-2026): Jan 2026: Agents SDK v0.3.6 with callable methods fix, protocol version support updates Nov 2025: Agents SDK v0.2.24+ with resumable streaming (streams persist across disconnects...
|
50 |
| 14942 | bluesky | openclaudia/openclaudia-skills |
Bluesky Social Media Skill You are a Bluesky content and engagement specialist. Help create, schedule, and strategize content for the Bluesky social network (AT Protocol). Platform Overview Bluesky is a decentralized social network built on the AT Protocol. Key differences from Twitter/X: 300 character limit per post (vs. 280 on X) Algorithmic choice — Users pick their own feed algorithms Custom feeds — Anyone can create topic-based feeds No ads — Organic reach is the only reach Open API — Full ...
|
50 |
| 14943 | handoff-spec | owl-listener/designer-skills |
Handoff Spec You are an expert in creating clear, complete developer handoff specifications. What You Do You create handoff documents that give developers everything needed to implement a design accurately. Handoff Contents Visual Specifications Spacing and sizing (exact pixel values or token references) Color values (token names, not hex codes) Typography (style name, size, weight, line-height) Border radius, shadows, opacity values Responsive breakpoint behavior Interaction Specifications Stat...
|
50 |
| 14944 | azure-keyvault-keys-ts | sickn33/antigravity-awesome-skills |
Azure Key Vault Keys SDK for TypeScript Manage cryptographic keys with Azure Key Vault. Installation Keys SDK npm install @azure/keyvault-keys @azure/identity Environment Variables KEY_VAULT_URL = https:// < vault-name > .vault.azure.net Or AZURE_KEYVAULT_NAME = < vault-name > Authentication import { DefaultAzureCredential } from "@azure/identity" ; import { KeyClient , CryptographyClient } from "@azure/keyvault-keys" ; const credential = new DefaultAzureCredential ( ) ; const vaultUrl = ` htt...
|
50 |
| 14945 | vue-router-v4 | teachingai/full-stack-skills |
When to use this skill Use this skill whenever the user wants to: Set up routing in a Vue 3 application Configure routes, nested routes, and named routes Implement navigation guards (global, per-route, in-component) Use programmatic navigation with router.push(), router.replace(), etc. Handle dynamic route matching and route parameters Work with route meta fields and route records Implement lazy loading and code splitting for routes Use Vue Router with Composition API (useRouter, useRoute) Con...
|
50 |
| 14946 | marimo | connorads/dotfiles |
Contents Editing and Verification Enforcement Key Concepts Cell Structure Editing Rules Core CLI Commands Export Commands Data and Visualization Debugging Workflow Common Issues Additional Resources Marimo Reactive Notebooks Marimo is a reactive Python notebook where cells form a DAG and auto-execute on dependency changes. Notebooks are stored as pure .py files. Editing and Verification Enforcement IRON LAW 1: NEVER MODIFY CELL DECORATORS OR SIGNATURES Only edit code INSIDE @app.cell function bo...
|
50 |
| 14947 | hwc-navigation-content | thehotwireclub/hotwire_club-skills |
Navigation & Content Display Implement navigation and content-discovery behavior with Turbo Drive and Turbo Frames. Core Workflow Classify navigation mode: tabs, pagination, lazy frame loading, faceted search, or custom render/cache lifecycle. Decide URL and history ownership first ( data-turbo-action , frame src , query params, back/forward behavior). Use frame lifecycle and visit events to update active state, request params, and scroll restoration. Clean transient UI state before Turbo cache ...
|
50 |
| 14948 | client-scripts | groeimetai/snow-flow |
Client Script Patterns for ServiceNow Client Scripts run in the user's browser and control form behavior. Unlike server-side scripts, client scripts can use modern JavaScript (ES6+) in modern browsers. Client Script Types Type When it Runs Use Case onLoad Form loads Set defaults, hide/show fields, initial setup onChange Field value changes React to user input, cascading updates onSubmit Form submitted Validation before save onCellEdit List cell edited Validate inline edits The g_form API Getti...
|
50 |
| 14949 | tailwindcss | blencorp/claude-code-kit |
Tailwind CSS The skill is based on Tailwind CSS v4.1.18, generated at 2026-01-28. Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. Instead of writing custom CSS, you compose designs using utility classes directly in your markup. Tailwind v4 introduces CSS-first configuration with theme variables, making it easier to customize your design system. Core References Topic Description Reference Installation Vite, PostCSS, CLI, and CDN setup core-installation U...
|
50 |
| 14950 | dotnet-exception-handling | rysweet/amplihack |
No SKILL.md available for this skill. View on GitHub
|
50 |