███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 16201 | pnpm-upgrade | openai/openai-agents-js |
Use these steps to update pnpm and CI pins without blunt search/replace. Steps (run from repo root) - Update pnpm locally Try `pnpm self-update`; if pnpm is missing or self-update fails, run `corepack prepare pnpm@latest --activate`. - Capture the resulting version as `PNPM_VERSION=$(pnpm -v)`. - Align package.json Open `package.json` and set `packageManager` to `pnpm@${PNPM_VERSION}` (preserve trailing newline and formatting). - Find latest pnpm/action-setup tag Query GitHub API: `c...
|
58 |
| 16202 | chroma | orchestra-research/ai-research-skills |
Chroma - Open-Source Embedding Database The AI-native database for building LLM applications with memory. When to use Chroma Use Chroma when: Building RAG (retrieval-augmented generation) applications Need local/self-hosted vector database Want open-source solution (Apache 2.0) Prototyping in notebooks Semantic search over documents Storing embeddings with metadata Metrics: 24,300+ GitHub stars 1,900+ forks v1.3.3 (stable, weekly releases) Apache 2.0 license Use alternatives instead: Pin...
|
58 |
| 16203 | controller-setup | cartridge-gg/docs |
Controller Setup Cartridge Controller is a gaming-focused smart contract wallet for Starknet with session keys, passkeys, and paymaster support. Installation Basic Controller usage pnpm add @cartridge/controller starknet With framework connectors (React, native apps) pnpm add @cartridge/controller @cartridge/connector starknet Quick Start import Controller from "@cartridge/controller" ; const controller = new Controller ( ) ; const account = await controller . connect ( ) ; // Ready to execute...
|
58 |
| 16204 | memory-hygiene | sundial-org/awesome-openclaw-skills |
Memory Hygiene Keep vector memory lean. Prevent token waste from junk memories. Quick Commands Audit: Check what's in memory memory_recall query="*" limit=50 Wipe: Clear all vector memory rm -rf ~/.clawdbot/memory/lancedb/ Then restart gateway: clawdbot gateway restart Reseed: After wipe, store key facts from MEMORY.md memory_store text="<fact>" category="preference|fact|decision" importance=0.9 Config: Disable Auto-Capture The main source of junk is autoCapture: true . Disable it: { "plugins" :...
|
58 |
| 16205 | umbraco-granular-user-permissions | umbraco/umbraco-cms-backoffice-skills |
Umbraco Granular User Permissions What is it? Granular User Permissions allow you to create custom permission controls for specific entity types in Umbraco. Unlike general entity permissions that apply to all instances, granular permissions can be configured per-entity, allowing fine-grained access control. This is commonly used for document permissions where different users can have different permissions on different content nodes. Documentation Always fetch the latest docs before implementing:...
|
58 |
| 16206 | add-vault-note | tradingstrategy-ai/web3-ethereum-defi |
Add vault note This skill adda s human readable note to a specific vault in the database. Required inputs Before starting, gather the following information from the user: Vault smart contract address - The address of an example vault contract on a blockchain Message: A human readable message Flags (optional): Flags from VaultFlag enum - if not given set to None 1. Resolve vault name Can be resolved from https://top-defi-vaults.tradingstrategy.ai/top_vaults_by_chain.json JSON file It's a li...
|
58 |
| 16207 | tiktok creator | eddiebe147/claude-settings |
TikTok Creator Master TikTok trends, create viral hooks, and optimize content for the algorithm When to Use This Skill Use this skill when you need to: Create compelling written content Develop clear messaging and communication Structure information effectively Not recommended for: Tasks requiring technical implementation complex data analysis Quick Reference Action Command/Trigger Create tiktok creator tiktok content Review and optimize review tiktok creator Get best practices tiktok creator be...
|
58 |
| 16208 | bun next.js | secondsky/claude-skills |
Run Next.js applications with Bun for faster development and builds. Quick Start ``` Create new Next.js project with Bun bunx create-next-app@latest my-app cd my-app Install dependencies bun install Development bun run dev Build bun run build Production bun run start ``` Project Setup package.json ``` { "scripts": { "dev": "next dev --turbo", "build": "next build", "start": "next start", "lint": "next lint" }, "dependencies": { "next": "^16.1.1", "...
|
58 |
| 16209 | godot-resource-data-patterns | thedivergentai/gd-agentic-skills |
Resource & Data Patterns Resource-based design, typed arrays, and serialization define reusable, inspector-friendly data structures. Available Scripts data_factory_resource.gd Expert resource factory with type validation and batch instantiation. resource_pool.gd Object pooling for Resource instances - reduces allocation overhead in hot paths. resource_validator.gd Validates Resource files for missing exports and configuration issues. MANDATORY - For Data Systems : Read data_factory_resource.gd b...
|
58 |
| 16210 | json-schema-validator | dkyazzentwatwa/chatgpt-skills |
Validate JSON documents against JSON Schema (Draft 7) specifications. Features - Schema Validation: Validate JSON against schema - Error Details: Detailed validation error messages - Batch Validation: Validate multiple files - Schema Generation: Generate schema from examples - Multiple Drafts: Support for Draft 4, 6, 7 Quick Start ``` from json_validator import JSONValidator validator = JSONValidator() Validate data against schema schema = { "type": "object", "properties": {...
|
58 |
| 16211 | task-status | addozhang/openclaw-forge |
Task Status Skill Quick Start Manual Status Updates python scripts/send_status.py "Starting data fetch..." "progress" "step1" python scripts/send_status.py "Processing complete" "success" "final" python scripts/send_status.py "Error: Missing API key" "error" "auth" Automatic Periodic Monitoring (Every 5 seconds) Start monitoring a long-running task python scripts/monitor_task.py start "My Long Task" "processing" Monitor will send "Still working..." updates every 5 seconds When task completes,...
|
58 |
| 16212 | summarize | nkchivas/openclaw-skill-summarize |
Summarize Fast CLI to summarize URLs, local files, and YouTube links. When to use (trigger phrases) Use this skill immediately when the user asks any of: “use summarize.sh” “what’s this link/video about?” “summarize this URL/article” “transcribe this YouTube/video” (best-effort transcript extraction; no yt-dlp needed) Quick start summarize "https://example.com" --model google/gemini-3-flash-preview summarize "/path/to/file.pdf" --model google/gemini-3-flash-preview summarize "https://youtu.be/dQ...
|
58 |
| 16213 | midjourney-prompt-engineering | justinperea/midjourney-cc-skill |
Midjourney Prompt Learning System A skill that knows Midjourney. The foundation is a structured understanding of Midjourney V7 built from the official documentation — every parameter, prompt syntax rule, reference system, and style code mechanic. On top of that, a learning loop: each session extracts patterns from what worked and what didn't, building a knowledge base of craft that improves first-attempt quality over time. Architecture You are a multimodal reasoning model. You don't need pipelin...
|
58 |
| 16214 | docs-sync | openai/openai-agents-js |
Docs Sync Overview Identify doc coverage gaps and inaccuracies by comparing main branch features and configuration options against the current docs structure, then propose targeted improvements. Workflow Confirm scope and base branch Identify the current branch and default branch (usually main ). Prefer analyzing the current branch to keep work aligned with in-flight changes. If the current branch is not main , analyze only the diff vs main to scope doc updates. Avoid switching branches if it wo...
|
58 |
| 16215 | process-substitution-fifos | josiahsiegel/claude-plugin-marketplace |
CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes ( \ ) in file paths, NOT forward slashes ( / ). Process Substitution & FIFOs (2025) Overview Master advanced inter-process communication patterns in bash using process substitution, named pipes (FIFOs), and efficient data streaming techniques. These patterns enable powerful data pipelines without temporary files. Proces...
|
58 |
| 16216 | ios-app-store-submission | kimny1143/claude-code-template |
iOS Local Build & Submission ローカルビルド → App Store Connect アップロード → TestFlight / 審査提出の完全ワークフロー。 基本方針 ローカルビルドをデフォルトにする (EAS Buildは使わない) EAS Free tier は月30ビルド。デバッグ反復で一瞬で溶ける EASはgit cloneベース → gitに入っていないファイルはビルドに含まれない → 事故の元 ローカルビルドはファイルシステムを直接使う → 安全・高速・無制限 Phase 0: ビルド前チェック 0.1 アプリ特定 どのアプリをビルドするか確認 ls -d */app.json → muednote-mobile/app.json, muedear/app.json 0.2 ブランチ確認 目的 ブランチ App Store 審査提出 main TestFlight テスト feature ブランチ OK git branch --show-current git status 0.3 バージョン・ビルド番号の確認 app.json から現...
|
58 |
| 16217 | openai-knowledge | openai/openai-agents-js |
OpenAI Knowledge Overview Use the OpenAI Developer Documentation MCP server to search and fetch exact docs (markdown), then base your answer on that text instead of guessing. Workflow 1) Check whether the Docs MCP server is available If the mcp__openaiDeveloperDocs__* tools are available, use them. If you are unsure, run codex mcp list and check for openaiDeveloperDocs. 2) Use MCP tools to pull exact docs Search first, then fetch the specific page or pages. mcp__openaiDeveloperDocs__search_...
|
58 |
| 16218 | sqs | itsmostafa/aws-agent-skills |
AWS SQS Amazon Simple Queue Service (SQS) is a fully managed message queuing service for decoupling and scaling microservices, distributed systems, and serverless applications. Table of Contents Core Concepts Common Patterns CLI Reference Best Practices Troubleshooting References Core Concepts Queue Types Type Description Use Case Standard At-least-once, best-effort ordering High throughput FIFO Exactly-once, strict ordering Order-sensitive processing Key Settings Setting Description Default V...
|
58 |
| 16219 | secrets-scan | jwynia/agent-skills |
Secrets Scan Deep detection of hardcoded credentials and sensitive data in source code. Quick Start /secrets-scan Scan current directory /secrets-scan --scope src/ Scan specific path /secrets-scan --entropy Include high-entropy detection /secrets-scan --git-history Check git commit history What This Skill Detects High-Confidence Patterns Patterns with very low false positive rates: Type Pattern Example Provider AWS Access Key AKIA... (20 chars) AWS AWS ...
|
58 |
| 16220 | php-modernization | dirnbauer/webconsulting-skills |
PHP Modernization Skill Modernize PHP applications to PHP 8.x with type safety, PSR compliance, and static analysis. Expertise Areas PHP 8.x: Constructor promotion, readonly, enums, match, attributes, union types PSR/PER Compliance: Active PHP-FIG standards Static Analysis: PHPStan (level 9+), PHPat, Rector, PHP-CS-Fixer Type Safety: DTOs/VOs over arrays, generics via PHPDoc PHP 8.x Features Constructor Property Promotion (PHP 8.0+) // ❌ OLD class UserService { private UserRepository $user...
|
58 |
| 16221 | prompt-generator | huangserva/skill-prompt-generator |
No SKILL.md available for this skill. View on GitHub
|
58 |
| 16222 | html-to-pptx | aviz85/claude-skills-library |
No SKILL.md available for this skill. View on GitHub
|
58 |
| 16223 | agent-bootstrap | jwynia/agent-skills |
Agent Bootstrap: Declarative Environment Setup You bootstrap the agentic development environment by reading agent.toml and configuring the current tool (Claude Code, OpenCode, etc.) accordingly. Usage /agent-bootstrap Validate environment and configure tool /agent-bootstrap --verify Run all verification checks /agent-bootstrap --check Dry run: report what would be configured Core Principle Self-bootstrap without external dependencies. The manifest ( agent.toml ) + this skill = co...
|
58 |
| 16224 | cargo-nextest | laurigates/claude-plugins |
cargo-nextest is a faster, more reliable test runner for Rust that executes each test in its own process for better isolation and parallel performance. Installation ``` Install cargo-nextest cargo install cargo-nextest --locked Verify installation cargo nextest --version ``` Basic Usage ``` Run all tests with nextest cargo nextest run Run specific test cargo nextest run test_name Run tests in specific package cargo nextest run -p package_name Run with verbose output cargo nextes...
|
58 |
| 16225 | tauri-svelte-ui-components | oimiragieo/agent-studio |
Tauri Svelte Ui Components Skill Use Svelte's component-based architecture for modular and reusable UI elements. Leverage TypeScript for strong typing and improved code quality. Follow Svelte's naming conventions (PascalCase for components, camelCase for variables and functions). Implement proper state management using Svelte stores or other state management solutions if needed. Use Svelte's built-in reactivity for efficient UI updates. Memory Protocol (MANDATORY) Before starting: cat .claude/...
|
58 |
| 16226 | log-analyzer | eddiebe147/claude-settings |
Log Analyzer Skill Overview This skill helps you effectively analyze application logs to diagnose issues, track errors, and understand system behavior. Covers log searching, pattern detection, structured logging, and integration with monitoring tools. Log Analysis Philosophy Principles Structure over text: Structured logs are easier to analyze Context matters: Include relevant metadata Levels have meaning: Use appropriate severity levels Correlation is key: Link related events across services ...
|
58 |
| 16227 | webassessment | danielmiessler/personal_ai_infrastructure |
Before executing, check for user customizations at: `~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/WebAssessment/` If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. 🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION) You MUST send this notification BEFORE doing anything else when this skill is invoked. - Send voice notification: ``` ...
|
58 |
| 16228 | agent-tracing | lobehub/lobehub |
Agent Tracing CLI Guide @lobechat/agent-tracing is a zero-config local dev tool that records agent execution snapshots to disk and provides a CLI to inspect them. How It Works In NODE_ENV=development , AgentRuntimeService.executeStep() automatically records each step to .agent-tracing/ as partial snapshots. When the operation completes, the partial is finalized into a complete ExecutionSnapshot JSON file. Data flow : executeStep loop -> build StepPresentationData -> write partial snapshot to dis...
|
58 |
| 16229 | instruments-profiling | steipete/agent-scripts |
Instruments Profiling (macOS/iOS) Use this skill when the user wants performance profiling or stack analysis for native apps. Focus: Time Profiler, xctrace CLI, and picking the correct binary/app instance. Quick Start (CLI) List templates: xcrun xctrace list templates Record Time Profiler (launch): xcrun xctrace record --template 'Time Profiler' --time-limit 60s --output /tmp/App.trace --launch -- /path/To/App.app Record Time Profiler (attach): Launch app yourself, get PID, then: xcrun xctrace...
|
58 |
| 16230 | scientific-skills | oimiragieo/agent-studio |
Claude Scientific Skills Overview A comprehensive collection of 139 ready-to-use scientific skills that transform Claude into an AI research assistant capable of executing complex multi-step scientific workflows across biology, chemistry, medicine, and related fields. When to Use Invoke this skill when: Working on scientific research tasks Need access to specialized databases (PubMed, ChEMBL, UniProt, etc.) Performing bioinformatics or cheminformatics analysis Creating literature reviews or ...
|
58 |
| 16231 | godot | randroids-dojo/skills |
Godot Skill Develop, test, build, and deploy Godot 4.x games. Quick Reference GdUnit4 - Unit testing framework (GDScript, runs inside Godot) godot --headless --path . -s res://addons/gdUnit4/bin/GdUnitCmdTool.gd --run-tests PlayGodot - Game automation framework (Python, like Playwright for games) export GODOT_PATH = /path/to/godot-automation-fork pytest tests/ -v Export web build godot --headless --export-release "Web" ./build/index.html Deploy to Vercel vercel deploy ./build --prod Testing ...
|
58 |
| 16232 | umbraco-review-checks | umbraco/umbraco-cms-backoffice-skills |
Umbraco Extension Review Checks Reference skill containing all review checks for the umbraco-extension-reviewer agent. Check Categories Category File Checks Code Quality code-quality-checks.md CQ-1 to CQ-9 Architecture architecture-checks.md AR-1 to AR-6 UI Patterns ui-pattern-checks.md UI-1 to UI-7 Quick Reference ID Check Severity Auto-Fix Code Quality CQ-1 Extension Type Usage Critical Yes CQ-2 Manifest Registration High No CQ-3 Element Implementation Medium Partial CQ-4 Context API Usage Hig...
|
58 |
| 16233 | module-class-session-planner | jorgealves/agent_skills |
Module Class Session Planner Purpose and Intent The module-class-session-planner helps mentors and teachers prepare for high-impact live sessions. It ensures that the time is used efficiently and that all key concepts are covered. When to Use Session Preparation : Run this 1-2 days before a class to generate a structured agenda and talking points. Workshop Design : Useful for planning interactive workshops where timing is critical. When NOT to Use On-the-fly Q&A : This is for pre-planned session...
|
58 |
| 16234 | slash-command-factory | terrylica/cc-skills |
A comprehensive system for generating production-ready Claude Code slash commands through a simple question-based workflow. Overview This skill helps you create custom slash commands for Claude Code by: - Asking 5-7 straightforward questions about your command needs - Generating complete command .md files with proper YAML frontmatter - Providing 10 powerful preset commands for common use cases - Validating command format and syntax - Creating well-organized folder structures - Offering ...
|
58 |
| 16235 | inertia-rails-testing | inertia-rails/skills |
Inertia Rails Testing Testing patterns for Inertia responses with RSpec and Minitest. For each controller action, verify: Correct component → render_component('users/index') Expected props → have_props(users: satisfy { ... }) No leaked data → have_no_prop(:secret) Flash messages → follow_redirect! then have_flash(notice: '...') Deferred props → have_deferred_props(:analytics) Common mistake: Forgetting follow_redirect! after PRG — without it, you're asserting against the 302 redirect response, n...
|
58 |
| 16236 | integrations | automattic/wordpress-activitypub |
ActivityPub Integrations This skill provides guidance on integrating the ActivityPub plugin with other WordPress plugins. Quick Reference Integration Location All integrations live in the integration/ directory. File naming: class-{plugin-name}.php (following PHP conventions) Available Integrations BuddyPress bbPress WooCommerce Jetpack The Events Calendar WP User Avatars And 13+ more For complete directory structure and naming conventions, see PHP Class Structure. Creating New Integratio...
|
58 |
| 16237 | api-design | scientiacapital/skills |
API Design When to use this skill Designing new REST APIs Creating GraphQL schemas Refactoring API endpoints Documenting API specifications API versioning strategies Defining data models and relationships Instructions Step 1: Define API requirements Identify resources and entities Define relationships between entities Specify operations (CRUD, custom actions) Plan authentication/authorization Consider pagination, filtering, sorting Step 2: Design REST API Resource naming : Use nouns, not verbs: ...
|
58 |
| 16238 | skill-creator | vercel-labs/portless |
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
|
58 |
| 16239 | objective | dagster-io/erk |
Objective Skill Overview Objectives are coordination documents for goals requiring multiple plans/PRs to complete. Unlike erk-plans (single executable implementations), objectives track progress across related work and capture lessons learned along the way. Scope range: Small: Feature requiring 2-3 related PRs Medium: Refactor spanning several plans Large: Long-running strategic direction emitting many plans Objective vs Erk-Plan Aspect Erk-Plan Objective Purpose Single executable implementation...
|
58 |
| 16240 | web-research | pollinations/pollinations |
Web Research Skill This skill provides a structured approach to conducting comprehensive web research using the task tool to spawn research subagents. It emphasizes planning, efficient delegation, and systematic synthesis of findings. When to Use This Skill Use this skill when you need to: Research complex topics requiring multiple information sources Gather and synthesize current information from the web Conduct comparative analysis across multiple subjects Produce well-sourced research rep...
|
58 |
| 16241 | travel-requirements-expert | tdimino/claude-code-minoan |
Travel Requirements Expert Transform user travel requests into comprehensive, research-backed itinerary requirements through a systematic 5-phase workflow. Overview This skill provides a structured methodology for gathering travel requirements that produces detailed, implementable itineraries. Unlike ad-hoc trip planning, this approach ensures comprehensive coverage through systematic question phases, research-backed recommendations via MCP servers, and personalized balance of user preferences. ...
|
58 |
| 16242 | technical-debt-visualizer | jorgealves/agent_skills |
Technical Debt Visualizer Purpose and Intent The technical-debt-visualizer provides a data-driven view of software quality. It helps engineering leaders and developers prioritize refactoring work by identifying files that are both complex and frequently changed—the "high-interest" technical debt. When to Use Sprint Planning : Run this before a dedicated refactoring sprint to identify the best "ROI" targets. Architectural Reviews : Use to visualize the impact of legacy systems on the overall code...
|
58 |
| 16243 | qa-test-planner | jamesrochabrun/skills |
QA Test Planner A comprehensive skill for QA engineers to create test plans, generate manual test cases, build regression test suites, validate designs against Figma, and document bugs effectively. Activation: This skill is triggered only when explicitly called by name (e.g., /qa-test-planner , qa-test-planner , or use the skill qa-test-planner ). Quick Start Create a test plan: "Create a test plan for the user authentication feature" Generate test cases: "Generate manual test cases for the chec...
|
58 |
| 16244 | us-stock-researcher | skindhu/skind-skills |
US Stock Researcher Institutional-grade deep analysis of US stock SEC filings, outputting professional investment reports. Research Mode Selection Mode When to Use Requirements Gemini Mode Default when GEMINI_API_KEY is configured GEMINI_API_KEY environment variable Claude Native Mode When no Gemini API or user requests WebSearch tool access Quick Start Workflow Path Variables Before starting, determine these two paths: <project_root> : The user's current working directory (where the agent sessi...
|
58 |
| 16245 | sparse-autoencoder-training | orchestra-research/ai-research-skills |
SAELens: Sparse Autoencoders for Mechanistic Interpretability SAELens is the primary library for training and analyzing Sparse Autoencoders (SAEs) - a technique for decomposing polysemantic neural network activations into sparse, interpretable features. Based on Anthropic's groundbreaking research on monosemanticity. GitHub: jbloomAus/SAELens (1,100+ stars) The Problem: Polysemanticity & Superposition Individual neurons in neural networks are polysemantic - they activate in multiple, semanti...
|
58 |
| 16246 | umbraco-search-result-item | umbraco/umbraco-cms-backoffice-skills |
Umbraco Search Result Item What is it? A Search Result Item is a custom component that controls how individual search results are displayed in the backoffice search results. It allows you to customize the visual presentation of search results for specific entity types - showing additional information, custom icons, badges, or any other visual elements. Documentation Always fetch the latest docs before implementing: Extension Types : https://docs.umbraco.com/umbraco-cms/customizing/extending-over...
|
58 |
| 16247 | security-first-2025 | josiahsiegel/claude-plugin-marketplace |
🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentation files unless ...
|
58 |
| 16248 | gaming-entertainment | dylantarre/animation-principles |
Apply Disney's 12 principles to create immersive, exciting experiences that maximize engagement and emotional impact. The 12 Principles Applied 1. Squash & Stretch - Button Presses: Satisfying squash on tap - Character Icons: Bounce and stretch for personality - Achievements: Badges stretch dramatically on unlock 2. Anticipation - Play Button: Wind-up before launch - Loot Boxes: Dramatic build-up before reveal - Level Start: Countdown with escalating energy 3. Staging - Hero Conte...
|
58 |
| 16249 | umbraco-monaco-markdown-editor-action | umbraco/umbraco-cms-backoffice-skills |
Umbraco Monaco Markdown Editor Action What is it? Monaco Markdown Editor Actions add custom toolbar buttons and keyboard shortcuts to the Markdown editor in Umbraco. They allow you to extend the editing experience with custom functionality like inserting links, images, or custom markdown syntax. Actions appear in the editor toolbar and can respond to keyboard shortcuts. Documentation Always fetch the latest docs before implementing: Foundation : https://docs.umbraco.com/umbraco-cms/customizing/f...
|
58 |
| 16250 | grove-auth-integration | autumnsgrove/groveengine |
Grove Auth Integration Add Heartwood authentication to a Grove property — from client registration through production deployment. When to Activate User says "add auth to this project" or "wire up Heartwood" User is building a new Grove property that needs login User needs to register a new OAuth client with Heartwood User explicitly calls /grove-auth-integration User mentions needing sign-in, protected routes, or session validation User says "integrate GroveAuth" or "add login" Key URLs Service ...
|
58 |