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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
18401 task-orchestration nickcrew/claude-ctx-plugin
Resources scripts/ validate-orchestration.sh references/ agent-assignment-guide.md Task Orchestration Protocol The task orchestration protocol defines how the GoodVibes orchestrator decomposes feature requests into agent tasks, assigns agents and skills, manages parallel execution, and interacts with the runtime engine's WRFC chain system. This is the orchestrator's primary workflow for multi-agent feature delivery. When to Use This Skill Use this skill when: User provides a feature request requ...
39
18402 pm2 marcfargas/skills
PM2 — Process Manager PM2 keeps processes alive, restarts them on crash, and provides monitoring/logging. Use for long-running services, persistent agents, background workers. Not for detached terminals — use holdpty when you need PTY output, attach/view, or interactive sessions. Not for ephemeral tasks — use pi -p > file & for quick fire-and-forget agent runs. Quick Reference Start a process Simple pm2 start server.js --name myapp With interpreter pm2 start script.py --interpreter python3 --n...
39
18403 azure-keyvault-py sickn33/antigravity-awesome-skills
Azure Key Vault SDK for Python Secure storage and management for secrets, cryptographic keys, and certificates. Installation Secrets pip install azure-keyvault-secrets azure-identity Keys (cryptographic operations) pip install azure-keyvault-keys azure-identity Certificates pip install azure-keyvault-certificates azure-identity All pip install azure-keyvault-secrets azure-keyvault-keys azure-keyvault-certificates azure-identity Environment Variables AZURE_KEYVAULT_URL = https:// < vault-name...
39
18404 lorem-ipsum-generator dkyazzentwatwa/chatgpt-skills
Generate placeholder text for mockups, wireframes, and testing purposes. Features - Classic Lorem: Traditional lorem ipsum text - Multiple Formats: Paragraphs, sentences, words, lists - Custom Length: Specify exact word/sentence/paragraph counts - HTML Output: Generate with HTML tags - Alternative Sources: Hipster, bacon, corporate ipsum variations - Templates: Fill templates with placeholder text Quick Start ``` from lorem_gen import LoremGenerator gen = LoremGenerator() Generate ...
39
18405 team-lifecycle catlog22/claude-code-workflow
Team Lifecycle Orchestrator Full lifecycle team orchestration for specification, implementation, and testing workflows. The orchestrator drives a multi-agent pipeline through five phases: requirement clarification, session initialization, task chain creation, pipeline coordination (spawn/wait/close loop), and completion reporting. Key design principles: Inline discuss subagent : Produce roles (analyst, writer, reviewer) call a discuss subagent internally rather than spawning a dedicated discussi...
39
18406 cache-components zoonk/zoonk
Next.js Cache Components Auto-activation : This skill activates automatically in projects with cacheComponents: true in next.config. Project Detection When starting work in a Next.js project, check if Cache Components are enabled: Check next.config.ts or next.config.js for cacheComponents grep -r "cacheComponents" next.config.* 2 > /dev/null If cacheComponents: true is found, apply this skill's patterns proactively when: Writing React Server Components Implementing data fetching Creating Server...
39
18407 magento-upgrade-specialist maxnorm/magento2-agent-skills
Magento 2 Upgrade Specialist Expert specialist in ensuring smooth, risk-free transitions between Magento versions while maintaining business continuity and preserving custom functionality. When to Use Upgrading Magento 2 versions (minor or major) Migrating from Magento 1.x to Magento 2.x Planning upgrade strategies and timelines Assessing extension compatibility Handling breaking changes Post-upgrade optimization Upgrade Process Framework 1. Pre-Upgrade Assessment Current System Audit : Comprehe...
39
18408 pachca-users pachca/openapi
pachca-users Quick start Ask user for Pachca token (bot: Automations → Integrations → API, or user: Automations → API). Run commands with npx @pachca/cli and --token flag: npx @pachca/cli <command> --token $PACHCA_TOKEN Or set PACHCA_TOKEN for multiple commands: export PACHCA_TOKEN=<token> npx @pachca/cli <command> Help: npx @pachca/cli --help | Scenarios: npx @pachca/cli guide After successful use, suggest installing CLI globally: npm install -g @pachca/cli && pachca auth login --token $PACHCA_...
39
18409 lightweight-flutter-animations rodydavis/skills
Lightweight Flutter Animations Overview First we need to create the abstract class: abstract class AnimationWidget<T extends StatefulWidget> extends State<T> with SingleTickerProviderStateMixin { Duration elapsed = Duration.zero; Duration delta = Duration.zero; late final Ticker ticker; BoxConstraints constraints = const BoxConstraints.tightFor(); @override void initState() { super.initState(); ticker = createTicker((elapsed) { delta = elapsed - this.elapsed; this.elapsed = elapsed; update(elaps...
39
18410 ai-dev-tools-sync duc01226/easyplatform
AI Dev Tools Sync Synchronize Claude Code and GitHub Copilot configurations to maintain feature parity. When to Use Activate this skill when: User asks to update Claude Code or Copilot setup User wants to add/modify skills, prompts, agents, or instructions User wants both tools to work similarly User asks about AI dev tool configuration Quick Reference Claude Code GitHub Copilot Location SKILL.md SKILL.md .claude/skills/ + .github/skills/ commands/*.md prompts/*.prompt.md .claude/commands/ +...
39
18411 convex-helpers-guide get-convex/convex-agent-plugins
Convex Helpers Guide Use convex-helpers to add common patterns and utilities to your Convex backend without reinventing the wheel. What is convex-helpers? convex-helpers is the official collection of utilities that complement Convex. It provides battle-tested patterns for common backend needs. Installation: npm install convex-helpers Available Helpers 1. Relationship Helpers Traverse relationships between tables in a readable, type-safe way. Use when: Loading related data across tables Following...
39
18412 werk checkmk/checkmk
Werk Creation Skill You are a specialized agent that creates Checkmk werks (changelog entries) by analyzing code changes and generating Checkmk-user-facing documentation. The caller of this skill is most likely a member of the Checkmk development department and the author of, or expert for the underlying code changes. We will refer to the caller of the skill as "dev", and to the target audience (Checkmk-user) of the Werks as "user". Overview Werks are Markdown files in .werks/ that document feat...
39
18413 create-skill dotnet/skills
Create Skill Guide for creating effective skills that extend agent capabilities with specialized knowledge, workflows, and tool integrations. About Skills Skills are modular, self-contained packages that extend agent capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks. What Skills Provide Specialized workflows - Multi-step procedures for specific domains Tool integrations - Instructions for working with spe...
39
18414 pagerduty-automation davepoon/buildwithclaude
PagerDuty Automation via Rube MCP Automate PagerDuty incident management and operations through Composio's PagerDuty toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/pagerduty Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active PagerDuty connection via RUBE_MANAGE_CONNECTIONS with toolkit pagerduty Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API ...
39
18415 safe-action-testing next-safe-action/skills
Testing next-safe-action Testing Actions Directly Server actions are async functions — call them directly in tests: // src/__tests__/actions.test.ts import { describe , it , expect , vi } from "vitest" ; import { createUser } from "@/app/actions" ; describe ( "createUser" , ( ) => { it ( "returns user data on valid input" , async ( ) => { const result = await createUser ( { name : "Alice" , email : "alice@example.com" } ) ; expect ( result . data ) . toEqual ( { id : expect . any ( String ) , na...
39
18416 nextjs-architecture 89jobrien/steve
Next.js Architecture This skill provides Next.js architecture expertise including App Router, Server Components, performance optimization, and migration strategies. When to Use This Skill When designing Next.js application architecture When migrating from Pages Router to App Router When implementing Server Components When optimizing Next.js performance When making Next.js architecture decisions When building full-stack Next.js applications What This Skill Does Architecture Design: Designs Next...
39
18417 resource mwguerra/claude-code-plugins
FilamentPHP Resource Generation Skill Overview This skill generates complete FilamentPHP v4 resources including form schemas, table configurations, relation managers, and custom pages. All generated code follows official documentation patterns. Documentation Reference CRITICAL: Before generating any resource, read: /home/mwguerra/projects/mwguerra/claude-code-plugins/filament-specialist/skills/docs/references/general/03-resources/ /home/mwguerra/projects/mwguerra/claude-code-plugins/filament-spe...
39
18418 relational-database-mcp-cloudbase tencentcloudbase/cloudbase-mcp
When to use this skill Use this skill when an agent needs to operate on CloudBase Relational Database via MCP tools , for example: Inspecting or querying data in tables Modifying data or schema (INSERT/UPDATE/DELETE/DDL) Reading or changing table security rules Do NOT use this skill for: Building Web or Node.js applications that talk to CloudBase Relational Database (use the Web/Node Relational Database skills) Auth flows or user identity (use the Auth skills) How to use this skill (for a coding...
39
18419 background-jobs cosmix/loom
Background Jobs Overview Background jobs enable asynchronous processing of tasks outside the request-response cycle. This skill covers job queue patterns, scheduling, worker management, retry strategies, and monitoring for reliable task execution across different frameworks and languages. Key Concepts Job Queue Patterns Bull Queue (Node.js/Redis) : import Queue , { Job , JobOptions } from "bull" ; import { Redis } from "ioredis" ; // Queue configuration interface QueueConfig { name : string ; re...
39
18420 kubernetes-configmap-handler jeremylongshore/claude-code-plugins-plus-skills
Kubernetes Configmap Handler Purpose This skill provides automated assistance for kubernetes configmap handler tasks within the DevOps Advanced domain. When to Use This skill activates automatically when you: Mention "kubernetes configmap handler" in your request Ask about kubernetes configmap handler patterns or best practices Need help with advanced devops skills covering kubernetes, terraform, advanced ci/cd, monitoring, and infrastructure as code. Capabilities Provides step-by-step guida...
39
18421 territory-mapper dkyazzentwatwa/chatgpt-skills
Visualize sales territories, coverage areas, and service regions on interactive maps with customizable boundaries and styling. Purpose Territory visualization for: - Sales territory assignment and planning - Service area coverage mapping - Market analysis and expansion - Delivery zone visualization - Regional performance tracking Features - Territory Polygons: Draw custom boundaries - Color Coding: Color by performance, team, status - Interactive Maps: Zoom, pan, tooltips - Data Ov...
39
18422 replay-playwright replayio/skills
replay-playwright Description: Use when the user wants to set up Replay for Playwright tests, configure the Replay Playwright plugin, or run Playwright tests with the Replay Browser. Examples: "set up replay for my playwright tests", "record my playwright tests", "configure replay playwright plugin", "run tests with replay browser". Instructions: You are helping the user set up and run Playwright tests with the Replay Browser. Here is the complete reference: Installation 1. Install the Replay Pl...
39
18423 api-endpoint-generator patricio0312rev/skills
API Endpoint Generator Generate production-ready CRUD API endpoints with validation and type safety. Core Workflow Define resource: Entity name and schema Generate routes: POST, GET, PUT/PATCH, DELETE endpoints Add validation: Request body/query validation with Zod/Joi Type responses: TypeScript interfaces for all responses Error handling: Consistent error responses Documentation: OpenAPI/Swagger specs Examples: Request/response samples Express + TypeScript Pattern // types/user.types.ts expor...
39
18424 ai-proofreading alchaincyf/glm-claude
AI味审校 何时使用此Skill 当用户出现以下任一需求时,使用此技能: 提到内容"AI味太重"、"像AI写的"、"太机械" 要求"降低AI检测率"、"更像人写的"、"自然一些" 需要"口语化"、"有温度"、"接地气"的表达 内容被AI检测工具标记为高AI概率 希望文章更具个性和真实感 核心目标 通过系统化的三遍审校流程,将内容的AI检测率从80-100%降低至30%以下,让文章更具人味和真实性。 执行流程 第一遍:内容结构调整 (P0级检查) 目标:修复明显的AI结构特征 检查要点: 避免教科书式结构 ❌ "首先...其次...最后..."的机械结构 ✅ 使用自然的转折和过渡 避免定义式开头 ❌ "什么是XX?XX是指..." ✅ 直接切入主题或使用引子开头 避免总结式结尾 ❌ "综上所述,总而言之..." ✅ 自然收尾或留有余韵 增加个人化表达 插入个人观点、经历、感受 使用"我觉得"、"在我看来"等表达 第二遍:语言风格优化 (P1级检查) 目标:让语言更自然、更有温度 检查要点: 替换书面化词汇 ❌ "进行"、"实现"、"提供" ✅ "做"、...
39
18425 cook duc01226/easyplatform
[IMPORTANT] Use TaskCreate to break ALL work into small tasks BEFORE starting — including tasks for each file read. This prevents context loss from long files. For simple tasks, AI MUST ask user whether to skip. Prerequisites: MUST READ .claude/skills/shared/understand-code-first-protocol.md before executing. docs/project-reference/domain-entities-reference.md — Domain entity catalog, relationships, cross-service sync (read when task involves business entities/models) docs/test-specs/ — Test spe...
39
18426 rails-design-system pproenca/dot-skills
Community Ruby on Rails Design System Best Practices Comprehensive design system guide for Ruby on Rails applications, maintained by Community. Contains 51 rules across 9 categories, prioritized by impact to guide automated refactoring and code generation. Covers the full Rails frontend stack: Turbo (Drive, Frames, Streams), Stimulus, ERB partials, design tokens, form builders, and view helpers. Complements rails-dev (controllers, models, queries) and tailwind (CSS patterns) by covering the syst...
39
18427 scaffold-nextjs mblode/agent-skills
Scaffold Next.js Scaffold a Next.js turborepo with full tooling, GitHub, and Vercel deployment. Reference Files File Read When references/app-setup.md Default: create-next-app flags, shadcn + Blode registry setup, Agentation, Ultracite commands and code patches references/turbo-configs.md Default: root package.json, turbo.json, biome.jsonc, .gitignore, knip.json, next.config.ts references/deploy-and-launch.md After Phase 6: GitHub setup, Vercel deployment, favicon, OG images, pre-launch checklis...
39
18428 customer-health-analyst ncklrs/startup-os-skills
Customer Health Analyst Expert guidance for customer health scoring, predictive analytics, and data-driven customer success strategies. Transform raw customer data into actionable insights that prevent churn and drive expansion. Philosophy Customer health is not a single metric — it's a predictive system: Measure what matters — Health scores should predict outcomes, not just track activity Lead, don't lag — Focus on indicators that predict churn before it's too late Segment for action — Differen...
39
18429 code-review-patterns romiluz13/cc10x
Code Review Patterns Overview Code reviews catch bugs before they ship. But reviewing code quality before functionality is backwards. Core principle: First verify it works, THEN verify it's good. Signal Quality Rule Flag ONLY when certain. False positives erode trust and waste remediation cycles. Flag Do NOT Flag Will fail to compile/parse (syntax, type, import errors) Style preferences not in project guidelines Logic error producing wrong results for all inputs Potential issues dependent on spe...
39
18430 varlock wrsmith108/varlock-claude-skill
Varlock Security Skill Secure-by-default environment variable management for Claude Code sessions. Repository : https://github.com/dmno-dev/varlock Documentation : https://varlock.dev Core Principle: Secrets Never Exposed When working with Claude, secrets must NEVER appear in: Terminal output Claude's input/output context Log files or traces Git commits or diffs Error messages This skill ensures all sensitive data is properly protected. CRITICAL: Security Rules for Claude Rule 1: Never Echo Secr...
39
18431 gtm-strategy aimonk2025/google-tag-manager-automation
GTM Strategy Overview Create a comprehensive go-to-market strategy for a product launch. This skill covers marketing channels, messaging development, success metrics definition, and launch planning. When to Use Planning a product launch Creating a GTM plan from scratch Defining a launch strategy for a new market Developing product-to-market fit strategy Preparing a product go-live roadmap How It Works Step 1: Gather Research Data The system will help you load and analyze early research about you...
39
18432 jira-automation davepoon/buildwithclaude
Jira Automation via Rube MCP Automate Jira operations through Composio's Jira toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/jira Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Jira connection via RUBE_MANAGE_CONNECTIONS with toolkit jira Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Veri...
39
18433 browser-use gregpr07/browser-use
Browser Automation with browser-use CLI The browser-use command provides fast, persistent browser automation. It maintains browser sessions across commands, enabling complex multi-step workflows. Prerequisites Before using this skill, browser-use must be installed and configured. Run diagnostics to verify: browser-use doctor For more information, see https://github.com/browser-use/browser-use/blob/main/browser_use/skill_cli/README.md Core Workflow Navigate : browser-use open <url> - Opens URL (s...
39
18434 twitter-automation davepoon/buildwithclaude
Twitter/X Automation Automate Twitter/X via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Post a tweet infsh app run x/post-tweet --input '{"text": "Hello from inference.sh!"}' Available Apps App App ID Description Post Tweet x/post-tweet Post text tweets Create Post x/post-create Post with media Like Post x/post-like Like a tweet Retweet x/post-retweet Retweet a post Delete Post x/pos...
39
18435 openspec-explore partme-ai/openspec-skills
OpenSpec Explore Skill Use /opsx:explore to think through ideas, investigate problems, compare options, and clarify requirements — all without creating any artifacts or committing to a structure. When insights crystallize, transition to openspec-new or openspec-ff . When to Use Requirements are unclear and the user needs to investigate first. Comparing multiple approaches before deciding on one. The user wants to explore the codebase for improvement opportunities. Brainstorming before a formal c...
39
18436 analyzing-liquidity-pools jeremylongshore/claude-code-plugins-plus-skills
Analyzing Liquidity Pools Overview Analyze DEX liquidity pools across Uniswap, Curve, and Balancer to evaluate TVL, trading volume, fee income, and impermanent loss risk. Compare pools across protocols and chains to identify optimal LP opportunities. Prerequisites Python 3.8+ installed Internet access for subgraph/API queries Understanding of liquidity providing concepts (IL, fee tiers, TVL) Instructions Analyze a specific pool by address or token pair: python ${CLAUDE_SKILL_DIR} /scripts/pool_a...
39
18437 threat-modeling-techniques nickcrew/claude-ctx-plugin
Threat Modeling Techniques Systematic framework for identifying, analyzing, and mitigating security threats during system design and architecture phases using proven methodologies like STRIDE, attack trees, and risk assessment frameworks. When to Use This Skill Designing new systems or features with security requirements Conducting security architecture reviews Identifying attack vectors and threat scenarios Assessing security risks before implementation Creating security requirements and cont...
39
18438 azure-mgmt-botservice-dotnet sickn33/antigravity-awesome-skills
Azure.ResourceManager.BotService (.NET) Management plane SDK for provisioning and managing Azure Bot Service resources via Azure Resource Manager. Installation dotnet add package Azure.ResourceManager.BotService dotnet add package Azure.Identity Current Versions : Stable v1.1.1, Preview v1.1.0-beta.1 Environment Variables AZURE_SUBSCRIPTION_ID = < your-subscription-id > For service principal auth (optional) AZURE_TENANT_ID = < tenant-id > AZURE_CLIENT_ID = < client-id > AZURE_CLIENT_SECRET = < ...
39
18439 octocode-documentation-writer bgauryy/octocode-mcp
Repository Documentation Generator Production-ready 6-phase pipeline with intelligent orchestration, research-first validation, and conflict-free file ownership. <phase_2> Engineer Questions (Phase 2) Agent: Opus What: Generates comprehensive questions based on the analysis Input: analysis.json Output: questions.json </phase_2> <phase_3> Research Agent (Phase 3) 🆕 Agent: Sonnet Parallel: Dynamic (based on question volume) What: Deep-dive code forensics to ANSWER the questions with evidence Input...
39
18440 ralph-loop-template 2ykwang/agent-skills
Input $ARGUMENTS Instructions Step 1: Gather Plan If an argument is provided : Read the file to understand the plan content. If no argument : Search for a plan in the following order: Search for plan files in the project root: PLAN.md , plan.md , PLAN-*.md , plan-*.md , TODO.md , prd.md , PRD.md 1 found → Use it (inform the user which file was detected) Multiple found → Present the list and ask for selection 0 found → Proceed to next step Use the plan discussed in the current conversation contex...
39
18441 ecpay paid-tw/skills
綠界科技整合指南 🚧 開發中 快速開始 環境設定 測試環境: 測試 URL: https://payment-stage.ecpay.com.tw/ 測試商店代號: 2000132 正式環境: 正式 URL: https://payment.ecpay.com.tw/ 支援的支付方式 信用卡(一次付清、分期) ATM 轉帳 超商代碼/條碼 電子發票 參考資源 ECPay 官方文件 詳細 API 說明與錯誤碼對照將於後續版本提供 相關 Skills /payment-help - 查看所有可用的支付 skills /newebpay - 藍新金流串接 /payuni - PAYUNi 統一金流串接
39
18442 internal-comms-anthropic sickn33/antigravity-awesome-skills
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
39
18443 digital-estate-planner erichowens/some_claude_skills
Digital Estate Planner A comprehensive guide for organizing your digital life so that in the event of death, incapacity, or emergency, your loved ones can access what they need without guessing passwords, hunting for accounts, or losing irreplaceable data. Core Philosophy We plan for physical death but ignore digital death. This skill helps you: Document accounts and access methods systematically Designate what should happen to digital assets Preserve important data and memories Create clear...
39
18444 network-engineering 89jobrien/steve
Comprehensive network engineering skill covering network design, troubleshooting, load balancing, DNS, and network security. When to Use This Skill - Designing network topologies - Troubleshooting connectivity issues - Configuring load balancers - DNS configuration and troubleshooting - SSL/TLS setup and debugging - Network security implementation - Performance optimization - CDN configuration Network Architecture OSI Model Reference | 7 | Application | HTTP, DNS, SMTP | curl, ...
39
18445 ce:brainstorm everyinc/compound-engineering-plugin
Brainstorm a Feature or Improvement Note: The current year is 2026. Use this when dating requirements documents. Brainstorming helps answer WHAT to build through collaborative dialogue. It precedes /ce:plan , which answers HOW to build it. The durable output of this workflow is a requirements document . In other workflows this might be called a lightweight PRD or feature brief. In compound engineering, keep the workflow name brainstorm , but make the written artifact strong enough that planning ...
39
18446 alertmanager-rules-config jeremylongshore/claude-code-plugins-plus-skills
Alertmanager Rules Config Purpose This skill provides automated assistance for alertmanager rules config tasks within the DevOps Advanced domain. When to Use This skill activates automatically when you: Mention "alertmanager rules config" in your request Ask about alertmanager rules config patterns or best practices Need help with advanced devops skills covering kubernetes, terraform, advanced ci/cd, monitoring, and infrastructure as code. Capabilities Provides step-by-step guidance for aler...
39
18447 form-and-actions-in-sveltekit oimiragieo/agent-studio
Form And Actions In Sveltekit Skill Utilize SvelteKit's form actions for server-side form handling. Implement proper client-side form validation using Svelte's reactive declarations. Use progressive enhancement for JavaScript-optional form submissions. Memory Protocol (MANDATORY) Before starting: cat .claude/context/memory/learnings.md After completing: Record any new patterns or exceptions discovered. ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
39
18448 repomix julianobarbosa/claude-code-skills
Repomix Skill Repomix packs entire repositories into single, AI-friendly files. Perfect for feeding codebases to LLMs like Claude, ChatGPT, and Gemini. When to Use Use when: Packaging codebases for AI analysis Creating repository snapshots for LLM context Analyzing third-party libraries Preparing for security audits Generating documentation context Investigating bugs across large codebases Creating AI-friendly code representations Quick Start Check Installation repomix --version Install np...
39
18449 figma-ai teachingai/full-stack-skills
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
39
18450 xlsx teachingai/full-stack-skills
Requirements for Outputs All Excel files Professional Font Use a consistent, professional font (e.g., Arial, Times New Roman) for all deliverables unless otherwise instructed by the user Zero Formula Errors Every Excel model MUST be delivered with ZERO formula errors (REF!, DIV/0!, VALUE!, N/A, NAME?) Preserve Existing Templates (when updating templates) Study and EXACTLY match existing format, style, and conventions when modifying files Never impose standardized formatting on files with establi...
39