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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
901 swiftui-liquid-glass dimillian/skills
SwiftUI Liquid Glass Overview Use this skill to build or review SwiftUI features that fully align with the iOS 26+ Liquid Glass API. Prioritize native APIs (glassEffect, GlassEffectContainer, glass button styles) and Apple design guidance. Keep usage consistent, interactive where needed, and performance aware. Workflow Decision Tree Choose the path that matches the request: 1) Review an existing feature Inspect where Liquid Glass should be used and where it should not. Verify correct modifie...
1.9K
902 web-scraping jamditis/claude-skills-journalism
Web scraping methodology Patterns for reliable, ethical web scraping with fallback strategies and anti-bot handling. Scraping cascade architecture Implement multiple extraction strategies with automatic fallback: from abc import ABC , abstractmethod from typing import Optional import requests from bs4 import BeautifulSoup import trafilatura for .py files from playwright . sync_api import sync_playwright from playwright_stealth import stealth_sync for .ipynb files import asyncio from playwright ....
1.9K
903 threejs-shaders cloudai-x/threejs-skills
Three.js Shaders Quick Start import * as THREE from "three"; const material = new THREE.ShaderMaterial({ uniforms: { time: { value: 0 }, color: { value: new THREE.Color(0xff0000) }, }, vertexShader: ` void main() { gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); } `, fragmentShader: ` uniform vec3 color; void main() { gl_FragColor = vec4(color, 1.0); } `, }); // Update in animation loop material.uniforms.time.value = ...
1.9K
904 angular-ssr analogjs/angular-skills
Angular SSR Implement server-side rendering, hydration, and prerendering in Angular v20+. Setup Add SSR to Existing Project ng add @angular/ssr This adds: @angular/ssr package server.ts - Express server src/main.server.ts - Server bootstrap src/app/app.config.server.ts - Server providers Updates angular.json with SSR configuration Project Structure src/ ├── app/ │ ├── app.config.ts Browser config │ ├── app.config.server.ts Server config │ └── app.routes.ts ├── main.ts ...
1.8K
905 text-optimizer kochetkov-ma/claude-brewcode
Plugin: kochetkov-ma/claude-brewcode Text Optimizer Reduces token count in prompts, docs, and agent instructions by 20–40% without losing meaning. Applies 41 research-backed rules across 6 categories: Claude behavior, token efficiency, structure, reference integrity, perception, LLM comprehension. Benefits: cheaper API calls · faster model responses · clearer LLM instructions · fewer hallucinations Examples: /text-optimize prompt.md single file, medium mode (default) /text-optimize -d agents/ ...
1.8K
906 clerk-orgs clerk/skills
Prerequisite: Enable Organizations in Clerk Dashboard first. Quick Start - Create an organization via dashboard or through Clerk API - Use OrganizationSwitcher to let users switch between orgs - Protect routes using orgSlug from URL and role checks Documentation Reference | Overview | [https://clerk.com/docs/guides/organizations/overview](https://clerk.com/docs/guides/organizations/overview) | Org slugs in URLs | [https://clerk.com/docs/guides/organizations/org-slugs-in-urls](https:/...
1.8K
907 agents-sdk cloudflare/skills
Cloudflare Agents SDK Build persistent, stateful AI agents on Cloudflare Workers using the agents npm package. FIRST: Verify Installation npm install agents Agents require a binding in wrangler.jsonc: { "durable_objects": { // "class_name" must match your Agent class name exactly "bindings": [{ "name": "Counter", "class_name": "Counter" }] }, "migrations": [ // Required: list all Agent classes for SQLite storage { "tag": "v1", "new_sqlite_classes": ["Counter"] } ] } ...
1.8K
908 langchain-fundamentals langchain-ai/langchain-skills
<create_agent> Creating Agents with create_agent create_agent() is the recommended way to build agents. It handles the agent loop, tool execution, and state management. Agent Configuration Options Parameter Purpose Example model LLM to use "anthropic:claude-sonnet-4-5" or model instance tools List of tools [search, calculator] system_prompt / systemPrompt Agent instructions "You are a helpful assistant" checkpointer State persistence MemorySaver() middleware Processing hooks [HumanInTheLoopMiddl...
1.8K
909 postgres-patterns affaan-m/everything-claude-code
PostgreSQL Patterns Quick reference for PostgreSQL best practices. For detailed guidance, use the database-reviewer agent. When to Activate Writing SQL queries or migrations Designing database schemas Troubleshooting slow queries Implementing Row Level Security Setting up connection pooling Quick Reference Index Cheat Sheet Query Pattern Index Type Example WHERE col = value B-tree (default) CREATE INDEX idx ON t (col) WHERE col > value B-tree CREATE INDEX idx ON t (col) WHERE a = x AND b > y C...
1.8K
910 springboot-patterns affaan-m/everything-claude-code
Spring Boot architecture and API patterns for scalable, production-grade services. REST API Structure ``` @RestController @RequestMapping("/api/markets") @Validated class MarketController { private final MarketService marketService; MarketController(MarketService marketService) { this.marketService = marketService; } @GetMapping ResponseEntity<Page<MarketResponse>> list( @RequestParam(defaultValue = "0") int page, @RequestParam(defaultValue = "20") int size) { ...
1.8K
911 claude-opus-4-5-migration anthropics/claude-code
Opus 4.5 Migration Guide One-shot migration from Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5. Migration Workflow Search codebase for model strings and API calls Update model strings to Opus 4.5 (see platform-specific strings below) Remove unsupported beta headers Add effort parameter set to "high" (see references/effort.md) Summarize all changes made Tell the user: "If you encounter any issues with Opus 4.5, let me know and I can help adjust your prompts." Model String Updates Identify wh...
1.8K
912 rivetkit rivet-dev/skills
Rivet Actors Build high-performance, long-lived, in-memory processes on Rivet's actor runtime. Use this skill whenever HTTP endpoints, databases, or queues no longer meet the requirements for AI agents, realtime collaboration, workflow orchestration, or geo-distributed data. What To Do If You Get Stuck If something is not working as intended or you are stuck, prompt the user to join the Rivet Discord or file an issue on the Rivet GitHub to report an issue and get help. Provide the user with ...
1.8K
913 langchain-rag langchain-ai/langchain-skills
Pipeline: Index : Load → Split → Embed → Store Retrieve : Query → Embed → Search → Return docs Generate : Docs + Query → LLM → Response Key Components: Document Loaders : Ingest data from files, web, databases Text Splitters : Break documents into chunks Embeddings : Convert text to vectors Vector Stores : Store and search embeddings Vector Store Use Case Persistence InMemory Testing Memory only FAISS Local, high performance Disk Chroma Development Disk Pinecone Production, managed Cloud Complet...
1.8K
914 agentation-self-driving benjitaylor/agentation
Agentation Self-Driving Mode Autonomously critique a web page by adding design annotations via the Agentation toolbar — in a visible headed browser so the user can watch the agent work in real time, like watching a self-driving car navigate. Launch — Always Headed The browser MUST be visible. Never run headless. The user watches you scan, hover, click, and annotate. Preflight : Verify agent-browser is available before anything else: command -v agent-browser > /dev/null || { echo "ERROR: agent-br...
1.8K
915 langgraph-persistence langchain-ai/langchain-skills
Checkpointer : Saves/loads graph state at every super-step Thread ID : Identifies separate checkpoint sequences (conversations) Store : Cross-thread memory for user preferences, facts Two memory types: Short-term (checkpointer): Thread-scoped conversation history Long-term (store): Cross-thread user preferences, facts Checkpointer Use Case Production Ready InMemorySaver Testing, development No SqliteSaver Local development Partial PostgresSaver Production Yes Checkpointer Setup class State(Typed...
1.8K
916 tdd-workflow affaan-m/everything-claude-code
Test-Driven Development Workflow This skill ensures all code development follows TDD principles with comprehensive test coverage. When to Activate Writing new features or functionality Fixing bugs or issues Refactoring existing code Adding API endpoints Creating new components Core Principles 1. Tests BEFORE Code ALWAYS write tests first, then implement code to make tests pass. 2. Coverage Requirements Minimum 80% coverage (unit + integration + E2E) All edge cases covered Error scenarios tested ...
1.8K
917 continuous-learning-v2 affaan-m/everything-claude-code
Continuous Learning v2 - Instinct-Based Architecture An advanced learning system that turns your Claude Code sessions into reusable knowledge through atomic "instincts" - small learned behaviors with confidence scoring. What's New in v2 Feature v1 v2 Observation Stop hook (session end) PreToolUse/PostToolUse (100% reliable) Analysis Main context Background agent (Haiku) Granularity Full skills Atomic "instincts" Confidence None 0.3-0.9 weighted Evolution Direct to skill Instincts → cluster → s...
1.8K
918 langgraph-human-in-the-loop langchain-ai/langchain-skills
interrupt(value) — pauses execution, surfaces a value to the caller Command(resume=value) — resumes execution, providing the value back to interrupt() Checkpointer — required to save state while paused Thread ID — required to identify which paused execution to resume Requirements Three things are required for interrupts to work: Checkpointer — compile with checkpointer=InMemorySaver() (dev) or PostgresSaver (prod) Thread ID — pass {"configurable": {"thread_id": "..."}} to every invoke / stream c...
1.8K
919 desktop control patrickporto/desktop-agent
Desktop Control Skill This skill provides comprehensive desktop automation capabilities through PyAutoGUI, allowing AI agents to control the mouse, keyboard, take screenshots, and interact with the desktop environment. How to Use This Skill As an AI agent, you can invoke desktop automation commands using the uvx desktop-agent CLI. Command Structure All commands follow this pattern: uvx desktop-agent < category > < command > [ arguments ] [ options ] Categories: mouse - Mouse control keyboard - K...
1.8K
920 security-review sickn33/antigravity-awesome-skills
Security Review Skill This skill ensures all code follows security best practices and identifies potential vulnerabilities. When to Activate Implementing authentication or authorization Handling user input or file uploads Creating new API endpoints Working with secrets or credentials Implementing payment features Storing or transmitting sensitive data Integrating third-party APIs Security Checklist 1. Secrets Management ❌ NEVER Do This const apiKey = "sk-proj-xxxxx" // Hardcoded secret const dbP...
1.8K
921 threejs-geometry cloudai-x/threejs-skills
Three.js Geometry Quick Start import * as THREE from "three"; // Built-in geometry const box = new THREE.BoxGeometry(1, 1, 1); const sphere = new THREE.SphereGeometry(0.5, 32, 32); const plane = new THREE.PlaneGeometry(10, 10); // Create mesh const material = new THREE.MeshStandardMaterial({ color: 0x00ff00 }); const mesh = new THREE.Mesh(box, material); scene.add(mesh); Built-in Geometries Basic Shapes // Box - width, height, depth, widthSegments, heightSegments, depthSegments new THREE.BoxG...
1.8K
922 deep-agents-orchestration langchain-ai/langchain-skills
SubAgentMiddleware : Delegate work via task tool to specialized agents TodoListMiddleware : Plan and track tasks via write_todos tool HumanInTheLoopMiddleware : Require approval before sensitive operations All three are automatically included in create_deep_agent() . Subagents (Task Delegation) Use Subagents When Use Main Agent When Task needs specialized tools General-purpose tools sufficient Want to isolate complex work Single-step operation Need clean context for main agent Context bloat acce...
1.8K
923 crypto-market-rank binance/binance-skills-hub
Crypto Market Rank Skill Overview API Function Use Case Social Hype Leaderboard Social buzz ranking Sentiment analysis, social summaries Unified Token Rank Multi-type token rankings Trending, Top Search, Alpha, Stock with filters Smart Money Inflow Rank Token rank by smart money buys Discover tokens smart money is buying most Meme Rank Top meme tokens from Pulse launchpad Find meme tokens most likely to break out Address Pnl Rank Top trader PnL leaderboard Top PnL traders / KOL performance ranki...
1.8K
924 heroui-react heroui-inc/heroui
HeroUI v3 React Development Guide HeroUI v3 is a component library built on Tailwind CSS v4 and React Aria Components, providing accessible, customizable UI components for React applications. CRITICAL: v3 Only - Ignore v2 Knowledge This guide is for HeroUI v3 ONLY. Do NOT use any prior knowledge of HeroUI v2. What Changed in v3 Feature v2 (DO NOT USE) v3 (USE THIS) Provider <HeroUIProvider> required No Provider needed Animations framer-motion package CSS-based, no extra deps Component API Fl...
1.7K
925 nextjs-app-router-fundamentals wsimmonds/claude-nextjs-skills
Next.js App Router Fundamentals Overview Provide comprehensive guidance for Next.js App Router (Next.js 13+), covering migration from Pages Router, file-based routing conventions, layouts, metadata handling, and modern Next.js patterns. TypeScript: NEVER Use any Type CRITICAL RULE: This codebase has @typescript-eslint/no-explicit-any enabled. Using any will cause build failures. ❌ WRONG: function handleSubmit(e: any) { ... } const data: any[] = []; ✅ CORRECT: function handleSubmit(e: Rea...
1.7K
926 django-expert vintasoftware/django-ai-plugins
Django Expert Overview This skill provides expert guidance for Django backend development with comprehensive coverage of models, views, Django REST Framework, forms, authentication, testing, and performance optimization. It follows official Django best practices and modern Python conventions to help you build robust, maintainable applications. Key Capabilities: Model design with optimal ORM patterns View implementation (FBV, CBV, DRF viewsets) Django REST Framework API development Query optimiza...
1.7K
927 tailored-resume-generator composiohq/awesome-claude-skills
Tailored Resume Generator When to Use This Skill Applying for a specific job position Customizing your resume for different industries or roles Highlighting relevant experience for career transitions Optimizing your resume for ATS (Applicant Tracking Systems) Creating multiple resume versions for different job applications Emphasizing specific skills mentioned in job postings What This Skill Does Analyzes Job Descriptions: Extracts key requirements, skills, qualifications, and keywords from job ...
1.7K
928 firebase-basics firebase/agent-skills
Prerequisites Make sure you follow firebase-local-env-setup skill first. This skill assumes you have already installed the Firebase CLI and Firebase MCP server. Core Workflow 1. Authentication Log in to Firebase: npx -y firebase-tools@latest login This opens a browser for authentication. For environments where localhost is not available (e.g., remote shell), use npx -y firebase-tools@latest login --no-localhost . 2. Creating a Project To create a new Firebase project from the CLI: npx -y firebas...
1.7K
929 solana-dev solana-foundation/solana-dev-skill
Solana Development Skill (framework-kit-first) What this Skill is for Use this Skill when the user asks for: Solana dApp UI work (React / Next.js) Wallet connection + signing flows Transaction building / sending / confirmation UX On-chain program development (Anchor or Pinocchio) Client SDK generation (typed program clients) Local testing (LiteSVM, Mollusk, Surfpool) Security hardening and audit-style reviews Confidential transfers (Token-2022 ZK extension) Toolchain setup, version mismatches, G...
1.7K
930 deep-agents-core langchain-ai/langchain-skills
Task Planning : TodoListMiddleware for breaking down complex tasks Context Management : Filesystem tools with pluggable backends Task Delegation : SubAgent middleware for spawning specialized agents Long-term Memory : Persistent storage across threads via Store Human-in-the-loop : Approval workflows for sensitive operations Skills : On-demand loading of specialized capabilities The agent harness provides these capabilities automatically - you configure, not implement. Use Deep Agents When Use La...
1.7K
931 rivetkit-client-javascript rivet-dev/skills
RivetKit JavaScript Client Use this skill when building JavaScript clients (browser, Node.js, or Bun) that connect to Rivet Actors with rivetkit/client. First Steps Install the client (latest: 2.0.42-rc.1) npm install rivetkit@2.0.42-rc.1 Create a client with createClient() and call actor actions. Getting Started See the backend quickstart guide for getting started. Minimal Client import { createClient } from "rivetkit/client"; import type { registry } from "./registry"; const client = cre...
1.7K
932 convex-functions waynesutton/convexskills
Convex Functions Master Convex functions including queries, mutations, actions, and HTTP endpoints with proper validation, error handling, and runtime considerations. Documentation Sources Before implementing, do not assume; fetch the latest documentation: Primary: https://docs.convex.dev/functions Query Functions: https://docs.convex.dev/functions/query-functions Mutation Functions: https://docs.convex.dev/functions/mutation-functions Actions: https://docs.convex.dev/functions/actions HTTP ...
1.7K
933 characteristic-voice noizai/skills
characteristic-voice Make your AI agent sound like a real companion — one who sighs, laughs, hesitates, and speaks with genuine feeling. Triggers say like talk like speak like companion voice comfort me cheer me up sound more human The Two Tricks Non-lexical fillers — sprinkle in little human noises (hmm, haha, aww, heh) at natural pause points to make speech feel alive Emotion tuning — adjust warmth, joy, sadness, tenderness to match the moment Filler Sounds Palette Sound Feeling Use for hmm......
1.7K
934 rivetkit-client-react rivet-dev/skills
RivetKit React Client Use this skill when building React apps that connect to Rivet Actors with @rivetkit/react. First Steps Install the React client (latest: 2.0.42-rc.1) npm install @rivetkit/react@2.0.42-rc.1 Create hooks with createRivetKit() and connect with useActor(). Getting Started See the React quickstart guide for getting started. Install Minimal Client import { createRivetKit } from "@rivetkit/react"; import type { registry } from "./registry"; const { useActor } = createRivetK...
1.7K
935 openclaw-config adisinghstudent/easyclaw
OpenClaw Operations Runbook Diagnose and fix real problems. Every command here is tested and works. Quick Health Check Run this first when anything seems wrong. Copy-paste the whole block: echo "=== GATEWAY ===" && \ ps aux | grep -c "[o]penclaw" && \ echo "=== CONFIG JSON ===" && \ python3 -m json.tool ~/.openclaw/openclaw.json > /dev/null 2 > &1 && echo "JSON: OK" || echo "JSON: BROKEN" && \ echo "=== CHANNELS ===" && \ cat ~/.openclaw/openclaw.json | jq -r '.channels | to_entries[] | "\(.key)...
1.7K
936 xlsx tfriedel/claude-office-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...
1.7K
937 threejs-interaction cloudai-x/threejs-skills
Three.js Interaction Quick Start import * as THREE from "three"; import { OrbitControls } from "three/addons/controls/OrbitControls.js"; // Camera controls const controls = new OrbitControls(camera, renderer.domElement); controls.enableDamping = true; // Raycasting for click detection const raycaster = new THREE.Raycaster(); const mouse = new THREE.Vector2(); function onClick(event) { mouse.x = (event.clientX / window.innerWidth) * 2 - 1; mouse.y = -(event.clientY / window.innerHeight) * ...
1.7K
938 ast-grep ast-grep/agent-skill
ast-grep Code Search Overview This skill helps translate natural language queries into ast-grep rules for structural code search. ast-grep uses Abstract Syntax Tree (AST) patterns to match code based on its structure rather than just text, enabling powerful and precise code search across large codebases. When to Use This Skill Use this skill when users: Need to search for code patterns using structural matching (e.g., "find all async functions that don't have error handling") Want to locate ...
1.7K
939 trading-signal binance/binance-skills-hub
Trading Signal Skill Overview This skill retrieves on-chain Smart Money trading signals to help users track professional investors: Get smart money buy/sell signals Compare signal trigger price with current price Analyze max gain and exit rate of signals Get token tags (e.g., Pumpfun, DEX Paid) API Endpoint Get Smart Money Signals Method : POST URL : https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money Request Headers : Content-Type: application/json Accep...
1.7K
940 firebase-auth-basics firebase/agent-skills
Prerequisites Firebase Project : Created via npx -y firebase-tools@latest projects:create (see firebase-basics ). Firebase CLI : Installed and logged in (see firebase-basics ). Core Concepts Firebase Authentication provides backend services, easy-to-use SDKs, and ready-made UI libraries to authenticate users to your app. Users A user is an entity that can sign in to your app. Each user is identified by a unique ID ( uid ) which is guaranteed to be unique across all providers. User properties inc...
1.7K
941 emil-design-eng emilkowalski/skill
Design Engineering You are a design engineer with the craft sensibility. You build interfaces where every detail compounds into something that feels right. You understand that in a world where everyone's software is good enough, taste is the differentiator. Core Philosophy Taste is trained, not innate Good taste is not personal preference. It is a trained instinct: the ability to see beyond the obvious and recognize what elevates. You develop it by surrounding yourself with great work, thinking ...
1.7K
942 claude-md-improver anthropics/claude-plugins-official
CLAUDE.md Improver Audit, evaluate, and improve CLAUDE.md files across a codebase to ensure Claude Code has optimal project context. This skill can write to CLAUDE.md files. After presenting a quality report and getting user approval, it updates CLAUDE.md files with targeted improvements. Workflow Phase 1: Discovery Find all CLAUDE.md files in the repository: find . -name "CLAUDE.md" -o -name ".claude.md" -o -name ".claude.local.md" 2>/dev/null | head -50 File Types & Locations: Type Loc...
1.7K
943 ckm:ui-styling nextlevelbuilder/ui-ux-pro-max-skill
UI Styling Skill Comprehensive skill for creating beautiful, accessible user interfaces combining shadcn/ui components, Tailwind CSS utility styling, and canvas-based visual design systems. Reference shadcn/ui: https://ui.shadcn.com/llms.txt Tailwind CSS: https://tailwindcss.com/docs When to Use This Skill Use when: Building UI with React-based frameworks (Next.js, Vite, Remix, Astro) Implementing accessible components (dialogs, forms, tables, navigation) Styling with utility-first CSS approach ...
1.7K
944 langchain-middleware langchain-ai/langchain-skills
HumanInTheLoopMiddleware / humanInTheLoopMiddleware : Pause before dangerous tool calls for human approval Custom middleware : Intercept tool calls for error handling, logging, retry logic Command resume : Continue execution after human decisions (approve, edit, reject) Requirements: Checkpointer + thread_id config for all HITL workflows. Human-in-the-Loop @tool def send_email(to: str, subject: str, body: str) -> str: """Send an email.""" return f"Email sent to {to}" agent = create_agent( model=...
1.7K
945 langchain-dependencies langchain-ai/langchain-skills
Key principles: LangChain 1.0 is the current LTS release. Always start new projects on 1.0+. LangChain 0.3 is legacy maintenance-only — do not use it for new work. langchain-core is the shared foundation: always install it explicitly alongside any other package. langchain-community (Python only) does NOT follow semantic versioning; pin it conservatively. LangGraph vs Deep Agents: choose one orchestration approach based on your use case — they are alternatives, not a required stack (see Framework...
1.7K
946 ckm:design-system nextlevelbuilder/ui-ux-pro-max-skill
Design System Token architecture, component specifications, systematic design, slide generation. When to Use Design token creation Component state definitions CSS variable systems Spacing/typography scales Design-to-code handoff Tailwind theme configuration Slide/presentation generation Token Architecture Load: references/token-architecture.md Three-Layer Structure Primitive (raw values) ↓ Semantic (purpose aliases) ↓ Component (component-specific) Example: /* Primitive */ --color-blue-600 : 256...
1.7K
947 pydantic bobmatnyc/claude-mpm-skills
Pydantic Validation Skill Summary Python data validation using type hints and runtime type checking with Pydantic v2's Rust-powered core for high-performance validation. When to Use API request/response validation (FastAPI, Django) Settings and configuration management (env variables, config files) ORM model validation (SQLAlchemy integration) Data parsing and serialization (JSON, dict, custom formats) Type-safe data classes with automatic validation CLI argument parsing with type safety Quick...
1.7K
948 building-ai-agent-on-cloudflare cloudflare/skills
Building Cloudflare Agents Creates AI-powered agents using Cloudflare's Agents SDK with persistent state, real-time communication, and tool integration. When to Use User wants to build an AI agent or chatbot User needs stateful, real-time AI interactions User asks about the Cloudflare Agents SDK User wants scheduled tasks or background AI work User needs WebSocket-based AI communication Prerequisites Cloudflare account with Workers enabled Node.js 18+ and npm/pnpm/yarn Wrangler CLI (npm instal...
1.7K
949 ckm:design nextlevelbuilder/ui-ux-pro-max-skill
Design Unified design skill: brand, tokens, UI, logo, CIP, slides, banners, social photos, icons. When to Use Brand identity, voice, assets Design system tokens and specs UI styling with shadcn/ui + Tailwind Logo design and AI generation Corporate identity program (CIP) deliverables Presentations and pitch decks Banner design for social media, ads, web, print Social photos for Instagram, Facebook, LinkedIn, Twitter, Pinterest, TikTok Sub-skill Routing Task Sub-skill Details Brand identity, voice...
1.7K
950 n8n-mcp-tools-expert czlonkowski/n8n-skills
n8n MCP Tools Expert Master guide for using n8n-mcp MCP server tools to build workflows. Tool Categories n8n-mcp provides tools organized into categories: Node Discovery → SEARCH_GUIDE.md Configuration Validation → VALIDATION_GUIDE.md Workflow Management → WORKFLOW_GUIDE.md Template Library - Search and deploy 2,700+ real workflows Documentation & Guides - Tool docs, AI agent guide, Code node guides Quick Reference Most Used Tools (by success rate) Tool Use When Speed search_nodes Finding no...
1.7K