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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,441
总 Skills
90.0M
总安装量
2,580
贡献者
# Skill 仓库 描述 安装量
18651 executive-dashboard dengineproblem/agents-monorepo
Executive Dashboard Expert Expert in designing and building executive dashboards that deliver actionable insights to C-level executives and senior leadership. Core Dashboard Principles Strategic Focus Lead with business outcomes, not data points Align KPIs directly to company objectives and strategic initiatives Prioritize forward-looking metrics over historical reporting Enable drill-down capabilities without overwhelming the main view Design for mobile and presentation contexts Information Hie...
53
18652 shortcut-audit xiaolai/vmark
Shortcut Audit Overview Compare shortcut definitions in code against documentation and report gaps or conflicts. Workflow Read docs: website/guide/shortcuts.md (primary, in repo) dev-docs/shortcuts.md (local, not in repo — if available) Scan code for shortcut sources (see references/paths.md ). Extract current shortcuts from code and map them to doc entries. Report: Missing doc entries Docs that reference removed shortcuts OS-level conflicts or collisions Propose updates and required tests if ch...
53
18653 manim-composer connorads/dotfiles
Workflow Phase 1: Understand the Concept Research the topic deeply before asking questions Use web search to understand the core concepts Identify the key insights that make this topic interesting Find the "aha moment" - what makes this click for learners Note common misconceptions to address Identify the narrative hook What question does this video answer? Why should the viewer care? What's the surprising or counterintuitive element? Phase 2: Clarify with User Ask targeted questions (not a...
53
18654 doc-generator oimiragieo/agent-studio
Step 1: Identify Documentation Type Determine documentation type: API Documentation: Endpoint references Developer Guide: Setup and usage Architecture Docs: System overview User Manual: Feature guides Step 2: Extract Information Gather documentation content: Read code and comments Analyze API endpoints Extract examples Understand architecture Step 3: Generate Documentation Create documentation: Follow documentation templates Include examples Add troubleshooting Create clear structure Step ...
53
18655 changeset-validation openai/openai-agents-js
Changeset Validation Overview This skill validates whether changesets correctly reflect package changes and follow the repository rules. It relies on the shared prompt in references/validation-prompt.md so local Codex reviews and GitHub Actions share the same logic. Experimental or preview-only feature additions that are explicitly labeled as such in the diff may remain a patch bump when they do not change existing behavior. Major bumps are only allowed after the first major release; before tha...
53
18656 request-management groeimetai/snow-flow
Request Management handles service requests from catalog items through fulfillment. Request Hierarchy ``` Request (sc_request) ├── Request Item (sc_req_item) - RITM │ ├── Catalog Tasks (sc_task) │ └── Variables (sc_item_option_mtom) └── Request Item └── Catalog Tasks ``` Key Tables | `sc_request` | Parent request record | `sc_req_item` | Requested items (RITM) | `sc_task` | Fulfillment tasks | `sc_item_option_mtom` | Variable values | `sc_cat_item` ...
53
18657 azure-search-documents-ts sickn33/antigravity-awesome-skills
Azure AI Search SDK for TypeScript Build search applications with vector, hybrid, and semantic search capabilities. Installation npm install @azure/search-documents @azure/identity Environment Variables AZURE_SEARCH_ENDPOINT = https:// < service-name > .search.windows.net AZURE_SEARCH_INDEX_NAME = my-index AZURE_SEARCH_ADMIN_KEY = < admin-key > Optional if using Entra ID Authentication import { SearchClient , SearchIndexClient } from "@azure/search-documents" ; import { DefaultAzureCredential }...
53
18658 filament-pro yuniorglez/gemini-elite-core
Filament v5 Build powerful Laravel admin panels using Filament v5's server-driven UI with Schemas and Livewire v4 reactivity. Overview Filament v5 is a Laravel admin panel framework that provides complete CRUD interfaces, forms, tables, and dashboard components through a declarative PHP API. Built on Livewire v4, it offers real-time reactivity without writing JavaScript. Key Concepts PanelProvider : Central configuration class defining your admin panel Resources : Automatic CRUD interfaces for E...
53
18659 linear-list finesssee/linear-cli
List/Get Issues List issues linear-cli i list All linear-cli i list -t ENG By team linear-cli i list -s "In Progress" By status linear-cli i list --assignee me My issues Get issue(s) linear-cli i get LIN-123 linear-cli i get LIN-1 LIN-2 LIN-3 Multiple Agent-optimized linear-cli i list --output json --compact --fields identifier,title,state.name Flags Flag Purpose --output json JSON output --compact No formatting --fields a,b Select fields --sort field Sort results Exit Codes 0 =Success, ...
53
18660 planning xiaolai/vmark
AI Maestro Planning Solve the execution problem -- staying focused during complex, multi-step tasks. Uses persistent markdown files to track goals, findings, and progress so you never lose context. Part of the AI Maestro suite. When to Use Multi-step tasks (3+ steps) Research projects Building features requiring >5 tool calls Any task where you might lose track of the goal The 3-File Pattern Create in docs_dev/ (or $AIMAESTRO_PLANNING_DIR ): File Purpose Update When task_plan.md Goals, phases, d...
53
18661 release s-hiraoku/synapse-a2a
Release Workflow This skill provides a systematic workflow for creating and publishing releases for the linear-cli project. It handles changelog management, version bumping, testing, and tagging. When to Use Use this skill when preparing to release a new version of linear-cli. The workflow ensures all changes are documented, tests pass, and versions are properly tagged before publishing. Prerequisites Ensure the following tools are available: changelog skill for changelog management svbump for v...
53
18662 zsh-path-skill julianobarbosa/claude-code-skills
This skill provides comprehensive guidance for managing PATH environment variables in zsh, including troubleshooting missing commands, adding new tools, and organizing shell configuration. When to Use This Skill Use this skill when: - Getting "command not found" errors for installed tools - Adding new tools to PATH (bun, nvm, cargo, go, Python venv, etc.) - Validating and auditing current PATH entries - Organizing PATH configuration between .zshrc and .zshrc.local - Troubleshooting shell...
53
18663 readme-standards laurigates/claude-plugins
README Standards (v2025.1) This skill provides README.md templates and standards for projects. Overview A well-structured README is the front door to your project. It should: Immediately communicate what the project does Look professional with proper branding Provide clear getting started instructions Be scannable with good visual hierarchy Template Styles Minimal Style Best for: Libraries, small utilities, internal tools project-name [ ![License ]( https://img.shields.io/github/license/OWNER/R...
53
18664 kafka-stream-processing manutej/luxor-claude-marketplace
Kafka Stream Processing A comprehensive skill for building event-driven applications with Apache Kafka. Master producers, consumers, Kafka Streams, connectors, schema registry, and production deployment patterns for real-time data processing at scale. When to Use This Skill Use this skill when: Building event-driven microservices architectures Processing real-time data streams and event logs Implementing publish-subscribe messaging systems Creating data pipelines for analytics and ETL Buildi...
53
18665 implementing-llms-litgpt orchestra-research/ai-research-skills
LitGPT - Clean LLM Implementations Quick start LitGPT provides 20+ pretrained LLM implementations with clean, readable code and production-ready training workflows. Installation: pip install 'litgpt[extra]' Load and use any model: from litgpt import LLM Load pretrained model llm = LLM.load("microsoft/phi-2") Generate text result = llm.generate( "What is the capital of France?", max_new_tokens=50, temperature=0.7 ) print(result) List available models: litgpt download list...
53
18666 dark matter analyzer daffy0208/ai-dev-standards
Dark Matter Analyzer Purpose Dark Matter Mode reveals what is unseen, unsaid, and unmeasured in repositories and codebases. It goes beyond code quality metrics to illuminate the invisible architectures shaping system behavior — identifying strategic drift, documentation inflation, execution gaps, and organizational health patterns that traditional tools miss. "Every repo is a psyche made visible." This skill helps diagnose why a repository feels off, not just what is wrong technically. When to U...
53
18667 add-model-price langfuse/langfuse
Add Model Price Purpose Guide for adding new LLM model pricing entries to Langfuse's default model prices configuration. This enables accurate cost tracking across different model providers and deployment platforms. When to Use This Skill Automatically activates when: Adding a new model to the pricing database Updating model pricing information Working with default-model-prices.json Creating model matchPattern regex Configuring pricingTiers or tiered pricing Adding prices for Claude, OpenAI, Ant...
53
18668 github-api markpitt/claude-skills
GitHub API Orchestration Skill Comprehensive skill for working with the GitHub API across all services and operations. This skill provides intelligent routing to focused resource files covering both REST API v3 and GraphQL API v4. Quick Reference: When to Load Which Resource Use Case Load Resource Key Concepts Setting up authentication, checking rate limits, handling errors, pagination resources/rest-api-basics.md Auth methods, rate limits, error codes, ETags, conditional requests Creating/man...
53
18669 ssdt-cicd-best-practices-2025 josiahsiegel/claude-plugin-marketplace
🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentation files unless ...
53
18670 godot-skill-discovery thedivergentai/gd-agentic-skills
Skill Discovery Skill indexing, metadata parsing, and search define efficient skill library navigation. Available Scripts skill_index_generator.gd Expert skill indexer that parses SKILL.md files and generates searchable metadata. NEVER Do in Skill Discovery NEVER rely on filename for skill identification — filesystem-advanced.md vs SKILL.md ? Use frontmatter name field as source of truth, not filename. NEVER skip keyword extraction — Skill without keywords? Impossible to discover via search. MUS...
53
18671 mineru-pdf kesslerio/mineru-pdf-parser-clawdbot-skill
MinerU PDF Overview Parse a PDF locally with MinerU (CPU). Default output is Markdown + JSON. Use tables/images only when requested. Quick start (single PDF) Run from the skill directory ./scripts/mineru_parse.sh /path/to/file.pdf Optional examples: ./scripts/mineru_parse.sh /path/to/file.pdf --format json ./scripts/mineru_parse.sh /path/to/file.pdf --tables --images When to read references If flags differ from your wrapper or you need advanced defaults (backend/method/device/threads/for...
53
18672 workers-dev-experience secondsky/claude-skills
Local development setup with Wrangler, Miniflare, and modern tooling. Quick Start ``` Create new project bunx create-cloudflare@latest my-worker Or from scratch mkdir my-worker && cd my-worker bun init -y bun add -d wrangler @cloudflare/workers-types Start local development bunx wrangler dev ``` Essential wrangler.jsonc ``` { "$schema": "node_modules/wrangler/config-schema.json", "name": "my-worker", "main": "src/index.ts", "compatibility_date": "2024-12-01", // Developmen...
53
18673 asset-management groeimetai/snow-flow
Asset Management for ServiceNow Asset Management tracks hardware and software assets throughout their lifecycle. Asset Architecture Asset (alm_asset) ├── Hardware Asset (alm_hardware) │ └── Consumable (alm_consumable) └── License (alm_license) CI (cmdb_ci) ←→ Asset (alm_asset) ↑ One CI can have multiple assets over time Key Tables Table Purpose alm_asset Base asset table alm_hardware Hardware assets alm_license Software licenses alm_consumable Consumable assets ast_contract Asset contracts cmd...
53
18674 game-development dylantarre/animation-principles
Game Development Orchestrator skill that provides core principles and routes to specialized sub-skills. When to Use This Skill You are working on a game development project. This skill teaches the PRINCIPLES of game development and directs you to the right sub-skill based on context. Sub-Skill Routing Platform Selection If the game targets... Use Sub-Skill Web browsers (HTML5, WebGL) game-development/web-games Mobile (iOS, Android) game-development/mobile-games PC (Steam, Desktop) game-developme...
53
18675 generating-trading-signals jeremylongshore/claude-code-plugins-plus-skills
Generating Trading Signals Overview Multi-indicator signal generation system that analyzes price action using 7 technical indicators and produces composite BUY/SELL signals with confidence scores and risk management levels. Indicators Used: RSI (Relative Strength Index) - Overbought/oversold MACD (Moving Average Convergence Divergence) - Trend and momentum Bollinger Bands - Mean reversion and volatility Trend (SMA 20/50/200 crossovers) - Trend direction Volume - Confirmation of moves Stochastic ...
53
18676 trpc-tanstack-nextjs diegojohnsonl/trpc-tanstack-nextjs
tRPC + TanStack Query + Next.js App Router End-to-end typesafe APIs for Next.js using tRPC v11 with @trpc/tanstack-react-query adapter. Core Setup setup - Full setup from scratch with all modules routers - Creating routers, procedures, middleware client-usage - Queries, mutations, useUtils in client components server-usage - Prefetching, hydration, getCaller in server components Optional Integrations better-auth-integration - Add session/user to tRPC context with Better Auth optimistic-updates -...
53
18677 lookalike-customer-finder onewave-ai/claude-skills
Lookalike Customer Finder Find companies that look exactly like your best customers. Instructions You are an expert at account-based prospecting and market analysis. Your mission is to analyze a company's best customers and find similar companies that match the same profile, creating high-quality target account lists. Analysis Framework Customer Profile Dimensions: Firmographics - Industry, size, revenue, location, public/private Technographics - Tech stack, tools used, platforms Growth Si...
53
18678 moai-lang-ruby modu-ai/moai-adk
Quick Reference (30 seconds) Ruby 3.3+ Development Specialist - Rails 7.2, ActiveRecord, Hotwire/Turbo, RSpec, and modern Ruby patterns. Auto-Triggers: Files with .rb extension, Gemfile, Rakefile, config.ru, Rails or Ruby discussions Core Capabilities: Ruby 3.3 Features: YJIT production-ready, pattern matching, Data class, endless methods Web Framework: Rails 7.2 with Turbo, Stimulus, and ActiveRecord Frontend: Hotwire including Turbo and Stimulus for SPA-like experiences Testing: RSpec with...
53
18679 evaluating-llms-harness orchestra-research/ai-research-skills
lm-evaluation-harness - LLM Benchmarking Quick start lm-evaluation-harness evaluates LLMs across 60+ academic benchmarks using standardized prompts and metrics. Installation: pip install lm-eval Evaluate any HuggingFace model: lm_eval --model hf \ --model_args pretrained=meta-llama/Llama-2-7b-hf \ --tasks mmlu,gsm8k,hellaswag \ --device cuda:0 \ --batch_size 8 View available tasks: lm_eval --tasks list Common workflows Workflow 1: Standard benchmark evaluation Evaluate model o...
53
18680 pr-specialist ncklrs/startup-os-skills
PR Specialist Expert public relations guidance for earned media strategy, media relations, and reputation building — from press releases to crisis communication. Philosophy Great PR is earned, not bought: Build relationships before you need them — Journalists remember who helped them, not who pitched them Newsworthy first, company second — Lead with the story, not the press release Credibility compounds — Every interaction builds or erodes your reputation Measure what matters — Coverage quality ...
53
18681 bun bundler secondsky/claude-skills
Bun's bundler is a fast JavaScript/TypeScript bundler built on the same engine as Bun's runtime. It's an esbuild-compatible alternative with native performance. Quick Start CLI ``` Basic bundle bun build ./src/index.ts --outdir ./dist Production build bun build ./src/index.ts --outdir ./dist --minify Multiple entry points bun build ./src/index.ts ./src/worker.ts --outdir ./dist ``` JavaScript API ``` const result = await Bun.build({ entrypoints: ["./src/index.ts"], outdir: "./d...
53
18682 prompting diskd-ai/prompting
Customization Before executing, check for user customizations at: ~/.claude/PAI/USER/SKILLCUSTOMIZATIONS/Prompting/ If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. 🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION) You MUST send this notification BEFORE doing anything else when this skill is invoked. Send voice notification : curl -s -X P...
53
18683 adding-resource volcengine/openviking
OpenViking (OV) add-resource The ov add-resource command imports external resources into OpenViking's context database — supporting local files, directories, URLs, and remote repositories. Resources are automatically processed with semantic analysis and organized under the viking://resources/ namespace. When to Use Importing project documentation, code repositories, or reference materials Adding web pages, articles, or online resources for future retrieval Building a knowledge base from external...
53
18684 podcast-generation sickn33/antigravity-awesome-skills
Podcast Generation Skill Overview This skill generates high-quality podcast audio from text content. The workflow includes creating a structured JSON script (conversational dialogue) and executing audio generation through text-to-speech synthesis. Core Capabilities Convert any text content (articles, reports, documentation) into podcast scripts Generate natural two-host conversational dialogue (male and female hosts) Synthesize speech audio using text-to-speech Mix audio chunks into a final podc...
53
18685 backend-microservice-development tencentblueking/bk-ci
后端微服务开发 Quick Reference 核心服务:process(流水线) | project(项目) | repository(代码库) | auth(权限) 四层架构:api-{service}(接口) → biz-{service}(业务+DAO) → boot-{service}(启动) → model-{service}(数据模型) 包命名:com.tencent.devops.<module> Resource 前缀:User*(Web) | Service*(内部) | Build*(Agent) | Open*(外部) 最简示例 // Resource 接口定义 @Tag ( name = "USER_PIPELINE" , description = "用户-流水线资源" ) @Path ( "/user/pipelines" ) @Produces ( MediaType . APPLICATION_JSON ) interface UserPipelineResource { @GET @Operation ( summary = "获取流水线列表" ) ...
53
18686 mql-developer thomaspraun/mql-developer
MQL Developer Guide for professional MQL4/MQL5 development on MetaTrader platforms. Quick Reference Navigation Load the appropriate reference file based on the task: Task Reference File MQL4 syntax, types, functions, predefined vars references/mql4-reference.md MQL5 syntax, OOP, CTrade, Standard Library references/mql5-reference.md Project structure, EA architecture, design patterns references/architecture-patterns.md Orders, positions, risk management, trailing stops references/trading-operatio...
53
18687 ln-831-oss-replacer 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. ln-831-oss-replacer Type: L3 Worker Category: 8XX Optimization Parent: ln-830-code-modernization-coordinator Executes OSS replacement plans from ln-645-open-source-replacer auditor. For each custom module with an OSS alternative: install package, rewrite imports, run tests, keep or discard atomically. Overview Aspect Detail...
53
18688 jira-ticket-viewer delexw/claude-code-misc
Jira Ticket Viewer Fetch and display Jira ticket details using the jira CLI tool. Arguments $ARGUMENTS[0] — Jira issue key (e.g. PROJ-123 ) $ARGUMENTS[1] — (optional) Base directory for all temp assets (raw JSON, attachments, parsed output). Defaults to .implement-assets/jira When invoked by the orchestrator (e.g. implement ), $ARGUMENTS[1] is provided. When used standalone, it defaults to .implement-assets/jira . System Requirements jira CLI installed and configured ( https://github.com/ankitpo...
53
18689 web_searcher cliuxinxin/rag_agent
Web Search Specialist You are a researcher with access to the internet. When the user asks for current events, news, or specific facts (e.g., "Who won the game yesterday?", "Stock price of Apple"), use the run_skill_script tool to execute search.py . The script accepts arguments. Pass the search query as the argument. Example: run_skill_script("search.py", ["current price of Bitcoin"])
53
18690 km-mcp-skills api/git
No SKILL.md available for this skill. View on GitHub
53
18691 ios-uikit-architecture thebushidocollective/han
iOS - UIKit Architecture Architectural patterns and best practices for UIKit-based iOS applications. Key Concepts MVVM Architecture The Model-View-ViewModel pattern separates concerns: Model: Data and business logic View: UIViewController and UIView subclasses ViewModel: Presentation logic, transforms model data for display // Model struct User { let id: String let firstName: String let lastName: String let email: String } // ViewModel class UserProfileViewModel { privat...
53
18692 frontend-implementation mae616/design-skills
Frontend Implementation Skill When to Apply Apply this skill when the request involves: UI implementation, design-to-code, Figma to code, component implementation, styling, responsive design, fixing broken UI UI実装、デザインから実装、Figmaから実装、コンポーネント実装、スタイル調整、レスポンシブ対応、UIの崩れ修正 Translating any design tool output (Figma/Pencil/Canva/sketches) to code Core Principles Goal is not pixel-perfect copying, but maintaining ratios, alignment, resilience, and consistency. Translate, don't transcribe. Design tool valu...
53
18693 b2c-scapi-custom salesforcecommercecloud/b2c-developer-tooling
B2C SCAPI Custom APIs Skill Use the b2c CLI plugin to manage SCAPI Custom API endpoints and check their registration status. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli scapi custom status ). Required: Tenant ID The --tenant-id flag is required for all commands. The tenant ID identifies your B2C Commerce instance. Important: The tenant ID is NOT the same as the organization ID: Tenant ID : zzxy_prd (used with commands that require --t...
53
18694 confidence-scoring laurigates/claude-plugins
This skill provides systematic evaluation of PRPs (Product Requirement Prompts) and work-orders to determine their readiness for execution or delegation. When to Use This Skill Activate this skill when: - Creating a new PRP (`/prp:create`) - Generating a work-order (`/blueprint:work-order`) - Deciding whether to execute or refine a PRP - Evaluating whether a task is ready for subagent delegation - Reviewing PRPs/work-orders for quality Scoring Dimensions 1. Context Completeness (1-10...
53
18695 security pluginagentmarketplace/custom-plugin-python
Security Architecture Diagram Generator Quick Start: Define trust boundaries → Place identity/encryption/firewall icons → Connect with access flows → Group into security zones → Wrap in ```plantuml fence. ⚠️ IMPORTANT: Always use ```plantuml or ```puml code fence. NEVER use ```text — it will NOT render as a diagram. Critical Rules Every diagram starts with @startuml and ends with @enduml Use left to right direction for access flows (User → AuthN → AuthZ → Resource) Use mxgraph.aws4.* stencil syn...
53
18696 evolutionary-metric-ranking terrylica/cc-skills
Evolutionary Metric Ranking Methodology for systematically zooming into high-quality configurations across multiple evaluation metrics using per-metric percentile cutoffs, intersection-based filtering, and evolutionary optimization. Domain-agnostic principles with quantitative trading case studies. Companion skills : rangebar-eval-metrics (metric definitions) | adaptive-wfo-epoch (WFO integration) | backtesting-py-oracle (SQL validation) When to Use This Skill Use this skill when: Ranking and fi...
53
18697 recall berserkdisruptors/contextual-commits
The user wants to recall past context about: $ARGUMENTS Use the memory_smart_search MCP tool (provided by the agentmemory server that this plugin wires up automatically via .mcp.json ) with the user's query as the query argument and limit: 10 . The tool runs hybrid BM25 + vector + graph-expanded search over captured observations and returns ranked results. Present the returned results to the user in a readable format: Group by session For each observation show its type, title, and narrative High...
53
18698 ralph-setup andrelandgraf/fullstackrecipes
Ralph Agent Loop To set up Ralph Agent Loop, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/ralph-setup If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/ralph-setup
53
18699 openclaw win4r/openclaw-skill
OpenClaw CLI Overview OpenClaw is a multi-channel messaging and agent platform. The CLI provides commands for gateway management, agent orchestration, channel operations (WhatsApp, Telegram), device pairing, and automated messaging workflows. Quick Reference Check CLI version and help openclaw --version openclaw --help openclaw --log-level < level > Override log level (silent|fatal|error|warn|info|debug|trace) openclaw --no-color Disable ANSI colors Setup and configuration openclaw setup In...
53
18700 shadcn-inertia inertia-rails/skills
shadcn/ui for Inertia Rails shadcn/ui patterns adapted for Inertia.js + Rails + React. NOT Next.js. Before using a shadcn example, ask: Does it use react-hook-form + zod ? → Replace with Inertia <Form> + name attributes. Inertia handles CSRF, errors, redirects, processing state — react-hook-form would fight all of this. Does it use 'use client' ? → Remove it. Inertia has no RSC — all components are client components. Does it use next/link , next/head , useRouter() ? → Replace with Inertia <Link>...
53