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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
15251 opensrc third774/dotfiles
opensrc CLI tool to fetch source code for packages/repos, giving AI coding agents deeper implementation context. When to Use Need to understand how a library/package works internally (not just its interface) Debugging issues where types alone are insufficient Exploring implementation patterns in dependencies Agent needs to reference actual source code of a package Quick Start Install globally or use npx npm install -g opensrc Fetch npm package (auto-detects installed version from lockfile) npx...
64
15252 groove-utilities-task-install andreadellacorte/groove
groove-utilities-task-install Outcome The configured task backend is installed and verified reachable. User is informed of what was installed and how to use it. Acceptance Criteria Backend CLI is available in PATH after install User is shown a confirmation with the installed version or a reachability check No-op if tasks: none If tasks: beans : AGENTS.md contains a <!-- groove:task:start --> stub pointing to beans prime Constraints Read tasks: from .groove/index.md to determine backend If tasks:...
64
15253 groove-utilities-check andreadellacorte/groove
groove-utilities-check Bash fast-path This skill has a bash script at scripts/check.sh . Run it directly for faster, model-free execution: bash .agents/skills/groove-utilities-check/scripts/check.sh If the script exits 0, report its stdout and stop — do not continue with the steps below. If it exits non-zero or bash is unavailable, continue with the markdown steps. Outcome The latest published groove version is compared against the installed version. If a newer version is available, the user is ...
64
15254 react-doctor brianlovin/claude-config
React Doctor Scans your React codebase for security, performance, correctness, and architecture issues. Outputs a 0-100 score with actionable diagnostics. Usage npx -y react-doctor@latest . --verbose --diff Workflow Run after making changes to catch issues early. Fix errors first, then re-run to verify the score improved.
64
15255 spider-weave autumnsgrove/groveengine
Spider Weave The spider doesn't rush. It spins one thread at a time, anchoring each carefully before moving to the next. The web grows organically—radial strands first, then the spiral, each connection tested for strength. When complete, the web catches what matters while letting the wind pass through. Authentication woven this way is strong, resilient, and beautiful in its structure. When to Activate User asks to "add auth" or "set up authentication" User says "protect this route" or "add login...
64
15256 project-scaffolding autumnsgrove/groveengine
Project Scaffolding Skill When to Activate Activate this skill when: Creating new projects from scratch Setting up project directory structure Initializing configuration files Starting from BaseProject template Setting up technology-specific projects Quick Setup Methods Method Best For Time Automated Script Standard projects 2-3 min Manual Setup Custom configurations 10-15 min Directory Naming Conventions Directories: CamelCase (VideoProcessor, AudioTools) Date-based: kebab-case with YY...
64
15257 windows-kernel-security gmh5225/awesome-game-security
Windows Kernel Security Overview This skill covers Windows kernel security topics from the awesome-game-security collection, including driver development, system callbacks, security feature bypasses, and kernel-mode exploitation. Core Kernel Concepts Important Structures EPROCESS / ETHREAD PEB / TEB DRIVER_OBJECT DEVICE_OBJECT IRP (I/O Request Packet) Key Tables SSDT (System Service Descriptor Table) IDT (Interrupt Descriptor Table) GDT (Global Descriptor Table) PspCidTable (Process/Thread han...
64
15258 docker-workflows autumnsgrove/groveengine
Docker Workflows Skill When to Activate Activate this skill when: Creating Dockerfiles for applications Setting up docker-compose environments Containerizing Python/UV projects Configuring multi-stage builds Managing container secrets Quick Commands Build image docker build -t my-app:latest . Run container docker run -d -p 8000 :8000 --name my-app my-app:latest View logs docker logs -f my-app Execute in container docker exec -it my-app bash Stop and remove docker stop my-app && docker rm my...
64
15259 design-ui-window sharex/xerahs
You are an expert Avalonia UI/UX designer and refactor specialist. Follow these instructions exactly and in order. Do not skip steps, do not add business logic changes, do not break existing bindings or view-model public API. <ui_ux_reference_characteristics> Visual consistency across the entire window. Uniform spacing margins and alignment. Controls aligned to a clear grid. Controls use available space appropriately. Predictable control placement. Clear visual hierarchy with one primary action ...
64
15260 pdf-helper zackkorman/skills
PDF Helper Guidelines Jk this skill doesn't really do anything.
64
15261 b2c-ecdn salesforcecommercecloud/b2c-developer-tooling
B2C eCDN Skill Use the b2c CLI plugin to manage eCDN (embedded Content Delivery Network) zones, certificates, security settings, and more. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli ecdn zones list ). Prerequisites OAuth credentials with sfcc.cdn-zones scope (read operations) OAuth credentials with sfcc.cdn-zones.rw scope (write operations) Tenant ID for your B2C Commerce organization Examples List CDN Zones list all CDN zones for a...
64
15262 speckit-constitution dceoy/speckit-agent-skills
Spec Kit Constitution Skill When to Use Initial project setup or when governance principles need updates. Inputs User-provided principles or amendments. Existing .specify/memory/constitution.md and templates. If the request is missing or ambiguous, ask focused questions before proceeding. Workflow You are updating the project constitution at .specify/memory/constitution.md . This file is a TEMPLATE containing placeholder tokens in square brackets (e.g. [PROJECT_NAME] , [PRINCIPLE_1_NAME] ). Your...
64
15263 workflow-automation shipshitdev/library
Workflow Automation When to use this skill Repetitive tasks : running the same commands every time Complex builds : multi-step build processes Team onboarding : a consistent development environment Instructions Step 1: npm scripts package.json : { "scripts" : { "dev" : "nodemon src/index.ts" , "build" : "tsc && vite build" , "test" : "jest --coverage" , "test:watch" : "jest --watch" , "lint" : "eslint src --ext .ts,.tsx" , "lint:fix" : "eslint src --ext .ts,.tsx --fix" , "format" : "prettier --w...
64
15264 theme-factory 404kidwiz/claude-supercode-skills
Theme Factory Skill This skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact. Purpose To apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes: A cohesive color palette with hex codes Complementary font pairings for headers and body text A distinct visual identity suitable for different contexts an...
64
15265 svelte5-development autumnsgrove/groveengine
Svelte 5 Development Skill When to Activate Activate this skill when: Creating Svelte 5 components Working with SvelteKit routing Implementing runes ($state, $derived, $effect) Building forms with actions Setting up SvelteKit projects Quick Commands npx sv create my-app Create SvelteKit project cd my-app && pnpm install pnpm dev Start dev server (localhost:5173) pnpm build Build for production Runes Quick Reference Rune Purpose Example $state Reactive state let count = $state(0) $derived Comp...
64
15266 pytest-advanced laurigates/claude-plugins
Advanced Pytest Patterns Advanced pytest features for robust, maintainable test suites. When to Use This Skill Use this skill when... Use python-testing instead when... Writing fixtures with scopes/factories Basic test structure questions Parametrizing with complex data Simple assert patterns Setting up pytest plugins (cov, xdist) Running existing tests Organizing conftest.py hierarchy Test discovery basics Async testing with pytest-asyncio Synchronous unit tests Installation Core + common plug...
64
15267 react-optimise pproenca/dot-skills
React Optimise Best Practices Application-level performance optimization guide for React applications. Contains 43 rules across 8 categories, prioritized by impact from critical (React Compiler, bundle optimization) to incremental (memory management). When to Apply Optimizing React application performance or bundle size Adopting or troubleshooting React Compiler v1.0 Splitting bundles and configuring code splitting Improving Core Web Vitals (INP, LCP, CLS) Profiling render performance and identi...
64
15268 ecosystem-guide spences10/svelte-skills-kit
Claude Code Ecosystem Guide A curated set of tools for enhanced Claude Code workflows. The Stack Tool Type Purpose toolkit-skills Plugin Forced-eval hook + core skills (pair with any skills plugin) svelte-skills-kit Plugin Svelte/SvelteKit skills (pair with toolkit-skills) cclog CLI Sync transcripts → SQLite for analytics mcp-omnisearch MCP Unified search (Tavily, Kagi, GitHub, etc.) mcp-sqlite-tools MCP Safe SQLite operations mcpick CLI Toggle MCP servers dynamically research Skill Verified s...
64
15269 vulnerability-scanning secondsky/claude-skills
Vulnerability Scanning Overview Systematically identify security vulnerabilities in applications, dependencies, and infrastructure using automated scanning tools and manual security assessments. When to Use Pre-deployment security checks Continuous security monitoring Compliance audits (PCI-DSS, SOC 2) Dependency vulnerability detection Container security scanning Infrastructure security assessment Implementation Examples 1. Node.js Vulnerability Scanner // scanner.js - Comprehensive vulnerabi...
64
15270 file-manager ninehills/skills
文件管理技能 本技能提供文件和文件夹管理能力。 核心功能 1. 文件操作 创建文件 复制/移动文件 重命名文件 删除文件 2. 文件夹操作 创建文件夹 列出目录内容 删除文件夹(递归) 复制文件夹 3. 批量处理 按类型分类 批量重命名 查找重复文件 整理下载文件夹 安全规则 禁止操作 系统目录(/System, /usr, /bin 等) 其他用户的文件 没有明确确认的删除操作 需要确认 删除文件前列出将被删除的内容 覆盖已存在的文件前提醒 批量操作前显示预览 常用操作示例 整理下载文件夹 1. 创建分类目录 mkdir -p ~/Downloads/ { Documents,Images,Videos,Archives,Others } 2. 按扩展名移动 mv ~/Downloads/*.pdf ~/Downloads/Documents/ mv ~/Downloads/*. { jpg,png,gif } ~/Downloads/Images/ mv ~/Downloads/*. { mp4,mov,avi } ~/Downloads/Videos/ mv ~/Downlo...
64
15271 compose-patterns-2025 josiahsiegel/claude-plugin-marketplace
Docker Compose Patterns for Production (2025) Overview This skill documents production-ready Docker Compose patterns and best practices for 2025, based on official Docker documentation and industry standards. File Format Changes (2025) IMPORTANT: The version field is now obsolete in Docker Compose v2.42+. Correct (2025): services: app: image: myapp:latest Incorrect (deprecated): version: '3.8' DO NOT USE services: app: image: myapp:latest Multiple Environment Strategy Patt...
64
15272 firecrawl-scraper jackspace/claudeskillz
Firecrawl Web Scraper Skill Status : Production Ready Last Updated : 2026-01-20 Official Docs : https://docs.firecrawl.dev API Version : v2 SDK Versions : firecrawl-py 4.13.0+, @mendable/firecrawl-js 4.11.1+ What is Firecrawl? Firecrawl is a Web Data API for AI that turns websites into LLM-ready markdown or structured data. It handles: JavaScript rendering - Executes client-side JavaScript to capture dynamic content Anti-bot bypass - Gets past CAPTCHA and bot detection systems Format conversion ...
64
15273 api-security-hardening secondsky/claude-skills
API Security Hardening Overview Implement comprehensive API security measures including authentication, authorization, rate limiting, input validation, and attack prevention to protect against common vulnerabilities. When to Use New API development Security audit remediation Production API hardening Compliance requirements High-traffic API protection Public API exposure Implementation Examples 1. Node.js/Express API Security // secure-api.js - Comprehensive API security const express = require...
64
15274 xiaohongshu-automation wrt820232/xiaohongshu-automation
小红书自动化控制 Skill 概述 通过 Playwright MCP 工具连接到 OpenClaw 浏览器(CDP 端口 18800),实现小红书的自动化操作,包括发布内容、搜索、获取推荐、评论等功能。 前置条件 OpenClaw 浏览器已启动 :确保 OpenClaw 浏览器运行并开启 CDP 端口 18800 已登录小红书 :首次使用需在 OpenClaw 浏览器中手动登录小红书账号 Playwright MCP 可用 :确保 mcp__Playwright__* 工具集已配置 连接方式 使用 Playwright 的 browser_run_code 工具通过 CDP 连接到 OpenClaw 浏览器: // 连接到 OpenClaw 浏览器 const { chromium } = require ( 'playwright' ) ; const browser = await chromium . connectOverCDP ( 'http://localhost:18800' ) ; const context = browser . contexts ( ) [ 0 ...
64
15275 seedance-director crowscc/seedance-director
Seedance Director — AI 视频导演 1. 角色定义 你是一位专业的 AI 视频导演,精通传统影视制作方法论(剧本结构、分镜设计、镜头语言、声音设计)和即梦 Seedance 2.0 平台全部能力(纯文本生成、图生视频、运镜复刻、特效复刻、视频延长、一镜到底等)。 工作方式:像有经验的导演和用户聊天 — 快速抓住创意核心,给出专业方案,输出可直接使用的即梦提示词。根据用户水平自动调整沟通深度。 平台能力认知 :即梦 Seedance 2.0 完全支持中文对白与口型同步,角色说话时嘴型自动匹配台词。短剧/对白场景应直接使用屏幕台词,不要因为"AI 视频口型不准"而降级为旁白叙事。以 references/platform-capabilities.md 为唯一能力参考,禁止自行假设平台限制。 2. 参考文件导航 按需加载,不要一次性全部加载: 文件 何时加载 内容 references/platform-capabilities.md Phase 5 生成提示词时 10 种生成模式、技术参数、@引用规范 references/narrative-structures.m...
64
15276 video processor iamzhihuix/happy-claude-skills
Video Processor Instructions This skill provides comprehensive video processing utilities including YouTube video download, audio extraction, format conversion, and audio transcription using yt-dlp, FFmpeg, and OpenAI's Whisper model. Prerequisites Required tools (must be installed in your environment): yt-dlp : Video downloader for YouTube and thousands of other sites Install via pip pip install -U yt-dlp Verify installation yt-dlp --version FFmpeg : Multimedia framework for video/audio proce...
64
15277 accelint-ts-documentation gohypergiant/agent-skills
Code Documentation Skill Comprehensive skill for improving JavaScript/TypeScript documentation, including JSDoc comments, comment markers, and general comment quality. When to Activate This Skill Use this skill when the task involves: JSDoc Documentation Adding JSDoc comments to exported functions, types, interfaces, or classes Validating JSDoc completeness (missing @param, @returns, @template tags) Ensuring JSDoc @example tags use proper code fences Documenting object parameters with destructur...
64
15278 dynamic-resources dicklesworthstone/pi_agent_rust
Dynamic Resources Skill This skill is provided by the dynamic-resources extension.
64
15279 javascript-testing autumnsgrove/groveengine
JavaScript/TypeScript Testing Skill When to Activate Activate this skill when: Writing JavaScript or TypeScript tests Testing Svelte, React, or Vue components Setting up Vitest or Jest configuration Working with mocks, spies, or test utilities Running tests or checking coverage Framework Selection Use Case Framework SvelteKit, Vite projects Vitest (recommended) Non-Vite projects, React Native Jest Quick Commands Vitest npx vitest Watch mode npx vitest run Single run (CI) npx vitest run --cover...
64
15280 typescript-clean-code bmad-labs/skills
Clean Code Principles, practices, and workflows for TypeScript developers. Quick Start For a task: Check guidelines.md → find the right workflow For reference: Load only the files relevant to your work Follow the workflow: Step-by-step process for consistent results Workflows Step-by-step processes for common tasks: Workflow When to Use workflows/code-review.md Reviewing code for quality workflows/pr-review.md Reviewing pull requests workflows/tdd.md Test-driven development cycle workflows/r...
64
15281 b2c-job salesforcecommercecloud/b2c-developer-tooling
B2C Job Skill Use the b2c CLI plugin to run existing jobs and import/export site archives on Salesforce B2C Commerce instances. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli job run ). Creating a new job? If you need to write custom job step code (batch processing, scheduled tasks, data sync), use the b2c:b2c-custom-job-steps skill instead. Examples Run a Job run a job and return immediately b2c job run my-custom-job run a job and wai...
64
15282 chatwoot vm0-ai/vm0-skills
Chatwoot Use Chatwoot via direct curl calls to manage customer support across multiple channels (website, email, WhatsApp, etc.). Official docs: https://developers.chatwoot.com/api-reference/introduction When to Use Use this skill when you need to: Manage contacts - create, search, and update customer profiles Handle conversations - create, assign, and track support conversations Send messages - reply to customers or add internal notes List agents - get support team information Automate wor...
64
15283 sqlmap-database-pentesting sickn33/antigravity-awesome-skills
SQLMap Database Penetration Testing Purpose Provide systematic methodologies for automated SQL injection detection and exploitation using SQLMap. This skill covers database enumeration, table and column discovery, data extraction, multiple target specification methods, and advanced exploitation techniques for MySQL, PostgreSQL, MSSQL, Oracle, and other database management systems. Inputs / Prerequisites Target URL : Web application URL with injectable parameter (e.g., ?id=1 ) SQLMap Installation...
64
15284 error-recovery mgd34msu/goodvibes-plugin
Resources scripts/ validate-error-recovery.sh references/ common-errors.md Error Recovery Protocol When tasks fail, agents must follow a systematic recovery process that balances efficiency with thoroughness. This skill defines how to categorize errors, leverage institutional memory, apply multi-source recovery strategies, and know when to escalate. Immediate Response When an error occurs during task execution: DO NOT retry blindly . Read the full error message, stack trace, and any diagnostic o...
64
15285 copy-validator shipshitdev/library
Copy Validator - Hook-Story-Offer Scorecard Overview Ruthlessly assess sales copy against Russell Brunson's Hook-Story-Offer framework combined with classic direct response principles. Score objectively, expose weak points, provide rewrites. Brunson's Core Principle: "The hook grabs them, the story connects them, the offer converts them." When This Activates "validate my copy" "rate my copy" / "rate my headline" "is my copy good" "why isn't my copy converting" Checking copy before publishing ...
64
15286 cross-domain-thinking-toolbox hexbee/hello-skills
Cross-Domain Thinking Toolbox Borrow thinking tools from 25 different professions to approach problems from fresh angles. Quick Reference: The 25 Thinking Tools Profession Core Question Best For 1 Artist What makes this unique and interesting? Creative blockers, innovation needs 2 Economist How do people respond to incentives? Behavior prediction, system design 3 Engineer Can I model and calculate this? Prediction, data-driven decisions 4 Entrepreneur What works if I try many things? Uncertai...
64
15287 1k-i18n onekeyhq/app-monorepo
OneKey Internationalization (i18n) Guidelines Translation Management - CRITICAL RESTRICTIONS ABSOLUTELY FORBIDDEN (These files are AUTO-GENERATED): ❌ NEVER modify @onekeyhq/shared/src/locale/enum/translations.ts - Will be overwritten and break i18n system ❌ NEVER modify locale JSON files in @onekeyhq/shared/src/locale/json/* - Managed by external translation system ❌ NEVER hardcode text strings in components - ALWAYS use translation keys ❌ NEVER add translation keys directly to enum files - Us...
64
15288 rest-api-design secondsky/claude-skills
REST API Design Overview Design REST APIs that are intuitive, consistent, and follow industry best practices for resource-oriented architecture. When to Use Designing new RESTful APIs Creating endpoint structures Defining request/response formats Implementing API versioning Documenting API specifications Refactoring existing APIs Instructions 1. Resource Naming ✅ Good Resource Names (Nouns, Plural) GET /api/users GET /api/users/123 GET /api/users/123/orders POST /api/products DELETE...
64
15289 quark-download psylch/media-master
Quark Search — 网盘资源搜索与下载 Language Match user's language : Respond in the same language the user uses. Automate the full workflow: search resources → validate links → save to Quark cloud drive → download locally, by combining the PanSou aggregation API with the local Quark desktop APP. All operations use the CLI script at ${SKILL_PATH}/scripts/quark_search.py . It outputs JSON to stdout ( {"status": "ok", "results": {...}, "hint": "..."} ) and errors to stderr ( {"error": "code", "message": "..."...
64
15290 releasing-macos-apps jamesrochabrun/skills
Releasing macOS Apps Complete workflow for creating notarized macOS app releases with Sparkle auto-updates, DMG installers, and GitHub releases. Release Checklist Copy this checklist and track progress: Release Progress: - [ ] Step 1: Check prerequisites (certificates, credentials) - [ ] Step 2: Update version in .xcconfig file - [ ] Step 3: Build and archive the app - [ ] Step 4: Export with proper code signing - [ ] Step 5: Create zip and generate Sparkle signature - [ ] Step 6: Create DMG...
64
15291 1k-coding-patterns onekeyhq/app-monorepo
OneKey Coding Patterns and Best Practices General Development Develop functions with a test-driven development mindset, ensuring each low-level function or method intended for reuse performs a single, atomic task, but avoid adding unnecessary abstraction layers Promise Handling - MANDATORY COMPLIANCE ALWAYS await Promises; use void prefix ONLY if intentionally not awaiting ZERO TOLERANCE for floating promises - they cause unhandled rejections FOLLOW the @typescript-eslint/no-floating-promises ru...
64
15292 bun test basics secondsky/claude-skills
Bun ships with a fast, built-in, Jest-compatible test runner. Tests run with the Bun runtime and support TypeScript/JSX natively. Quick Start ``` Run all tests bun test Run specific file bun test ./test/math.test.ts Run tests matching pattern bun test --test-name-pattern "addition" ``` Writing Tests ``` import { test, expect, describe } from "bun:test"; test("2 + 2", () => { expect(2 + 2).toBe(4); }); describe("math", () => { test("addition", () => { expect(1 + 1).toBe(2); ...
64
15293 container-orchestration 0xdarkmatter/claude-mods
Container Orchestration Docker and Kubernetes patterns for containerized applications. Dockerfile Best Practices Use specific version, not :latest FROM python:3.11-slim AS builder Set working directory WORKDIR /app Copy dependency files first (better caching) COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt Copy application code COPY src/ ./src/ Production stage (multi-stage build) FROM python:3.11-slim WORKDIR /app Create non-root user RUN useradd --creat...
64
15294 lit-review-assistant meleantonio/awesome-econ-ai-stuff
Literature Review Assistant Purpose This skill helps economists conduct literature reviews by structuring searches, summarizing papers, and synthesizing findings. It provides templates for organizing literature and identifying research gaps. When to Use Starting a literature review for a new project Finding related work for a paper's introduction Synthesizing existing evidence on a topic Identifying gaps in the literature Instructions Step 1: Define the Research Domain Ask the user: What is your...
64
15295 wisdom-accountability-coach erichowens/some_claude_skills
Wisdom & Accountability Coach You are a deeply attentive personal coach and wisdom teacher who maintains longitudinal memory of your user's life, work, writings, conversations, pledges, and growth journey. You hold them accountable with compassion while teaching philosophy, psychology, and timeless wisdom. Integrations Works with: project-management-guru-adhd, hrv-alexithymia-expert, tech-entrepreneur-coach-adhd When to Use This Skill Use for: Accountability check-ins and commitment tracki...
64
15296 groove-work-review andreadellacorte/groove
groove-work-review Outcome The artifact is reviewed for correctness, quality, and fit to plan. Lessons are identified for the compound stage. A clear accept/rework decision is made with rationale. Review notes are captured in the task body. Acceptance Criteria Artifact is evaluated against the plan and acceptance criteria Specific gaps or issues are identified (not vague "needs improvement") Accept or rework decision is stated with rationale Lessons are noted for /groove-work-compound Review not...
63
15297 a-share-analysis nicepkg/ai-workflow
No SKILL.md available for this skill. View on GitHub
63
15298 pdf-toolkit dkyazzentwatwa/chatgpt-skills
Comprehensive PDF manipulation toolkit for merging, splitting, rotating, and more. Features - Merge: Combine multiple PDFs into one - Split: Extract pages or split into chunks - Rotate: Rotate pages by 90/180/270 degrees - Extract: Extract specific pages or page ranges - Watermark: Add text/image watermarks - Compress: Reduce file size - Encrypt: Add password protection - Metadata: Edit PDF metadata - Page Numbers: Add page numbers - Bookmarks: Add/remove bookmarks Quick Start ```...
63
15299 ci-integration jwilger/agent-skills
CI Integration Value: Feedback -- CI pipelines produce signals. Deterministic interaction patterns ensure those signals are received, classified, and acted on correctly. Undisciplined CI interaction (pushing over failing runs, ignoring flaky tests) degrades the signal until the pipeline is noise. Purpose Teaches disciplined CI/CD interaction: one pending run at a time, structured failure triage, automated self-healing for mechanical failures, and structured evidence output for pipeline consumpti...
63
15300 shadcn-ui-setup andrelandgraf/fullstackrecipes
Shadcn UI & Theming To set up Shadcn UI & Theming, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/shadcn-ui-setup If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/shadcn-ui-setup
63