Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
9251 psychologist-analyst rysweet/amplihack
Analyze events through the disciplinary lens of psychology, applying established psychological frameworks (behavioral, cognitive, psychodynamic, humanistic, biological), research methodologies, and empirical findings to understand human behavior, cognition, emotion, motivation, social influence, mental health, and individual differences in context. When to Use This Skill - Decision-Making Analysis: Understanding cognitive biases, heuristics, and irrational choices - Leadership Analysis: Exam...
349
9252 imagen sanjay3290/ai-skills
Imagen - AI Image Generation Skill Overview This skill generates images using Google Gemini's image generation model (gemini-3-pro-image-preview). It enables seamless image creation during any Claude Code session - whether you're building frontend UIs, creating documentation, or need visual representations of concepts. Cross-Platform: Works on Windows, macOS, and Linux. When to Use This Skill Automatically activate this skill when: User requests image generation (e.g., "generate an image of...
349
9253 stock-trading meo9rhsan3492-cell/cn-stock-sim
A股智能交易技能 连接新浪财经实时行情接口,提供A股股票的实时价格查询、模拟买卖和持仓管理。 行情数据为沪深交易所真实数据,交易为模拟盘,不涉及真实账户和资金。 可用命令 查询股票实时价格 python3 { baseDir } /scripts/get_price.py --code 600519 支持沪深两市股票代码。示例:600519(贵州茅台)、000858(五粮液)、300750(宁德时代) 返回:股票名称、最新价、涨跌幅、成交量、买卖五档等(JSON格式) 批量查询多只股票 python3 { baseDir } /scripts/get_price.py --code 600519,000858 ,000001 用逗号分隔多个股票代码,一次查询多只。 查询大盘指数 python3 { baseDir } /scripts/get_price.py --index sh000001 支持:sh000001(上证指数)、sz399001(深证成指)、sz399006(创业板指) 买入股票 python3 { baseDir } /scripts/trade.py --acti...
349
9254 skill yeachan-heo/oh-my-claudecode
Skill Management CLI Meta-skill for managing oh-my-claudecode skills via CLI-like commands. Subcommands /skill list Show all local skills organized by scope. Behavior: Scan user skills at ~/.claude/skills/omc-learned/ Scan project skills at .omc/skills/ Parse YAML frontmatter for metadata Display in organized table format: USER SKILLS (~/.claude/skills/omc-learned/): | Name | Triggers | Quality | Usage | Scope | |-------------------|--------------------|---------|-------|-...
349
9255 quien-whois-lookup aradotso/trending-skills
quien — Better WHOIS Lookup Tool Skill by ara.so — Daily 2026 Skills collection. quien is a Go-based CLI/TUI tool that replaces whois with tabbed interactive views and JSON-scriptable subcommands for domain WHOIS/RDAP, DNS records, mail configuration (SPF, DMARC, DKIM, BIMI), SSL/TLS, HTTP headers, tech stack detection, and IP/ASN/BGP lookups. Installation Homebrew (macOS/Linux) brew tap retlehs/tap brew install retlehs/tap/quien Ubuntu / Debian curl -fsSL https://apt.quien.dev/install.sh | sudo...
349
9256 progressive-blur-header-swiftui aradotso/trending-skills
ProgressiveBlurHeader SwiftUI Skill Skill by ara.so — Daily 2026 Skills collection. A drop-in SwiftUI package for sticky headers with progressive (variable-radius) blur — replicating the Apple Music, Photos, and App Store style where content scrolls underneath the header with increasing blur and tint. No clipping, no hard edges. Installation Swift Package Manager (Xcode) File → Add Package Dependencies → paste: https://github.com/dominikmartn/ProgressiveBlurHeader Select branch: main Package.swi...
349
9257 test-data-generation aj-geddes/useful-ai-prompts
Test Data Generation Overview Test data generation creates realistic, consistent, and maintainable test data for automated testing. Well-designed test data reduces test brittleness, improves readability, and makes it easier to create diverse test scenarios. When to Use Creating fixtures for integration tests Generating fake data for development databases Building test data with complex relationships Creating realistic user inputs for testing Seeding test databases Generating edge cases and bou...
349
9258 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...
349
9259 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...
349
9260 code-refactoring-context-restore sickn33/antigravity-awesome-skills
Context Restoration: Advanced Semantic Memory Rehydration Use this skill when Working on context restoration: advanced semantic memory rehydration tasks or workflows Needing guidance, best practices, or checklists for context restoration: advanced semantic memory rehydration Do not use this skill when The task is unrelated to context restoration: advanced semantic memory rehydration You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required input...
349
9261 backtesting-frameworks sickn33/antigravity-awesome-skills
Backtesting Frameworks Build robust, production-grade backtesting systems that avoid common pitfalls and produce reliable strategy performance estimates. Use this skill when Developing trading strategy backtests Building backtesting infrastructure Validating strategy performance and robustness Avoiding common backtesting biases Implementing walk-forward analysis Do not use this skill when You need live trading execution or investment advice Historical data quality is unknown or incomplete The ta...
349
9262 ios-glass-ui-designer heyman333/atelier-ui
iOS Glass UI Designer Role You are a senior iOS product designer who deeply understands Apple Human Interface Guidelines, iOS material system (translucency + blur), and modern iOS-first interaction patterns. Your task is to redesign a mobile app UI to feel unmistakably Apple-like, iOS-forward, and native— with tasteful, restrained glass materials. Design Philosophy Native over custom Restraint over spectacle Material is functional, not decorative "Feels obvious" rather than "looks fancy" Glas...
349
9263 fine-tuning-with-trl davila7/claude-code-templates
TRL - Transformer Reinforcement Learning Quick start TRL provides post-training methods for aligning language models with human preferences. Installation: pip install trl transformers datasets peft accelerate Supervised Fine-Tuning (instruction tuning): from trl import SFTTrainer trainer = SFTTrainer( model="Qwen/Qwen2.5-0.5B", train_dataset=dataset, Prompt-completion pairs ) trainer.train() DPO (align with preferences): from trl import DPOTrainer, DPOConfig config = DPOConf...
349
9264 refactor pproenca/dot-skills
Refactor Overview Improve code structure and readability without changing external behavior. Refactoring is gradual evolution, not revolution. Use this for improving existing code, not rewriting from scratch. When to Use Use this skill when: Code is hard to understand or maintain Functions/classes are too large Code smells need addressing Adding features is difficult due to code structure User asks "clean up this code", "refactor this", "improve this" Refactoring Principles The Golden Rules ...
349
9265 promo-video opusgamelabs/game-creator
Promo Video Recording Record smooth, autonomous promo footage of a Phaser game for marketing / social media. The output is a 50 FPS MP4 in mobile portrait (9:16) — ready for TikTok, Reels, Moltbook, or X. Technique Playwright's recordVideo caps at 25 FPS with no config option. We work around it: Slow the game to 0.5× by patching all 5 Phaser time subsystems Record for 2× the desired duration at Playwright's native 25 FPS FFmpeg speed-up 2× → effective 50 FPS output Parameter Default Effect SLOW_...
349
9266 claude-reflect bayramannakov/claude-reflect
Claude Reflect - Self-Learning System A two-stage system that helps Claude Code learn from user corrections. How It Works Stage 1: Capture (Automatic) Hooks detect correction patterns ("no, use X", "actually...", "use X not Y") and queue them to ~/.claude/learnings-queue.json. Stage 2: Process (Manual) User runs /reflect to review and apply queued learnings to CLAUDE.md files. Available Commands Command Purpose /reflect Process queued learnings with human review /reflect --scan-history Scan...
349
9267 research-external parcadei/continuous-claude-v3
External Research Workflow Research external sources (documentation, web, APIs) for libraries, best practices, and general topics. Note: The current year is 2025. When researching best practices, use 2024-2025 as your reference timeframe. Invocation /research-external <focus> [options] Question Flow (No Arguments) If the user types just /research-external with no or partial arguments, guide them through this question flow. Use AskUserQuestion for each phase. Phase 1: Research Type question...
349
9268 search-router parcadei/continuous-claude-v3
Search Tool Router Use the most token-efficient search tool for each query type. When to Use Searching for code patterns Finding where something is implemented Looking for specific identifiers Understanding how code works Decision Tree Query Type? ├── CODE EXPLORATION (symbols, call chains, data flow) │ → TLDR Search - 95% token savings │ DEFAULT FOR ALL CODE SEARCH - use instead of Grep │ Examples: "spawn_agent", "DataPoller", "redis usage" │ Command: tldr search "query" . │ ├── STRUC...
349
9269 ray-so-code-snippet intellectronica/agent-skills
ray.so Code Snippet Image Generator Generate beautiful code snippet images using ray.so and save them locally. Requirements The user MUST provide the code snippet, either directly or by pointing to a file/selection in context MUST ask the user for ALL styling parameters before generating, presenting ALL available options MUST use agent-browser for screenshot capture (check availability first) Workflow Step 1: Verify agent-browser Availability Before proceeding, verify that agent-browser is av...
349
9270 seedance songguoxs/seedance-prompt-skill
No SKILL.md available for this skill. View on GitHub
349
9271 neon-vercel-postgres jezweb/claude-skills
Neon & Vercel Serverless Postgres Status: Production Ready Last Updated: 2026-01-21 Dependencies: None Latest Versions: @neondatabase/serverless@1.0.2, @vercel/postgres@0.10.0, drizzle-orm@0.45.1, drizzle-kit@0.31.8, neonctl@2.19.0 Quick Start (5 Minutes) 1. Choose Your Platform Option A: Neon Direct (multi-cloud, Cloudflare Workers, any serverless) npm install @neondatabase/serverless Option B: Vercel Postgres (Vercel-only, zero-config on Vercel) npm install @vercel/postgres Note: Both...
348
9272 ln-626-dead-code-auditor levnikolaevich/claude-code-skills
Dead Code Auditor (L3 Worker) Specialized worker auditing unused and unreachable code. Purpose & Scope Worker in ln-620 coordinator pipeline Audit dead code (Category 9: Low Priority) Find unused imports, variables, functions, commented-out code Calculate compliance score (X/10) Inputs (from Coordinator) Receives contextStore with tech stack, codebase root. Workflow Parse context Run dead code detection (linters, grep) Collect findings Calculate score Return JSON Audit Rules 1. Unreachable C...
348
9273 cloudflare-workflows jezweb/claude-skills
Cloudflare Workflows Status: Production Ready ✅ (GA since April 2025) Last Updated: 2026-01-09 Dependencies: cloudflare-worker-base (for Worker setup) Latest Versions: wrangler@4.58.0, @cloudflare/workers-types@4.20260109.0 Recent Updates (2025): April 2025: Workflows GA release - waitForEvent API, Vitest testing, CPU time metrics, 4,500 concurrent instances October 2025: Instance creation rate 10x faster (100/sec), concurrency increased to 10,000 2025 Limits: Max steps 1,024, state persisten...
348
9274 tailwindcss-responsive-darkmode josiahsiegel/claude-plugin-marketplace
Tailwind CSS Responsive Design & Dark Mode (2025/2026) Responsive Design Mobile-First Approach (Industry Standard 2025/2026) Tailwind uses a mobile-first breakpoint system. With over 60% of global web traffic from mobile devices and Google's mobile-first indexing, this approach is essential. Key Principle: Unprefixed utilities apply to ALL screen sizes. Breakpoint prefixes apply at that size AND ABOVE. <!-- CORRECT: Mobile-first (progressive enhancement) --> <div class="text-sm md:text-base l...
348
9275 kotlin-tooling-java-to-kotlin kotlin/kotlin-agent-skills
Java to Kotlin Conversion Convert Java source files to idiomatic Kotlin using a disciplined 4-step conversion methodology with 5 invariants checked at each step. Supports framework-aware conversion that handles annotation site targets, library idioms, and API preservation. Workflow Show more
348
9276 aeon k-dense-ai/scientific-agent-skills
Aeon Time Series Machine Learning Overview Aeon is a scikit-learn compatible Python toolkit for time series machine learning. It provides state-of-the-art algorithms for classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. When to Use This Skill Apply this skill when: Classifying or predicting from time series data Detecting anomalies or change points in temporal sequences Clustering similar time series patterns Forecasting future values Fi...
348
9277 ui-ux-pro-max nexu-io/open-design
UI/UX Pro Max - Design Intelligence Comprehensive design guide for web and mobile applications. Contains 50+ styles, 161 color palettes, 57 font pairings, 161 product types with reasoning rules, 99 UX guidelines, and 25 chart types across 10 technology stacks. Searchable database with priority-based recommendations. When to Apply This Skill should be used when the task involves UI structure, visual design decisions, interaction patterns, or user experience quality control . Must Use This Skill m...
348
9278 playwright-web-scraper dawiddutoit/custom-claude
Playwright Web Scraper Extract structured data from multiple web pages with respectful, ethical crawling practices. When to Use This Skill Use when extracting structured data from websites with "scrape data from", "extract information from pages", "collect data from site", or "crawl multiple pages". Do NOT use for testing workflows (use playwright-e2e-testing ), monitoring errors (use playwright-console-monitor ), or analyzing network (use playwright-network-analyzer ). Always respect robots.txt...
348
9279 to-prd camacho/ai-skills
This skill takes the current conversation context and codebase understanding and produces a PRD. Do NOT interview the user — just synthesize what you already know. Process Explore the repo to understand the current state of the codebase, if you haven't already. Sketch out the major modules you will need to build or modify to complete the implementation. Actively look for opportunities to extract deep modules that can be tested in isolation. A deep module (as opposed to a shallow module) is one w...
348
9280 alphaear-predictor rkiding/awesome-finance-skills
AlphaEar Predictor Skill Overview This skill utilizes the Kronos model (via KronosPredictorUtility ) to perform time-series forecasting and adjust predictions based on news sentiment. Capabilities 1. Forecast Market Trends 1. Forecast Market Trends Workflow: Generate Base Forecast : Use scripts/kronos_predictor.py (via KronosPredictorUtility ) to generate the technical/quantitative forecast. Adjust Forecast (Agentic) : Use the Forecast Adjustment Prompt in references/PROMPTS.md to subjectively a...
348
9281 prometheus-monitoring aj-geddes/useful-ai-prompts
Prometheus Monitoring Overview Implement comprehensive Prometheus monitoring infrastructure for collecting, storing, and querying time-series metrics from applications and infrastructure. When to Use Setting up metrics collection Creating custom application metrics Configuring scraping targets Implementing service discovery Building monitoring infrastructure Instructions 1. Prometheus Configuration /etc/prometheus/prometheus.yml global: scrape_interval: 15s evaluation_interval: 15s exte...
348
9282 analyze-issue neolabhq/context-engineering-kit
No SKILL.md available for this skill. View on GitHub Installs 318 Repository neolabhq/contex…ring-kit GitHub Stars 1.0K First Seen Apr 23, 2026
348
9283 vite mindrally/skills
Vite Based on Vite 8 beta (Rolldown-powered). Vite 8 uses Rolldown bundler and Oxc transformer. Vite is a next-generation frontend build tool with fast dev server (native ESM + HMR) and optimized production builds. Preferences Use TypeScript: prefer vite.config.ts Always use ESM, avoid CommonJS Core Topic Description Reference Configuration vite.config.ts , defineConfig , conditional configs, loadEnv core-config Features import.meta.glob , asset queries ( ?raw , ?url ), import.meta.env , HMR API...
348
9284 sanity mindrally/skills
Sanity CMS Development You are an expert in Sanity CMS, GROQ queries, TypeScript integration, and headless CMS architecture. Core Principles Design schemas with content modeling best practices Write efficient GROQ queries Use TypeScript for type safety Organize projects for scalability Implement proper validation and preview Project Structure sanity/ ├── schemas/ │ ├── documents/ │ │ ├── post.ts │ │ └── author.ts │ ├── objects/ │ │ ├── blockContent.ts │ │ └── image.ts │ └...
348
9285 data-jupyter-python mindrally/skills
Data Analysis and Jupyter Python Development You are an expert in data analysis, visualization, and Jupyter Notebook development, specializing in pandas, matplotlib, seaborn, and numpy libraries. Follow these guidelines when working with data analysis code. Key Principles Write concise, technical responses with accurate Python examples Prioritize reproducibility in data workflows Use functional programming; avoid unnecessary classes Prefer vectorized operations over explicit loops for performa...
348
9286 repo-analyzer yzddmr6/repo-analyzer
Git 项目深度分析技能 深度分析开源项目并生成专业架构报告。报告是有深度洞察的技术研究,读完后读者能理解业务问题、掌握架构设计、产生自己的思考。 When to Use 分析开源项目的架构和设计 对比两个同类项目的设计差异 深入研究一个框架或库的实现思路 When NOT to Use 简单的代码问题或调试 单文件分析或代码审查 不涉及架构层面的代码修改 输出语言 默认中文。如果用户使用其他语言提问,则跟随用户语言。 核心原则 1. 业务视角优先 从"这个项目解决什么问题"出发,不是"这个文件里有什么函数"。 不要 要 handleRequest(ctx) 函数接收一个 Context 参数... 请求进来后,系统会经过鉴权、限流、路由分发三个阶段... interface MessageQueue { push(); pop() } 模块间通过消息队列解耦,生产者只管投递,消费者按优先级拉取 2. 抽象层次把控:不贴代码,讲设计 默认在设计模式和架构层面描述, 非必要情况下不贴原始代码 。重点突出流程、逻辑、设计思想,用架构图(Mermaid)、流程图、表格来表达,而非代码片段。只...
348
9287 triage camacho/ai-skills
Triage Move issues on the project backlog through a small state machine of triage roles. Every comment or issue posted to the backlog during triage must start with this disclaimer: > *This was generated by AI during triage.* Reference docs AGENT-BRIEF.md — how to write durable agent briefs OUT-OF-SCOPE.md — how the .out-of-scope/ knowledge base works Roles Two category roles: bug — something is broken enhancement — new feature or improvement Five state roles: needs-triage — maintainer needs to e...
348
9288 team yeachan-heo/oh-my-claudecode
Team Skill Spawn N coordinated agents working on a shared task list using Claude Code's native team tools. Replaces the legacy /swarm skill (SQLite-based) with built-in team management, inter-agent messaging, and task dependencies -- no external dependencies required. The swarm compatibility alias was removed in 1131. Usage /oh-my-claudecode:team N:agent-type "task description" /oh-my-claudecode:team "task description" /oh-my-claudecode:team ralph "task description" Parameters N - Number of team...
348
9289 rattles-terminal-spinners aradotso/trending-skills
Rattles Terminal Spinners Skill by ara.so — Daily 2026 Skills collection. Rattles is a minimal, zero-dependency Rust library for terminal spinners. It has no runtime or lifecycle — spinners are constructed directly in render loops with negligible cost. Supports no_std environments. Installation Cargo.toml [ dependencies ] rattles = "0.1" with std (default) no_std rattles = { version = "0.1" , default-features = false } Or via CLI: cargo add rattles no_std variant cargo add rattles --no-defau...
348
9290 maoxuan-skill-cognitive-framework aradotso/trending-skills
毛选.skill — Mao's Cognitive Framework for Strategic Analysis Skill by ara.so — Daily 2026 Skills collection. A Claude Code skill that distills the core mental models from 《毛泽东选集》 (Selected Works of Mao Zedong) into an operational cognitive framework. Not a quote repeater — applies his analytical methods to your actual problems: startup vs. big corp, team conflicts, resource allocation, competitive strategy, career pivots. 7 core mental models · 10 decision heuristics · Full expression DNA Install...
348
9291 unit-testing-framework aj-geddes/useful-ai-prompts
Unit Testing Framework Overview Write effective unit tests that are fast, isolated, readable, and maintainable following industry best practices and AAA (Arrange-Act-Assert) pattern. When to Use Writing tests for new code Improving test coverage Establishing testing standards Refactoring with test safety Implementing TDD (Test-Driven Development) Creating test utilities and mocks Instructions 1. Test Structure (AAA Pattern) // Jest/JavaScript example describe('UserService', () => { describe(...
348
9292 exploratory data analysis aj-geddes/useful-ai-prompts
Exploratory Data Analysis (EDA) Overview Exploratory Data Analysis (EDA) is the critical first step in data science projects, systematically examining datasets to understand their characteristics, identify patterns, and assess data quality before formal modeling. Core Concepts Data Profiling : Understanding basic statistics and data types Distribution Analysis : Examining how variables are distributed Relationship Discovery : Identifying patterns between variables Anomaly Detection : Finding out...
348
9293 wot-ui wot-ui/wot-starter
wot-ui 此技能提供使用 wot-ui 组件库开发应用程序的专业知识。 何时使用 当用户需要以下帮助时使用此技能: 实现特定的 wot-ui 组件(例如,“如何使用 Calendar 日历组件?”) 配置全局 Provider 或主题 排查组件行为问题 查找 props、events 和 slots 的 API 参考 组件参考 references/ 目录包含每个组件的详细文档。当用户询问特定组件时,请检查 references/ 中对应的 markdown 文件。 基础 (Basic) introduction.md , quick-use.md , common-problems.md , custom-theme.md button.md , cell.md , config-provider.md , icon.md , img.md , layout.md , popup.md , resize.md , transition.md 表单 (Form) calendar.md , calendar-view.md checkbox.md col-picker.md dat...
348
9294 test-anti-patterns dotnet/skills
Test Anti-Pattern Detection Quick, pragmatic analysis of .NET test code for anti-patterns and quality issues that undermine test reliability, maintainability, and diagnostic value. When to Use User asks to review test quality or find test smells User wants to know why tests are flaky or unreliable User asks "are my tests good?" or "what's wrong with my tests?" User requests a test audit or test code review User wants to improve existing test code When Not to Use User wants to write new tests fro...
348
9295 claude-skills-troubleshooting daymade/claude-code-skills
Claude Skills Troubleshooting Overview Diagnose and resolve common Claude Code plugin and skill configuration issues. This skill provides systematic debugging workflows for plugin installation, enablement, and activation problems. Quick Diagnosis Run the diagnostic script to identify common issues: python3 scripts/diagnose_plugins.py The script checks: Installed vs enabled plugins mismatch Missing enabledPlugins entries in settings.json Stale marketplace cache Invalid plugin configuration...
348
9296 copy-editing davila7/claude-code-templates
Copy Editing You are an expert copy editor specializing in marketing and conversion copy. Your goal is to systematically improve existing copy through focused editing passes while preserving the core message. Core Philosophy 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 editing. Use brand voice and customer language from that context to guide your edits. Good copy editing isn't a...
348
9297 seo-content-auditor sickn33/antigravity-awesome-skills
Use this skill when Working on seo content auditor tasks or workflows Needing guidance, best practices, or checklists for seo content auditor Do not use this skill when The task is unrelated to seo content auditor You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook...
348
9298 moe-training davila7/claude-code-templates
MoE Training: Mixture of Experts When to Use This Skill Use MoE Training when you need to: Train larger models with limited compute (5× cost reduction vs dense models) Scale model capacity without proportional compute increase Achieve better performance per compute budget than dense models Specialize experts for different domains/tasks/languages Reduce inference latency with sparse activation (only 13B/47B params active in Mixtral) Implement SOTA models like Mixtral 8x7B, DeepSeek-V3, Switch T...
348
9299 angular-state-management sickn33/antigravity-awesome-skills
Angular State Management Comprehensive guide to modern Angular state management patterns, from Signal-based local state to global stores and server state synchronization. When to Use This Skill Setting up global state management in Angular Choosing between Signals, NgRx, or Akita Managing component-level stores Implementing optimistic updates Debugging state-related issues Migrating from legacy state patterns Do Not Use This Skill When The task is unrelated to Angular state management You need R...
348
9300 figma-implement-design davila7/claude-code-templates
Implement Design Overview This skill provides a structured workflow for translating Figma designs into production-ready code with pixel-perfect accuracy. It ensures consistent integration with the Figma MCP server, proper use of design tokens, and 1:1 visual parity with designs. Skill Boundaries Use this skill when the deliverable is code in the user's repository. If the user asks to create/edit/delete nodes inside Figma itself, switch to figma-use . If the user asks to build or update a full-pa...
348