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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,986
总 Skills
176.0M
总安装量
2,763
贡献者
# Skill 仓库 描述 安装量
24901 packx johnlindquist/claude
PACKX - AI Context Bundler Bundle and filter code files for AI context. CRITICAL: Always Use --limit 49k MANDATORY: Every packx command MUST include --limit 49k unless the user explicitly requests a different limit. This is non-negotiable. Using 49k instead of 50k provides a safety buffer. CORRECT - always include --limit 49k packx --limit 49k -c src/ packx --limit 49k -s "pattern" -i "*.ts" -c WRONG - never omit the limit packx -c src/ NO! Missing --limit packx -s...
43
24902 api-design-reviewer borghei/claude-skills
API Design Reviewer Tier: POWERFUL Category: Engineering / Architecture Maintainer: Claude Skills Team Overview The API Design Reviewer skill provides comprehensive analysis and review of API designs, focusing on REST conventions, best practices, and industry standards. This skill helps engineering teams build consistent, maintainable, and well-designed APIs through automated linting, breaking change detection, and design scorecards. Core Capabilities 1. API Linting and Convention Analysis Resou...
43
24903 nextjs ovachiever/droid-tings
Next.js Best Practices Apply these rules when writing or reviewing Next.js code. File Conventions See file-conventions.md for: Project structure and special files Route segments (dynamic, catch-all, groups) Parallel and intercepting routes Middleware rename in v16 (middleware → proxy) RSC Boundaries Detect invalid React Server Component patterns. See rsc-boundaries.md for: Async client component detection (invalid) Non-serializable props detection Server Action exceptions Async Patterns Next.js ...
43
24904 audit-skills yonatangross/orchestkit
audit-skills Scans all src/skills/*/SKILL.md files and reports compliance with OrchestKit authoring standards. Each category has individual files in rules/ and references/ loaded on-demand. Quick Reference Category File Impact When to Use Audit Checks ${CLAUDE_PLUGIN_ROOT}/skills/audit-skills/rules/audit-checks.md HIGH What to validate per skill Status Rules ${CLAUDE_PLUGIN_ROOT}/skills/audit-skills/rules/audit-status.md MEDIUM PASS/WARN/FAIL classification Output Format ${CLAUDE_PLUGIN_ROOT}/sk...
43
24905 linear-roadmaps finesssee/linear-cli
Roadmaps List roadmaps linear-cli rm list linear-cli rm list --output json Get roadmap details linear-cli rm get ROADMAP_ID linear-cli rm get ROADMAP_ID --output json Flags Flag Purpose --output json JSON output --compact No formatting
43
24906 slidev-monaco-editor yoanbernabeu/slidev-skills
This skill covers integrating Monaco Editor (the editor powering VS Code) into your Slidev presentations for live coding, interactive demos, and executable code blocks. When to Use This Skill - Live coding demonstrations - Interactive code editing during presentations - Running code examples in real-time - Teaching programming concepts - Showing auto-completion and type hints Enabling Monaco Editor Basic Monaco Block Add `{monaco}` to any code block: ``` ```typescript {monaco} const...
43
24907 newsnow sorrycc/newsnow
newsnow CLI Fetch trending news and hot topics from 66 sources across 44 platforms. Returns news items with title, URL, and optional metadata. Run newsnow --help for usage details. Workflow Follow this pattern: List - Don't know what sources are available? List them first. Fetch - Know the source? Fetch news directly. JSON - Need structured data? Add --json for machine-readable output. Need Command When See all sources newsnow list Don't know source names See sources as JSON newsnow list --json ...
43
24908 readability humanizerai/agent-skills
Analyze Readability Calculate and display readability metrics for the provided text. Input The user provides text in $ARGUMENTS. If no text provided, ask for it. Metrics to Calculate Core Scores Metric Formula Interpretation Flesch Reading Ease 206.835 - 1.015(words/sentences) - 84.6(syllables/words) 0-100, higher = easier Flesch-Kincaid Grade 0.39(words/sentences) + 11.8(syllables/words) - 15.59 US grade level Gunning Fog Index 0.4[(words/sentences) + 100(complex words/words)] Years of educatio...
43
24909 openclaw-setup-assistant leroy-zhang/openclaw-setup-assistant
OpenClaw Assistant You are a friendly, patient setup guide helping a complete non-technical beginner install and configure OpenClaw. Your tone is warm and encouraging — like a knowledgeable friend walking them through it, not a manual. Core Principles Never execute any action before collecting and confirming all required information. Show the user a confirmation summary and wait for explicit approval. One step at a time. Complete and confirm each phase before moving to the next. If the user has ...
43
24910 csharp-async-patterns thebushidocollective/han
C Async Patterns Asynchronous programming in C enables writing responsive applications that efficiently handle I/O-bound and CPU-bound operations without blocking threads. The async/await pattern provides a straightforward way to write asynchronous code that looks and behaves like synchronous code. Async/Await Basics The async and await keywords transform synchronous-looking code into state machines that handle asynchronous operations. using System; using System.Net.Http; using System.Thread...
43
24911 orchestrated-sequences dylantarre/animation-principles
Orchestrated Sequences Orchestrated sequences coordinate multiple elements across time. Like a conductor directing an orchestra, you control when each element enters, how it moves, and how elements relate. Disney Principles for Orchestration Ensemble Coordination Squash & Stretch: Unified style - all elements should share consistent elasticity. Mix bouncy and stiff looks chaotic. Anticipation: Staggered preparation - lead element anticipates first, others follow in sequence. Staging: Clear ...
43
24912 ml-model-explainer dkyazzentwatwa/chatgpt-skills
Explain machine learning model predictions using SHAP and feature importance. Features - SHAP Values: Explain individual predictions - Feature Importance: Global feature rankings - Decision Paths: Trace prediction logic - Visualizations: Waterfall, force plots, summary plots - Multiple Models: Support for tree-based, linear, neural networks - Batch Explanations: Explain multiple predictions Quick Start ``` from ml_model_explainer import MLModelExplainer explainer = MLModelExplainer()...
43
24913 audio-trimmer dkyazzentwatwa/chatgpt-skills
Audio Trimmer Edit audio files with precise cutting, trimming, and effects. Extract segments, add fades, adjust speed, concatenate clips, and apply basic audio manipulations. Quick Start from scripts.audio_trimmer import AudioTrimmer Trim to segment trimmer = AudioTrimmer("podcast.mp3") trimmer.trim(start="00:05:30", end="00:10:00") trimmer.save("segment.mp3") Add fades and save trimmer = AudioTrimmer("song.mp3") trimmer.fade_in(3000).fade_out(5000).save("song_faded.mp3") Concatenate mul...
43
24914 router-qa vasilyu1983/ai-agents-public
Router: Quality Assurance Master orchestrator for quality engineering that routes testing, observability, resilience, debugging, and documentation quality questions through 12 specialized QA skills, with explicit handoffs when the request is outside QA scope (implementation, docs authoring, deployment). Quick Decision Tree QA QUESTION │ ├─► "What tests do I need?" ──────────► qa-testing-strategy │ └─► Test pyramid, coverage, risk-based │ ...
43
24915 groove-work-doc andreadellacorte/groove
groove-work-doc Use $ARGUMENTS as the doc topic if provided. Outcome A structured documentation file explaining how a component, concept, or pattern works — for future agents and humans picking up the codebase. Acceptance Criteria Doc file contains: Overview : What this component/concept is and what problem it solves Key Files : The most important files, with a one-line role for each How It Works : Step-by-step explanation of the main flow or logic Gotchas : Non-obvious constraints, edge cases, ...
42
24916 kamino sendaifun/skills
Kamino Finance Development Guide Build sophisticated DeFi applications on Solana with Kamino Finance - the comprehensive DeFi protocol offering lending, borrowing, automated liquidity management, leverage trading, and oracle aggregation. Overview Kamino Finance provides: Kamino Lend (K-Lend) : Lending and borrowing protocol with isolated markets Kamino Liquidity (K-Liquidity) : Automated CLMM liquidity management strategies Scope Oracle : Oracle price aggregator for reliable pricing Multiply/Lev...
42
24917 slidev-export yoanbernabeu/slidev-skills
This skill covers all export options in Slidev, including PDF, PPTX, PNG, and Markdown exports with various configuration options. When to Use This Skill - Sharing presentations without running Slidev - Creating PDF handouts - Archiving presentations - Printing slides - Converting to PowerPoint Export Methods Browser Exporter (Recommended) Since v0.50.0, use the built-in browser exporter: - Run your presentation: `npm run dev` - Open the Export panel from navigation bar - Or navig...
42
24918 curriculum-design pauljbernard/content
Learning Objectives & Curriculum Architecture Design Create measurable learning objectives aligned to Bloom's Taxonomy and design comprehensive curriculum architecture for systematic instruction. When to Use Automatically activate when the user: Needs to write learning objectives for a topic Asks "create learning objectives for [topic]" Wants to design curriculum scope and sequence Requests "backwards design" or "curriculum architecture" Says "organize this content into units" Needs UDL-alig...
42
24919 command-creator oimiragieo/agent-studio
Command Creator This skill guides the creation of Claude Code slash commands - reusable workflows that can be invoked with /command-name in Claude Code conversations. About Slash Commands Slash commands are markdown files stored in .claude/commands/ (project-level) or ~/.claude/commands/ (global/user-level) that get expanded into prompts when invoked. They're ideal for: Repetitive workflows (code review, PR submission, CI fixing) Multi-step processes that need consistency Agent delegation patter...
42
24920 pachca-profile pachca/openapi
pachca-profile 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 $PACHC...
42
24921 azure-servicebus-py sickn33/antigravity-awesome-skills
Azure Service Bus SDK for Python Enterprise messaging for reliable cloud communication with queues and pub/sub topics. Installation pip install azure-servicebus azure-identity Environment Variables SERVICEBUS_FULLY_QUALIFIED_NAMESPACE = < namespace > .servicebus.windows.net SERVICEBUS_QUEUE_NAME = myqueue SERVICEBUS_TOPIC_NAME = mytopic SERVICEBUS_SUBSCRIPTION_NAME = mysubscription Authentication from azure . identity import DefaultAzureCredential from azure . servicebus import ServiceBusClient ...
42
24922 summarize hkuds/nanobot
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 Show more Installs 1.7K Repository openclaw/openclaw GitHub Stars 386.0K First Seen Jan 30, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
42
24923 dispatching-parallel-agents zenobi-us/dotfiles
Dispatching Parallel Agents Overview You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work. When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequen...
42
24924 pdf-reader rightnow-ai/openfang
PDF Reader PDF ファイルをテキスト抽出して Markdown 形式に変換するスキルです。 クイックスタート 基本的な使い方 WSL環境でPythonスクリプトを実行 wsl python3 scripts/read_pdf.py "/mnt/c/path/to/file.pdf" Markdown形式で保存 スクリプトでテキスト抽出 Write ツールで .md ファイルに保存 前提条件 pdfplumber パッケージが必要です: wsl pip3 install pdfplumber 使用例 例1: PDF ファイルを読み込んで内容を表示 User: "C:\Users\keita\repos\guideline.pdf を読み込んで" Assistant: 1. Windowsパスを WSL パスに変換: /mnt/c/Users/keita/repos/guideline.pdf 2. wsl python3 scripts/read_pdf.py を実行 3. 抽出されたテキストを Markdown 形式で表示 例2: PDF を Markdown に変換して...
42
24925 claude-code marcusabu/claude-code-docs-plugin
Claude Code Knowledge Reference documentation for Claude Code features and configuration. When to Use This Skill Use when asked about: Creating or configuring skills, agents, hooks Setting up MCP servers Managing settings and permissions Using plugins and marketplaces Slash commands and CLI options Troubleshooting Claude Code issues Best practices for Claude Code configuration Documentation Reference The docs/ folder contains official Claude Code documentation: Getting Started: Overview - Introd...
42
24926 user-feedback-clarity dylantarre/animation-principles
User Feedback Clarity Make feedback animations unmissable using Disney's principles. Problem Indicators Users click multiple times (didn't see feedback) "Did it work?" questions Users miss success/error states Form submission confusion State changes go unnoticed Diagnosis by Principle Anticipation Issue: No buildup before action completes Fix: Show loading/processing state immediately. User should know their input was received. Follow Through Issue: Feedback appears and vanishes too quickly...
42
24927 figma-ui-design aaaaqwq/claude-code-skills
Figma UI 设计自动化 功能说明 此技能专门用于自动化 Figma 设计工作流,包括: 设计系统和组件库创建 自动化设计稿生成 设计资源导出 设计规范文档生成 Figma API 集成 设计到代码的转换 使用场景 "创建一个登录页面的 Figma 设计" "生成设计系统组件库" "从 Figma 导出所有图标" "将 Figma 设计转换为 React 组件" "自动化设计审查流程" "生成设计规范文档" 核心功能模块 1. 设计系统 颜色系统:定义品牌色、语义色、中性色 字体系统:字体家族、字号、行高、字重 间距系统:统一的间距规范(4px、8px、16px 等) 组件库:按钮、表单、卡片等可复用组件 图标库:统一的图标集合 2. 页面设计 布局设计:响应式布局、栅格系统 交互设计:原型和交互流程 动效设计:过渡动画和微交互 适配设计:多端适配(Web、移动端) 3. 资源导出 图片导出:PNG、JPG、SVG 格式 图标导出:SVG 图标和图标字体 切图导出:@1x、@2x、@3x 倍图 样式导出:CSS、SCSS 变量 4. 设计到代码 组件生成:React、Vue、A...
42
24928 skill-system-router arthur0824hao/skills
Skill System Router You are the Router. This skill teaches you how to orchestrate other skills. How It Works User goal → Read skills-index.json → Match capabilities → Read skill manifest → (Complex goal: plan with workflow) → Check policy → Execute entrypoints → Parse JSON output → Decide next step → Log Step 0: Bootstrap (First Run Only) Check if the project's AGENTS.md contains Skill System . If found: skip to Step 1 (already bootstrapped). If not found: follow scripts/bootstrap.md to embed t...
42
24929 frontend testing exceptionless/exceptionless
Frontend Testing Documentation: vitest.dev | testing-library.com Running Tests npm run test:unit Framework & Location Framework : Vitest + @testing-library/svelte Location : Co-locate with code as .test.ts or .spec.ts TDD workflow : When fixing bugs or adding features, write a failing test first AAA Pattern Use explicit Arrange, Act, Assert regions: import { describe , expect , it } from 'vitest' ; describe ( 'Calculator' , ( ) => { it ( 'should add two numbers correctly' , ( ) => { // Arrange c...
42
24930 custom-format-validators zaggino/z-schema
Custom Format Validators in z-schema JSON Schema format constrains string (or other) values beyond basic type checking. z-schema includes built-in validators and supports registering custom ones — both sync and async. Built-in formats z-schema ships with validators for all standard JSON Schema formats: Format Validates date RFC 3339 full-date ( 2024-01-15 ) date-time RFC 3339 date-time ( 2024-01-15T09:30:00Z ) time RFC 3339 time ( 09:30:00Z ) email RFC 5321 email address idn-email Internationali...
42
24931 radix-ui slanycukr/riot-api-project
Radix UI Primitives Skill Radix UI Primitives provides low-level, unstyled React components with built-in accessibility, keyboard navigation, and focus management. Perfect for building design systems and custom UI components. Quick Start Basic Dialog Example import * as Dialog from "@radix-ui/react-dialog"; import { Cross2Icon } from "@radix-ui/react-icons"; function BasicDialog() { return ( <Dialog.Root> <Dialog.Trigger asChild> <button className="btn-primary">Edit profil...
42
24932 fastapi-development manutej/luxor-claude-marketplace
FastAPI Development Overview Create fast, modern Python APIs using FastAPI with async/await support, automatic API documentation, type validation using Pydantic, dependency injection, JWT authentication, and SQLAlchemy ORM integration. When to Use Building high-performance Python REST APIs Creating async API endpoints Implementing automatic OpenAPI/Swagger documentation Leveraging Python type hints for validation Building microservices with async support Integrating Pydantic for data validatio...
42
24933 mobile-platform-specialist qodex-ai/ai-agent-skills
iOS Development Expert Purpose Provide expert guidance on iOS development covering Swift programming, UIKit, SwiftUI, Xcode, app architecture, platform features, and Apple ecosystem integration. When to Use Auto-invoke when users mention: iOS development or iPhone/iPad apps Swift programming language SwiftUI or UIKit frameworks Xcode IDE and development tools Apple platform features iOS-specific APIs and services App Store development Apple ecosystem integration iOS app architecture patterns...
42
24934 linkedin-authority-builder brianrwagner/ai-marketing-skills
LinkedIn Authority Builder Here's what most people get wrong about LinkedIn: they're trying to go viral. Viral doesn't pay your bills. Being remembered by the right 500 people when they need what you do — that pays your bills. This skill builds a content system around consistent positioning and clear pillars — not hacks. Mode Detect from context or ask: "Starter plan, full content system, or 90-day build?" Mode What you get Best for quick 3 content pillars + 1-week posting starter plan Getting u...
42
24935 council-review trancong12102/agentskills
Council Review Run Codex and Claude's own /review in parallel, then cross-validate and synthesize into one unified report — like a review board where two reviewers examine the code independently, and Claude as lead reviewer delivers the final opinion. Prerequisites Codex CLI : Install with npm i -g @openai/codex , authenticate with codex login If only one CLI is installed, fall back to the available reviewer with a warning — the review still has value with fewer perspectives, so don't fail entir...
42
24936 swain-doctor cristoslc/swain
Doctor Session-start health checks for swain projects. Validates and repairs health across all swain skills — governance, tools, directories, settings, scripts, caches, and runtime state. Auto-migrates stale .beads/ directories to .tickets/ and removes them. Idempotent — run it every session; it only writes when repairs are needed. Run checks in the order listed below. Collect all findings into a summary table at the end. Preflight integration A lightweight shell script ( skills/swain-doctor/scr...
42
24937 agentchat tjamescouch/agentchat
AgentChat A real-time chat network for AI agents. This skill requires the agentchat-mcp server to be pre-installed. If you don't have agentchat_connect in your tools, tell the user to install the MCP server first — see https://github.com/tjamescouch/agentchat for instructions. Connect Check if the user specified a name: "connect as James" → use {name: "james"} "connect as alice" → use {name: "alice"} just "connect" → ephemeral (no name) Then connect: agentchat_connect({name: "myagent"}) Persi...
42
24938 woocommerce-git woocommerce/woocommerce
No SKILL.md available for this skill. View on GitHub
42
24939 cross-gcc mohitmishra786/low-level-dev-skills
Cross-GCC Purpose Guide agents through setting up and using cross-compilation GCC toolchains: triplets, sysroots, pkg-config, QEMU-based testing, and common failure modes. Triggers "How do I compile for ARM on my x86 machine?" "I'm getting 'wrong ELF class' or 'cannot execute binary file'" "How do I set up a sysroot for cross-compilation?" "pkg-config returns host libraries in my cross build" "How do I debug a cross-compiled binary with QEMU + GDB?" Workflow 1. Understand the triplet A GNU tripl...
42
24940 shell-testing-framework manutej/luxor-claude-marketplace
Shell Testing Framework Expert Comprehensive testing expertise for bash shell scripts using patterns and methodologies from the unix-goto project, emphasizing 100% test coverage, systematic test organization, and performance validation. When to Use This Skill Use this skill when: Writing test suites for bash shell scripts Implementing 100% test coverage requirements Organizing tests into unit, integration, edge case, and performance categories Creating assertion patterns for shell script val...
42
24941 docx eyadsibai/ltk
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
42
24942 claude-historian vvkmnn/claude-historian-mcp
Claude Historian Search your conversation history before starting new work. When to Use I'm stuck, what have I tried before? Error with no obvious cause → get_error_solutions Trying different approaches → find_tool_patterns Working on familiar file → find_file_context This might be solved already Before WebSearch → find_similar_queries Starting old project → list_recent_sessions Need design reasoning → search_plans I need specific information General history search → search_conversations Session...
42
24943 foundry-solidity tenequm/claude-plugins
Foundry Solidity Development Complete guide for building secure, efficient smart contracts with Foundry 1.5.0 and Solidity 0.8.30 . When to Use This Skill Developing Ethereum/EVM smart contracts Writing Forge tests (unit, fuzz, invariant, fork) Deploying contracts with scripts Using Foundry tools (forge, cast, anvil, chisel) Working with foundry.toml , *.t.sol , *.s.sol files Debugging transactions and contract interactions Quick Start Create new project forge init my-project && cd my-project ...
42
24944 nexus simota/agent-skills
Nexus "The right agent at the right time changes everything." Coordinate specialist agents, design the minimum viable chain, and execute safely. AUTORUN and AUTORUN_FULL execute internally. Guided and Interactive stop for confirmation at the configured points. Trigger Guidance Use Nexus when the user needs: multi-agent task chain orchestration automatic execution of a complex task spanning multiple specialist domains task decomposition and routing to the right agents proactive project state anal...
42
24945 svg-illustrations fawzymohamed/devops
SVG Illustration System This skill provides guidance for creating consistent, high-quality hand-drawn style SVG illustrations for the DevOps LMS. Overview The illustration system uses a hybrid approach : Reusable Vue Components - For common diagram patterns Design System Composable - Shared constants and utilities Custom SVG - Only when no component fits (rare) Available Components 1. IllustrationLinearFlow Purpose: Sequential step-by-step processes Best For: CI/CD Pipelines SDLC Phases Scrum Fr...
42
24946 ln-610-code-comments-auditor levnikolaevich/claude-code-skills
Code Comments Auditor Audit code comments and docstrings quality. Universal for any tech stack. Purpose Verify comments explain WHY, not obvious WHAT Check comment density (15-20% ratio) Detect forbidden content (dates, author names, historical notes) Validate docstrings match function signatures Ensure comments match current code state Identify legacy comments and commented-out code Invocation Direct: User invokes for code comment quality review Pipeline: Called by ln-100-documents-pipeline (...
42
24947 azure-keyvault-secrets-rust sickn33/antigravity-awesome-skills
Azure Key Vault Secrets SDK for Rust Client library for Azure Key Vault Secrets — secure storage for passwords, API keys, and other secrets. Installation cargo add azure_security_keyvault_secrets azure_identity Environment Variables AZURE_KEYVAULT_URL = https:// < vault-name > .vault.azure.net/ Authentication use azure_identity :: DeveloperToolsCredential ; use azure_security_keyvault_secrets :: SecretClient ; let credential = DeveloperToolsCredential :: new ( None ) ? ; let client = SecretClien...
42
24948 ph-community-outreach yoanbernabeu/producthunt-skills
Product Hunt Community Outreach This skill helps you leverage online communities to amplify your Product Hunt launch while maintaining authenticity and following community guidelines. When to Use This Skill Identifying communities relevant to your product Crafting community-appropriate posts Timing cross-platform promotion Building relationships before launch Avoiding spam flags and bans The Golden Rules Rule 1: Be a Member First Participate for 2-4 weeks before launch Add value through comments...
42
24949 typescript-lsp plaited/development-skills
This skill provides TypeScript Language Server Protocol integration for exploring and understanding TypeScript/JavaScript codebases. IMPORTANT: Prefer LSP tools over Grep/Glob when working with `*.ts`, `*.tsx`, `*.js`, `*.jsx` files. LSP provides type-aware results that understand imports, exports, and symbol relationships. Use these tools to: - Explore codebases - Find symbols, understand module structure, discover implementations - Find references - Type-aware search across the entire code...
42
24950 ui-development redpanda-data/console
Build user interfaces with the Redpanda UI Registry. Activation Conditions - Building/creating UI components or pages - Keywords: "design system", "ui", "frontend", "registry", "component" - Modifying existing registry components Quick Reference | Use components | `use-ui-registry.md` | Add spacing | `style-no-margin-on-registry.md` | Customize look | `style-use-variants.md` | Use icons | `icon-system.md` Workflow 1. Fetch Documentation ``` FIRST: Use MCP tool mcp__redpan...
42