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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
7651 spl-to-apl axiomhq/skills
Type safety: Fields like status are often stored as strings. Always cast before numeric comparison: toint(status) >= 500, not status >= 500. Critical Differences - Time is explicit in APL: SPL time pickers don't translate — add `where _time between (ago(1h) .. now())` - Structure: SPL `index=... | command` → APL `['dataset'] | operator` - Join is preview: limited to 50k rows, inner/innerunique/leftouter only - cidrmatch args reversed: SPL `cidrmatch(cidr, ip)` → APL `ipv4_is_in_range(ip, c...
112
7652 instagram vm0-ai/vm0-skills
Instagram API (Graph API) Use the Instagram Graph API by directly executing curl commands to read and publish Instagram content . Official docs: https://developers.facebook.com/docs/instagram-api When to Use Use this skill when you need to: Fetch recent media (photos / videos / Reels) from an account Get detailed information about a specific media item (caption, type, link, time, etc.) Search recent media by hashtag Publish image posts via API (with caption) Prerequisites You must have an Instag...
112
7653 getting started with skills obra/superpowers-skills
Getting Started with Skills Critical Rules Use Read tool before announcing skill usage. The session-start hook does NOT read skills for you. Announcing without calling Read = lying. Follow mandatory workflows. Brainstorming before coding. Check for skills before ANY task. Create TodoWrite todos for checklists. Mental tracking = steps get skipped. Every time. Mandatory Workflow: Before ANY Task 1. Check skills list at session start, or run find-skills [PATTERN] to filter. 2. If relevant skill exi...
112
7654 cohort analysis aj-geddes/useful-ai-prompts
Cohort Analysis Overview Cohort analysis tracks groups of users with shared characteristics over time, revealing patterns in retention, engagement, and lifetime value. When to Use Measuring user retention rates and identifying when users churn Analyzing customer lifetime value (LTV) and payback periods Comparing performance across different user acquisition channels or campaigns Understanding how product changes affect different user groups over time Tracking engagement patterns and identifying ...
112
7655 jest-testing-expert cin12211/orca-q
Jest Testing Expert I'm a specialized expert in the Jest testing framework with deep knowledge of configuration mastery, advanced mocking patterns, snapshot testing strategies, async testing patterns, custom matchers, and performance optimization. My Expertise Core Specializations Configuration Mastery: Advanced jest.config.js patterns, environment setup, module resolution Advanced Mocking: jest.mock strategies, spies, manual mocks, timer control, module hoisting Snapshot Testing: Serializers,...
112
7656 feishu-lark-agent joeseesun/feishu-lark-agent
Feishu Lark Agent Run source ~/.zshrc && python3 ~/.claude/skills/feishu-lark-agent/feishu.py < category > < action > [ --key value .. . ] ID 格式速查(关键) 前缀 类型 用途 ou_ open_id 用户 ID,用于 --to oc_ chat_id 群聊 ID,用于 --chat 邮箱 email 用于 --email ,自动解析为 open_id docx/xxx URL 后半段 document_id 飞书文档 ID base/xxx URL 后半段 app_token 多维表格 App Token 如果只有姓名 :先 user search --name "张三" 获取 open_id,再执行目标操作。 命令速查 消息 msg msg send --to < open_id | chat_id > --text "..." open_id → ou_, chat_id → oc_ msg send --email < email > ...
112
7657 ln-623-code-principles-auditor levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Code Principles Auditor (L3 Worker) Specialized worker auditing code principles (DRY, KISS, YAGNI) and design patterns. Purpose & Scope Worker in ln-620 coordinator pipeline - invoked by ln-620-codebase-auditor Audit code principles (DRY/KISS/YAGNI, error handling, DI) Return structured findings with severity, location, eff...
111
7658 site-architecture alinaqi/claude-bootstrap
Site Architecture You are an information architecture expert. Your goal is to help plan website structure — page hierarchy, navigation, URL patterns, and internal linking — so the site is intuitive for users and optimized for search engines. Before Planning 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 co...
111
7659 typescript-expert gracefullight/stock-checker
TypeScript Expert You are an advanced TypeScript expert with deep, practical knowledge of type-level programming, performance optimization, and real-world problem solving based on current best practices. When invoked: If the issue requires ultra-specific expertise, recommend switching and stop: Deep webpack/vite/rollup bundler internals → typescript-build-expert Complex ESM/CJS migration or circular dependency analysis → typescript-module-expert Type performance profiling or compiler interna...
111
7660 zustand-state-management mindrally/skills
Zustand State Management Last Updated: 2026-01-21 Latest Version: zustand@5.0.10 (released 2026-01-12) Dependencies: React 18-19, TypeScript 5+ Quick Start npm install zustand TypeScript Store (CRITICAL: use create<T>()() double parentheses): import { create } from 'zustand' interface BearStore { bears: number increase: (by: number) => void } const useBearStore = create<BearStore>()((set) => ({ bears: 0, increase: (by) => set((state) => ({ bears: state.bears + by })), })) Use in...
111
7661 hotkey lobehub/lobe-chat
Adding Keyboard Shortcuts Guide Steps to Add a New Hotkey 1. Update Hotkey Constant In src/types/hotkey.ts : export const HotkeyEnum = { // existing... ClearChat : 'clearChat' , // Add new } as const ; 2. Register Default Hotkey In src/const/hotkeys.ts : import { KeyMapEnum as Key , combineKeys } from '@lobehub/ui' ; export const HOTKEYS_REGISTRATION : HotkeyRegistration = [ { group : HotkeyGroupEnum . Conversation , id : HotkeyEnum . ClearChat , keys : combineKeys ( [ Key . Mod , Key . Shift , ...
111
7662 design-patterns-expert rysweet/amplihack
Gang of Four Design Patterns Expert You are a specialized knowledge skill providing comprehensive, philosophy-aligned guidance on all 23 Gang of Four design patterns. Navigation Guide This skill uses progressive disclosure with supporting files for deep knowledge. reference-patterns.md - Complete pattern specifications, decision frameworks, and how to use this skill effectively examples.md - 10 production-ready code examples with real-world scenarios antipatterns.md - Common mistakes and w...
111
7663 django-rest-framework thebushidocollective/han
Django REST Framework Master Django REST Framework for building robust, scalable RESTful APIs with proper serialization and authentication. Serializers Build type-safe data serialization with Django REST Framework serializers. from rest_framework import serializers from django.contrib.auth.models import User class UserSerializer(serializers.ModelSerializer): post_count = serializers.IntegerField(read_only=True) full_name = serializers.SerializerMethodField() class Meta: ...
111
7664 ln-120-reference-docs-creator levnikolaevich/claude-code-skills
This skill creates the reference documentation structure (docs/reference/) and smart documents (ADRs, Guides, Manuals) based on project's TECH_STACK. Documents are created only when justified (nontrivial technology choices with alternatives). When to Use This Skill This skill is a L2 WORKER invoked by ln-100-documents-pipeline orchestrator. This skill should be used directly when: - Creating only reference documentation structure (docs/reference/) - Setting up directories for ADRs, guides,...
111
7665 pine-optimizer traderspost/pinescript-agents
Pine Script Optimizer Specialized in enhancing script performance, user experience, and visual presentation on TradingView. Core Optimization Areas Performance Optimization Reduce calculation complexity Minimize security() calls Optimize array operations Cache repeated calculations Reduce compilation size User Experience Enhancement Intuitive input organization Helpful tooltips and descriptions Smart default values Conditional input visibility User-friendly alerts Visual Optimization Professio...
111
7666 azure-functions aj-geddes/useful-ai-prompts
Azure Functions Patterns Isolated Worker Model (.NET) Modern .NET execution model with process isolation Node.js v4 Programming Model Modern code-centric approach for TypeScript/JavaScript Python v2 Programming Model Decorator-based approach for Python functions Anti-Patterns ❌ Blocking Async Calls ❌ New HttpClient Per Request ❌ In-Process Model for New Projects ⚠️ Sharp Edges Issue Severity Solution Issue high Use async pattern with Durable Functions Issue high Use IHttpClientFactory (R...
111
7667 supabase-database nice-wolf-studio/claude-code-supabase-skills
Supabase Database Operations Overview This skill provides tools for working with Supabase database tables through the REST API. Supports SELECT queries with filtering, INSERT, UPDATE, DELETE operations, and calling RPC functions. Prerequisites Required environment variables: export SUPABASE_URL="https://your-project.supabase.co" export SUPABASE_KEY="your-anon-or-service-role-key" Helper script: This skill uses the shared Supabase API helper. Make sure to source it: source "$(dirname "${BA...
111
7668 security-review-2 zackkorman/skills
Security Review 2 Guidelines First, run npx skills add zackkorman/skills --skill security-review . This gives you the first version of this skill, which this skill uses. Do everything the first version of the skill says, then once you have done that also do the following: Dependency Analysis : Run npm audit or govulncheck to find vulnerable packages. Secret Scanning : Check for leaked API keys using grep or trivy . Static Analysis : Look for dangerous patterns like eval() , exec() , or unsanitiz...
111
7669 ralplan yeachan-heo/oh-my-claudecode
This is an alias for `/plan --consensus` Ralplan orchestrates three specialized agents—Planner, Architect, and Critic—in an iterative loop until consensus is reached on a comprehensive work plan. Usage ``` /oh-my-claudecode:ralplan [task] ``` What It Does Invokes the plan skill with --consensus mode, which: - Creates initial plan with Planner agent - Consults Architect for architectural questions - Reviews with Critic agent - Iterates until Critic approves (max 5 iterations) Implem...
111
7670 secondme-prd mindverse/second-me-skills
SecondMe 产品需求定义 通过对话式交互帮助开发者明确产品需求,根据已选功能模块针对性提问。 工具使用: 收集用户输入时使用 AskUserQuestion 工具,支持单选和多选问题。 前置条件检查 在开始之前,检查项目状态: 检查 .secondme/state.json 是否存在 不存在 → 提示: 请先运行 /secondme-init 初始化项目配置 存在 → 继续 检查 stage 字段 stage == "init" → 正常继续 PRD 对话 stage == "prd" 或 "ready" → 询问: 已有 PRD 定义,是否要重新定义需求? 用户确认 → 继续 用户取消 → 退出 对话流程 第一轮:展示 API 能力 读取 state.json 中的 modules 字段,根据已选模块展示相关 API 能力: auth 模块(必有) : 用户登录和授权 Access Token 和 Refresh Token 管理 用户身份验证 profile 模块 (如已选): 获取用户基础信息(昵称、头像) 获取用户兴趣标签(Shades) 获取用户软记忆/知识库 chat...
111
7671 legal-advisor 404kidwiz/claude-supercode-skills
Legal Advisor You are a legal advisor specializing in technology law, privacy regulations, and compliance documentation. Focus Areas Privacy policies (GDPR, CCPA, LGPD compliant) Terms of service and user agreements Cookie policies and consent management Data processing agreements (DPA) Disclaimers and liability limitations Intellectual property notices SaaS/software licensing terms E-commerce legal requirements Email marketing compliance (CAN-SPAM, CASL) Age verification and children's privac...
111
7672 ln-761-secret-scanner levnikolaevich/claude-code-skills
Scans codebase for hardcoded secrets and credentials, returning structured findings for remediation. Purpose & Scope - Detect hardcoded secrets using available tools (gitleaks, trufflehog) or manual patterns - Classify findings by severity (Critical/High/Medium/Low) - Filter false positives via baseline and allowlists - Provide remediation guidance per finding type - Return normalized report to parent orchestrator (ln-760) When to Use - During project bootstrap (via ln-760-security-set...
111
7673 framer-motion dylantarre/animation-principles
Framer Motion / Motion Animation Guidelines You are an expert in Framer Motion (now Motion), React, and TypeScript. Follow these guidelines when creating animations. Core Principles Import from the Correct Package Use import { motion } from "motion/react" for React projects (not "framer-motion" - this is outdated) The library was renamed from Framer Motion to Motion Always use the latest Motion API Performance-First Approach Animate transform properties (x, y, scale, rotate) and opacity for be...
111
7674 tilt 0xbigboss/claude-code
Before investigating issues or verifying deployments, check resource health: ``` Find errors and pending resources (primary health check) tilt get uiresources -o json | jq -r '.items[] | select(.status.runtimeStatus == "error" or .status.updateStatus == "error" or .status.updateStatus == "pending") | "\(.metadata.name): runtime=\(.status.runtimeStatus) update=\(.status.updateStatus)"' Quick status overview tilt get uiresources -o json | jq '[.items[].status.updateStatus] | group_by(.) | map(...
111
7675 tooluniverse-immune-repertoire-analysis mims-harvard/tooluniverse
ToolUniverse Immune Repertoire Analysis Comprehensive skill for analyzing T-cell receptor (TCR) and B-cell receptor (BCR) repertoire sequencing data to characterize adaptive immune responses, clonal expansion, and antigen specificity. Overview Adaptive immune receptor repertoire sequencing (AIRR-seq) enables comprehensive profiling of T-cell and B-cell populations through high-throughput sequencing of TCR and BCR variable regions. This skill provides an 8-phase workflow for: Clonotype identifica...
111
7676 ln-635-test-isolation-auditor levnikolaevich/claude-code-skills
Specialized worker auditing test isolation and detecting anti-patterns. Purpose & Scope - Worker in ln-630 coordinator pipeline - Audit Test Isolation (Category 5: Medium Priority) - Audit Anti-Patterns (Category 6: Medium Priority) - Check determinism (no flaky tests) - Calculate compliance score (X/10) Inputs (from Coordinator) Receives `contextStore` with isolation checklist, anti-patterns catalog, test file list. Workflow - Parse context - Check isolation for 6 categories - Ch...
111
7677 rocket-net-api jezweb/claude-skills
Rocket.net API Integration Build integrations with Rocket.net's managed WordPress hosting platform API. This skill covers authentication, site management, domain configuration, backups, plugins/themes, CDN cache control, and all 200+ API endpoints. API Overview Base URL : https://api.rocket.net/v1 Authentication : JWT token-based Obtain token via POST /login with email/password Token expires in 7 days Include in requests as Authorization: Bearer <token> Content Type : JSON API Required header: C...
111
7678 tooluniverse-phylogenetics mims-harvard/tooluniverse
Phylogenetics and Sequence Analysis Comprehensive phylogenetics and sequence analysis using PhyKIT, Biopython, and DendroPy. Designed for bioinformatics questions about multiple sequence alignments, phylogenetic trees, parsimony, molecular evolution, and comparative genomics. IMPORTANT : This skill handles complex phylogenetic workflows. Most implementation details have been moved to references/ for progressive disclosure. This document focuses on high-level decision-making and workflow orchestr...
111
7679 product-analyst daffy0208/ai-dev-standards
Product Analyst Measure user behavior and product health to inform data-driven decisions. Core Principle What gets measured gets improved. Define the right metrics, track them relentlessly, and act on insights quickly. North Star Metric The ONE metric that best captures value delivered to users. Your North Star should: ✅ Represent real customer value ✅ Correlate with revenue ✅ Be measurable frequently (daily/weekly) ✅ Rally the entire team around one goal Examples by Product Type: Commu...
111
7680 components-build nolly-studio/components-build-skill
Comprehensive guidelines for building modern, composable, and accessible UI components. Contains 16 rule categories covering everything from core principles to distribution, co-authored by Hayden Bleasel and shadcn. When to Apply Reference these guidelines when: - Creating new React components or component libraries - Designing component APIs and prop interfaces - Implementing accessibility features (keyboard, ARIA, focus management) - Building composable component architectures - Stylin...
111
7681 website-cloner horuz-ai/claude-plugins
Website Cloner Skill Clone any website with pixel-perfect fidelity using an orchestrated multi-agent workflow. Overview This skill provides a complete system for cloning websites: Slash command : /clone-website <url> orchestrates the entire workflow 4 specialized sub-agents : Each handles a specific phase Output : Single React component using Tailwind CSS + motion Architecture ┌─────────────────────────────────────────┐ │ ORCHESTRATOR (/clone-website) │ │ Delegates, doesn't code ...
111
7682 blockchain-developer 404kidwiz/claude-supercode-skills
Use this skill when Working on blockchain developer tasks or workflows Needing guidance, best practices, or checklists for blockchain developer Do not use this skill when The task is unrelated to blockchain developer 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-playb...
111
7683 tooluniverse-gwas-drug-discovery mims-harvard/tooluniverse
GWAS-to-Drug Target Discovery Transform genome-wide association studies (GWAS) into actionable drug targets and repurposing opportunities. IMPORTANT : Always use English terms in tool calls. Respond in the user's language. Overview This skill bridges genetic discoveries from GWAS with drug development by: Identifying genetic risk factors - Finding genes associated with diseases Assessing druggability - Evaluating which genes can be targeted by drugs Prioritizing targets - Ranking candidates by g...
111
7684 tanstack form exceptionless/exceptionless
TanStack Form Documentation: tanstack.com/form | Use context7 for API reference Use TanStack Form ( @tanstack/svelte-form ) with Zod for form state management. Zod Schema Generation Schemas are generated from backend models and extended in feature slices: // Generated in $generated/schemas.ts (auto-generated from backend) export const LoginSchema = object ( { email : email ( ) , password : string ( ) } ) ; export type LoginFormData = Infer < typeof LoginSchema > ; // Extended in feature schemas....
111
7685 feishu-cli-export riba2534/feishu-cli
飞书文档导出技能 将飞书云文档或知识库文档导出为本地 Markdown 文件,或导出为 PDF/Word 等格式。 前置条件 需要已配置飞书应用凭证( FEISHU_APP_ID / FEISHU_APP_SECRET ),通过环境变量或 ~/.feishu-cli/config.yaml 设置 应用需具备 docx:document 权限(文档导出)或 wiki:wiki:readonly 权限(知识库导出) 使用 --expand-mentions 展开 @用户时,还需 contact:user.base:readonly 权限 核心概念 Markdown 作为中间格式 :飞书云文档的内容通过 Markdown 格式导出到本地。选择 Markdown 作为中间格式,是因为它结构清晰、便于 Claude 理解和处理文档内容,同时也方便用户进行二次编辑或版本管理。中间文件默认存储在 /tmp 目录中。 使用方法 导出普通文档 /feishu-export < document_id > /feishu-export < document_id > ./output.md 导出知识库...
111
7686 ask-questions-if-underspecified skillcreatorai/ai-agent-skills
Ask Questions If Underspecified When to Use Use this skill when a request has multiple plausible interpretations or key details (objective, scope, constraints, environment, or safety) are unclear. When NOT to Use Do not use this skill when the request is already clear, or when a quick, low-risk discovery read can answer the missing details. Goal Ask the minimum set of clarifying questions needed to avoid wrong work; do not start implementing until the must-have questions are answered (or th...
111
7687 ln-302-task-replanner levnikolaevich/claude-code-skills
Worker that re-syncs existing tasks to the latest requirements for any task type. Purpose & Scope - Load full existing task descriptions from Linear - Compare them with orchestrator-provided IDEAL plan (implementation/refactoring/test) - Decide operations (KEEP/UPDATE/OBSOLETE/CREATE) and execute - Drop NFR items; only functional scope remains - Update Linear issues and kanban_board.md accordingly Task Storage Mode | Load existing | `get_issue(task_id)` per task | `Read("docs/tasks/e...
111
7688 dependency-upgrade sickn33/antigravity-awesome-skills
Dependency Upgrade Master major dependency version upgrades, compatibility analysis, staged upgrade strategies, and comprehensive testing approaches. When to Use This Skill Upgrading major framework versions Updating security-vulnerable dependencies Modernizing legacy dependencies Resolving dependency conflicts Planning incremental upgrade paths Testing compatibility matrices Automating dependency updates Semantic Versioning Review MAJOR.MINOR.PATCH (e.g., 2.3.1) MAJOR: Breaking changes MINOR...
111
7689 pptx-official sickn33/antigravity-awesome-skills
PPTX creation, editing, and analysis Overview A user may ask you to create, edit, or analyze the contents of a .pptx file. A .pptx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks. Reading and analyzing content Text extraction If you just need to read the text contents of a presentation, you should convert the document to markdown: Convert document to markdown python -m mark...
111
7690 english-learner learnwy/skills
English Learner Personal vocabulary learning assistant with persistent storage and mastery tracking. Keywords (Special Commands) Keyword Action 学习 / review / quiz Start interactive learning session stats / 统计 Show learning statistics All other input is treated as content to translate/learn (English, Chinese, or mixed). Workflow 1. CHECK KEYWORD → If "学习"/"review"/"quiz" → Learning Mode 2. PARSE INPUT → Understand user intent (clarify if ambiguous) 3. IDENTIFY CONTENT → Extract word(s)/ph...
111
7691 game-facilitator jwynia/agent-skills
Game Facilitator: Narrative RPG Skill You facilitate narrative RPG experiences—running scenes, portraying NPCs, describing the world, and maintaining story coherence while honoring player agency. Your role is to create emergent stories collaboratively, not to execute a predetermined plot. Core Principle The story belongs to everyone at the table. You are not the author of a fixed story the players must discover. You are a collaborator creating story together. Your job is to: Make the world ...
111
7692 sred-project-organizer getsentry/skills
SRED Project Organization SRED expects projects to be presented in a particular format. Take the list of projects that have been worked on in the past year, and summarize them into the format expected by SRED, with the supporting evidence. Outputs a Notion document with a child document for each SREDable project. Prerequisites Before starting make sure that Github, Notion and Linear can be accessed. Notion and Linear should be connected using an MCP. Github can be connected with an MCP, but if y...
111
7693 crap-analysis aaronontheweb/dotnet-skills
Use this skill when: - Evaluating code quality and test coverage before changes - Identifying high-risk code that needs refactoring or testing - Setting up coverage collection for a .NET project - Prioritizing which code to test based on risk - Establishing coverage thresholds for CI/CD pipelines What is CRAP? CRAP Score = Complexity x (1 - Coverage)^2 The CRAP (Change Risk Anti-Patterns) score combines cyclomatic complexity with test coverage to identify risky code. | < 5 | Low | We...
111
7694 ethical-hacking-methodology sickn33/antigravity-awesome-skills
Ethical Hacking Methodology Purpose Master the complete penetration testing lifecycle from reconnaissance through reporting. This skill covers the five stages of ethical hacking methodology, essential tools, attack techniques, and professional reporting for authorized security assessments. Prerequisites Required Environment Kali Linux installed (persistent or live) Network access to authorized targets Written authorization from system owner Required Knowledge Basic networking concepts Linux comm...
111
7695 query-writing langchain-ai/deepagents
Query Writing Skill When to Use This Skill Use this skill when you need to answer a question by writing and executing a SQL query. Workflow for Simple Queries For straightforward questions about a single table: Identify the table - Which table has the data? Get the schema - Use sql_db_schema to see columns Write the query - SELECT relevant columns with WHERE/LIMIT/ORDER BY Execute - Run with sql_db_query Format answer - Present results clearly Workflow for Complex Queries For questions requ...
111
7696 symfony:test-doubles-mocking makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:test-doubles-mocking<div
111
7697 commit-hygiene alinaqi/claude-bootstrap
Commit Hygiene Skill Load with: base.md Purpose: Keep commits atomic, PRs reviewable, and git history clean. Advise when it's time to commit before changes become too large. Core Philosophy ┌─────────────────────────────────────────────────────────────────┐ │ ATOMIC COMMITS │ │ ───────────────────────────────────────────────────────────── │ │ One logical change per commit. │ │ Each commit should be self-con...
111
7698 phoenix-liveview bobmatnyc/claude-mpm-skills
Phoenix + LiveView (Elixir/BEAM) Phoenix builds on Elixir and the BEAM VM to deliver fault-tolerant, real-time web applications with minimal JavaScript. LiveView keeps UI state on the server while streaming HTML diffs over WebSockets. The BEAM provides lightweight processes, supervision trees, hot code upgrades, and soft-realtime scheduling. Key ideas OTP supervision keeps web, data, and background processes isolated and restartable. Contexts encode domain boundaries (e.g., Accounts, Billing)...
111
7699 figma-designer charon-fan/agent-playbook
"Transform Figma designs into implementation-ready specifications with pixel-perfect accuracy" Overview This skill analyzes Figma designs through the Figma MCP server and generates detailed PRDs with precise visual specifications. It extracts design tokens, component specifications, and layout information that developers can implement directly. Prerequisites Figma MCP Server Ensure the Figma MCP server is connected and accessible: ``` Check if Figma MCP is available mcp-list ``` If n...
111
7700 ln-783-container-launcher levnikolaevich/claude-code-skills
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-780-bootstrap-verifier Purpose Builds Docker images, launches containers, and performs comprehensive health verification using Docker native health checks and retry strategies. Scope: - Detect and validate docker-compose.yml configuration - Build Docker images - Launch containers with proper startup order - Verify container health using native health checks - Provide access URLs and cleanup instructions Out of Scope: - Buildin...
111