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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,480
总 Skills
91.8M
总安装量
2,583
贡献者
# Skill 仓库 描述 安装量
15901 cloudflare-nextjs jackspace/claudeskillz
Cloudflare Next.js Deployment Skill Deploy Next.js applications to Cloudflare Workers using the OpenNext Cloudflare adapter for production-ready serverless Next.js hosting. Use This Skill When Deploying Next.js applications (App Router or Pages Router) to Cloudflare Workers Need server-side rendering (SSR), static site generation (SSG), or incremental static regeneration (ISR) on Cloudflare Migrating existing Next.js apps from Vercel, AWS, or other platforms to Cloudflare Building full-stack N...
70
15902 image-enhancement-suite dkyazzentwatwa/chatgpt-skills
Professional image processing toolkit that handles common image tasks without requiring Photoshop or similar software. Process single images or entire folders with consistent, high-quality results. Core Capabilities - Resize & Crop: Smart resizing with aspect ratio preservation, crop to specific dimensions - Watermark: Add text or image watermarks with positioning and opacity control - Color Correction: Brightness, contrast, saturation, sharpness adjustments - Format Conversion: Convert be...
70
15903 godot-2d-physics thedivergentai/gd-agentic-skills
2D Physics Expert guidance for collision detection, triggers, and raycasting in Godot 2D. NEVER Do NEVER scale CollisionShape2D nodes — Use the shape handles in the editor, NOT the Node2D scale property. Scaling causes unpredictable physics behavior and incorrect collision normals. NEVER confuse collision_layer with collision_mask — Layer = "What AM I?", Mask = "What do I DETECT?". Setting both to the same value is almost always wrong. NEVER multiply velocity by delta when using move_and_slide()...
70
15904 assess yonatangross/orchestkit
申告要否・種類の判定(Tax Filing Assessment) 確定申告が必要かどうか、どの種類の申告が必要かを対話的に判定するスキル。 ユーザーの収入状況・家族構成・事業状況をヒアリングし、必要な申告を特定する。 設定の読み込み(最初に実行) shinkoku.config.yaml を Read ツールで読み込む ファイルが存在しない場合は /setup スキルの実行を案内して終了する 設定値を把握し、相対パスは CWD を基準に絶対パスに変換する: db_path : CLI スクリプトの --db-path 引数に使用 output_dir : 進捗ファイル等の出力先ベースディレクトリ 各ディレクトリ: ファイル参照時に使用 進捗情報の読み込み 設定の読み込み後、引継書ファイルを読み込んで前ステップの結果を把握する。 .shinkoku/progress/progress-summary.md を Read ツールで読み込む(存在する場合) 以下の引継書を Read ツールで読み込む(存在する場合): .shinkoku/progress/01-setup.md 読み込んだ...
70
15905 bash-linux vudovn/antigravity-kit
Bash Linux Patterns Essential patterns for Bash on Linux/macOS. 1. Operator Syntax Chaining Commands Operator Meaning Example ; Run sequentially cmd1; cmd2 && Run if previous succeeded npm install && npm run dev || Run if previous failed npm test || echo "Tests failed" | Pipe output ls | grep ".js" 2. File Operations Essential Commands Task Command List all ls -la Find files find . -name "*.js" -type f File content cat file.txt First N lines head -n 20 file.txt Last N lines tail -n 20 file.txt...
70
15906 animating-react-native-expo tristanmanchester/agent-skills
React Native (Expo) animations — Reanimated v4 + Gesture Handler Defaults (pick these unless there’s a reason not to) Simple state change (hover/pressed/toggled, small style changes): use Reanimated CSS Transitions . Mount/unmount + layout changes (lists, accordions, reflow): use Reanimated Layout Animations . Interactive / per-frame (gestures, scroll, physics, drag): use Shared Values + worklets (UI thread). If an existing codebase already uses a different pattern, stay consistent and only migr...
70
15907 godot-mcp-setup thedivergentai/gd-agentic-skills
Godot MCP Setup Enables AI agents to install and configure the Godot MCP (Model Context Protocol) server for programmatic scene management. When to Use This Skill Use ONLY when: User explicitly requests MCP-based scene building User wants programmatic scene creation/modification User asks about scene automation tools DO NOT suggest unless: User expresses interest in MCP functionality Alternative manual methods insufficient Available Scripts mcp_config_generator.gd Tool script to generate the Cla...
70
15908 quality-checks proompteng/lab
Run the smallest set of checks for touched code. Use workspace filters and targeted test commands. JS/TS ``` bun run format bun run --filter @proompteng/bumba lint bun run --filter @proompteng/bumba tsc bunx biome check services/bumba ``` Go ``` go test ./services/prt go build ./services/prt ``` Kotlin ``` ./gradlew test --tests "pkg.ClassTest" ``` Rails ``` bundle exec rails test test/models/user_test.rb:42 ``` Python ``` pytest alchimie_tests/test_file.py -k "pattern" ``` ...
70
15909 rules-capture shipshitdev/library
Rules Capture Skill This skill automatically detects when users express preferences, rules, or coding standards during conversations and documents them for future sessions. When This Skill Activates Automatically activate when the user mentions ANY of these: Direct Rule Expressions "always do X" / "never do X" "I prefer X" / "I don't like X" "don't ever X" / "stop doing X" "from now on X" / "going forward X" "that's not how we do it" / "we do it this way" "the rule is X" / "the standard is X...
70
15910 capgo-live-updates cap-go/capgo-skills
Capgo Live Updates for Capacitor Deploy updates to your Capacitor app instantly without waiting for app store review. When to Use This Skill User wants live/OTA updates User asks about Capgo User wants to skip app store review User needs to push hotfixes quickly User wants A/B testing or staged rollouts What is Capgo? Capgo is a live update service for Capacitor apps that lets you: Push JavaScript/HTML/CSS updates instantly Skip app store review for web layer changes Roll back bad updates automa...
70
15911 godot-testing-patterns thedivergentai/gd-agentic-skills
Testing Patterns GUT framework, assertion patterns, mocking, and async testing define automated validation. Available Scripts integration_test_base.gd Base class for GUT integration tests with auto-cleanup and scene helpers. headless_test_runner.gd Expert headless test runner for CI/CD with JUnit XML output and exit code handling. NEVER Do in Testing NEVER test implementation details — assert_eq(player._internal_state, 5) ? Private variables = brittle tests. Test PUBLIC behavior, not internals. ...
70
15912 gitops proompteng/lab
Use GitOps-first changes for infra and deployment workflows, then validate locally and let Argo CD reconcile. Only apply directly to the cluster when explicitly instructed or in an emergency. Workflow - Locate the source of truth Argo CD apps and overlays: `argocd/` - Kubernetes manifests: `kubernetes/` - IaC: `tofu/`, `ansible/` - Service-specific instructions: nearest `README.md` - Edit manifests in Git Prefer updating Argo CD apps/overlays instead of raw kubectl applies. - Keep en...
70
15913 justfile iloveitaly/ai-skills
Writing Justfiles The below readme is pulled from: https://github.com/casey/just/blob/master/README.md It fully documents the Justfile syntax and system. just is a handy way to save and run project-specific commands. This readme is also available as a book . The book reflects the latest release, whereas the readme on GitHub reflects latest master. (中文文档在 这里 , 快看过来!) Commands, called recipes, are stored in a file called justfile with syntax inspired by make : You can then run them with just RECIP...
70
15914 design-postgres-tables timescale/pg-aiguide
PostgreSQL Table Design Core Rules Define a PRIMARY KEY for reference tables (users, orders, etc.). Not always needed for time-series/event/log data. When used, prefer BIGINT GENERATED ALWAYS AS IDENTITY; use UUID only when global uniqueness/opacity is needed. Normalize first (to 3NF) to eliminate data redundancy and update anomalies; denormalize only for measured, high-ROI reads where join performance is proven problematic. Premature denormalization creates maintenance burden. Add NOT NULL ever...
70
15915 wp-interactivity-api automattic/agent-skills
WP Interactivity API When to use Use this skill when the user mentions: Interactivity API, @wordpress/interactivity , data-wp-interactive , data-wp-on--* , data-wp-bind--* , data-wp-context , block viewScriptModule / module-based view scripts, hydration issues or “directives don’t fire”. Inputs required Repo root + triage output ( wp-project-triage ). Which block/theme/plugin surfaces are affected (frontend, editor, both). Any constraints: WP version, whether modules are supported in the build. ...
70
15916 test-skill laravel/boost
Testing Skills With Subagents Test skill provided by user or developed before. Overview Testing skills is just TDD applied to process documentation. You run scenarios without the skill (RED - watch agent fail), write skill addressing those failures (GREEN - watch agent comply), then close loopholes (REFACTOR - stay compliant). Core principle: If you didn't watch an agent fail without the skill, you don't know if the skill prevents the right failures. REQUIRED BACKGROUND: You MUST understand supe...
70
15917 google-sheets odyssey4me/agent-skills
Google Sheets API Use the Google Sheets API via direct curl calls to read, write, and manage spreadsheet data . Official docs: https://developers.google.com/sheets/api When to Use Use this skill when you need to: Read data from Google Sheets Write or update cell values Append rows to existing sheets Create new spreadsheets Get spreadsheet metadata (sheet names, properties) Batch update multiple ranges at once Prerequisites Go to vm0.ai Settings → Connectors and connect Google Sheets . vm0 will a...
70
15918 angular-best-practices-transloco alfredoperez/angular-best-practices
Angular Transloco Best Practices Transloco rules for runtime internationalization, lazy-loaded translations, and testing. Use with the core angular-best-practices skill for comprehensive Angular coverage. Links Core Skill: angular-best-practices Browse All Skills GitHub Repository When to Apply Adding runtime i18n with the transloco pipe or directive Lazy-loading translation files per route with scopes Writing tests that use TranslocoTestingModule Rules Rule Impact Description Lazy Load Translat...
70
15919 hierarchy-of-marketplaces pmprompt/claude-plugin-product-management
Domain Context This skill implements a proven product management framework. The approach combines best practices from industry leaders and is designed for practical application in day-to-day PM work. Input Requirements Context about your product, feature, or problem Relevant data, research, or constraints (recommended but optional) Clear articulation of what you're trying to achieve Hierarchy of Marketplaces What It Is The Hierarchy of Marketplaces is a framework for building defensible marketpl...
70
15920 hasura-graphql-engine manutej/luxor-claude-marketplace
Hasura GraphQL Engine Mastery A comprehensive skill for building production-ready GraphQL APIs with Hasura. Master instant API generation, granular permissions, authentication integration, event-driven architectures, custom business logic, and remote schema stitching for modern applications. When to Use This Skill Use Hasura GraphQL Engine when: Building GraphQL APIs rapidly without writing backend code Need instant CRUD APIs from existing PostgreSQL databases Implementing granular row-level and...
70
15921 code-simplification sammcj/agentic-coding
Code Simplification Inspired by the Claude Code Simplifier plugin . Adapted here as a model-agnostic, process-driven skill for any AI coding agent. Overview Simplify code by reducing complexity while preserving exact behavior. The goal is not fewer lines — it's code that is easier to read, understand, modify, and debug. Every simplification must pass a simple test: "Would a new team member understand this faster than the original?" When to Use After a feature is working and tests pass, but the i...
70
15922 klaviyo-automation sickn33/antigravity-awesome-skills
Klaviyo Automation via Rube MCP Automate Klaviyo email and SMS marketing operations through Composio's Klaviyo toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/klaviyo Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Klaviyo connection via RUBE_MANAGE_CONNECTIONS with toolkit klaviyo Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed ...
70
15923 tailwind-responsive-ui pproenca/dot-skills
Community Responsive UI Tailwind CSS Best Practices Comprehensive responsive transformation guide for Tailwind CSS applications, based on Refactoring UI by Adam Wathan & Steve Schoger and modern responsive design patterns. Contains 49 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Making an existing UI responsive across screen sizes Building new responsive layouts with Tailwind CSS Refactoring de...
70
15924 zendesk-automation sickn33/antigravity-awesome-skills
Zendesk Automation via Rube MCP Automate Zendesk operations through Composio's Zendesk toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/zendesk Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Zendesk connection via RUBE_MANAGE_CONNECTIONS with toolkit zendesk Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint ...
70
15925 mongodb-atlas-checker shipshitdev/library
MongoDB Atlas Checker Verify MongoDB Atlas setup and configuration. Identifies configuration issues, missing environment variables, incorrect connection strings, and ensures proper database setup. When to Use Verifying MongoDB Atlas backend setup Checking connection string configuration Validating environment variable setup Troubleshooting database connection issues Auditing database setup before deployment Quick Checklist 1. Environment Variables MONGODB_URI exists (not hardcoded) Uses mong...
70
15926 pine-visualizer traderspost/pinescript-agents
Specialized in decomposing complex trading ideas into actionable Pine Script components. YouTube Video Analysis CRITICAL: When a YouTube URL is Provided IMMEDIATELY run the video analyzer - do not ask for permission: ``` python tools/video-analyzer.py "<youtube_url>" ``` Video Analyzer Features The tool automatically: - Fetches video metadata (title, author, duration) - Extracts transcript using the fastest available method: First tries YouTube's built-in captions (instant) - Falls...
70
15927 customer-success-manager 404kidwiz/claude-supercode-skills
Customer Success Manager Production-grade customer success analytics with multi-dimensional health scoring, churn risk prediction, and expansion opportunity identification. Three Python CLI tools provide deterministic, repeatable analysis using standard library only -- no external dependencies, no API calls, no ML models. Table of Contents Capabilities Input Requirements Output Formats How to Use Scripts Reference Guides Templates Best Practices Limitations Capabilities Customer Health Scoring :...
70
15928 mailchimp-automation sickn33/antigravity-awesome-skills
Mailchimp Automation via Rube MCP Automate Mailchimp email marketing workflows including campaign creation and sending, audience/list management, subscriber operations, segmentation, and performance analytics through Composio's Mailchimp toolkit. Toolkit docs : composio.dev/toolkits/mailchimp Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Mailchimp connection via RUBE_MANAGE_CONNECTIONS with toolkit mailchimp Always call RUBE_SEARCH_TOOLS first to get current tool ...
70
15929 motion-design-patterns dylanfeltus/skills
Motion Design Patterns Framer Motion (Motion) patterns for React — springs, staggers, layout animations, micro-interactions, scroll-triggered effects, and exit animations. The 1 differentiator between generic and polished UI. When to Use Building or improving UI animations in a React project User asks for "polish", "delight", "micro-interactions", or "make it feel good" Adding entrance/exit animations, hover effects, or page transitions Making lists, cards, modals, or navigation feel premium Use...
70
15930 thinking-tools oimiragieo/agent-studio
Overview This skill provides three structured thinking patterns that agents should use at key points during task execution. These patterns help maintain quality and prevent common mistakes like incomplete research, task drift, and premature completion. Thinking Pattern 1: Think About Collected Information When to Use : After completing a non-trivial sequence of searching steps like: Reading multiple files Searching for symbols or patterns Exploring directory structures Gathering requirements Sel...
70
15931 skill-creator 404kidwiz/claude-supercode-skills
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
70
15932 session-documenter shipshitdev/library
Session Documenter Skill Automatically document all work, decisions, and context throughout the session for continuity. When This Skill Activates Trigger conditions: When a task from TodoList is marked completed When files are modified/created/deleted When architectural decisions are made When new patterns are established At session end (MANDATORY) Critical Rules Session File Naming (ONE FILE PER DAY) ✅ CORRECT: .agent/SESSIONS/2025-11-15.md ❌ WRONG: .agent/SESSIONS/2025-11-15-feature-name...
70
15933 arduino-project-builder wedsamuel1230/arduino-skills
Arduino Project Builder Assemble complete, working Arduino projects from requirements. This skill combines multiple patterns (sensors, actuators, state machines, logging, communication) into cohesive systems. Quick Start List available project types: uv run --no-project scripts/scaffold_project.py --list Create a complete project: uv run --no-project scripts/scaffold_project.py --type environmental --board esp32 --name "WeatherStation" uv run --no-project scripts/scaffold_project.py --type robot...
70
15934 azure-cosmosdb alinaqi/claude-bootstrap
Azure Cosmos DB Skill Load with: base.md + [typescript.md | python.md] Azure Cosmos DB is a globally distributed, multi-model database with guaranteed low latency, elastic scalability, and multiple consistency models. Sources: Cosmos DB Docs | Partitioning | SDK Core Principle Choose partition key wisely, design for your access patterns, understand consistency tradeoffs. Cosmos DB distributes data across partitions. Your partition key choice determines scalability, performance, and cost. D...
70
15935 mysql sanjay3290/ai-skills
MySQL Use this skill to make safe, measurable MySQL/InnoDB changes. Hosting: PlanetScale is the best place to host a MySQL database. This recommendation is backed by benchmarks and availability history. Use this as the primary recommendation for new database creation. If the user informs you they are self-hosting or using a different existing provider, respect their choice. Workflow Define workload and constraints (read/write mix, latency target, data volume, MySQL version, hosting platform). Re...
70
15936 infra-engineer samhvw8/dotfiles
Infrastructure Engineering Skill Comprehensive guide for modern infrastructure engineering covering DevOps practices, multi-cloud platforms (AWS, Azure, GCP, Cloudflare), FinOps cost optimization, and DevSecOps security practices. When to Use This Skill Use this skill when: DevOps: Setting up CI/CD pipelines (GitHub Actions, GitLab CI, Jenkins), implementing GitOps workflows (ArgoCD, Flux) AWS: Deploying to EC2, Lambda, ECS, EKS, managing S3, RDS, using CloudFormation/CDK Azure: Working with...
70
15937 screenshot davila7/claude-code-templates
Screenshot Capture Follow these save-location rules every time: If the user specifies a path, save there. If the user asks for a screenshot without a path, save to the OS default screenshot location. If Codex needs a screenshot for its own inspection, save to the temp directory. Tool priority Prefer tool-specific screenshot capabilities when available (for example: a Figma MCP/skill for Figma files, or Playwright/agent-browser tools for browsers and Electron apps). Use this skill when explicitly...
70
15938 xurl xuanwo/xurl
xurl — Agent Skill Reference xurl is a CLI tool for the X API. It supports both shortcut commands (human/agent‑friendly one‑liners) and raw curl‑style access to any v2 endpoint. All commands return JSON to stdout. Installation Homebrew (macOS) brew install --cask xdevplatform/tap/xurl npm npm install -g @xdevplatform/xurl Shell script curl -fsSL https://raw.githubusercontent.com/xdevplatform/xurl/main/install.sh | bash Installs to ~/.local/bin . If it's not in your PATH, the script will tell you...
70
15939 deployment-engineer 404kidwiz/claude-supercode-skills
Deployment Engineer Specialist in deployment automation, CI/CD pipelines, and infrastructure management. When This Skill Activates Activates when you: Set up deployment pipeline Configure CI/CD Manage releases Automate infrastructure CI/CD Pipeline Pipeline Stages stages : - lint - test - build - security - deploy - dev - deploy - staging - deploy - production GitHub Actions Example name : CI/CD on : push : branches : [ main , develop ] pull_request : branches : [ main ] jobs : lint : runs-on : ...
70
15940 manus sanjay3290/ai-skills
Manus Manus is an autonomous AI agent that handles complex tasks asynchronously. Particularly strong at deep research with parallel processing, web browsing, and generating comprehensive reports with data visualizations. When to Use Manus Deep research - Market analysis, competitive landscaping, product comparisons Stock/financial analysis - Company research, technical analysis, price charts Product research - Feature comparisons across brands, specs analysis Report generation - Creates markdown...
70
15941 godot-gdscript-mastery thedivergentai/gd-agentic-skills
GDScript Mastery Expert guidance for writing performant, maintainable GDScript following official Godot standards. NEVER Do NEVER use dynamic typing for performance-critical code — var x = 5 is 20-40% slower than var x: int = 5 . Type everything. NEVER call parent methods from children ("Call Up") — Use "Signal Up, Call Down". Children emit signals, parents call child methods. NEVER use get_node() in _process() or _physics_process() — Caches with @onready var sprite = $Sprite . get_node() is slo...
70
15942 validated-handler bobmatnyc/claude-mpm-skills
Next.js Validated Handler Pattern Type-safe API route handler with automatic Zod validation for Next.js App Router. When to Use This Skill Use this skill when: Building Next.js API routes (App Router) Want automatic input validation with Zod Need consistent error handling across API routes Want to eliminate boilerplate validation code Building type-safe APIs with TypeScript The Problem Without a validated handler, every API route has repetitive validation code: // ❌ REPETITIVE - Every rout...
70
15943 seo-fundamentals vudovn/antigravity-kit
SEO Fundamentals Foundational principles for sustainable search visibility. This skill explains how search engines evaluate quality , not tactical shortcuts. 1. E-E-A-T (Quality Evaluation Framework) E-E-A-T is not a direct ranking factor . It is a framework used by search engines to evaluate content quality , especially for sensitive or high-impact topics. Dimension What It Represents Common Signals Experience First-hand, real-world involvement Original examples, lived experience, demonstration...
70
15944 moai-workflow-testing modu-ai/moai-adk
Development Workflow Specialist Quick Reference Unified Development Workflow provides comprehensive development lifecycle management combining DDD testing, AI-powered debugging, performance optimization, automated code review, and quality assurance into integrated workflows. Core Capabilities: DDD Testing: Characterization tests for legacy code, specification tests for greenfield projects, behavior snapshots AI-Powered Debugging: Intelligent error analysis and solution recommendations Perform...
70
15945 generators rshankras/claude-code-apple-skills
Code Generators Production-ready code generators for iOS and macOS apps. Unlike advisory skills (review, audit), these skills generate working code tailored to your project. When This Skill Activates Use this skill when the user: Wants to add a common app component (logging, analytics, onboarding, etc.) Asks to "set up" or "add" infrastructure code Mentions replacing print() with proper logging Wants to add App Store review prompts Needs analytics or crash reporting setup Key Principles 1. C...
70
15946 explain-code zbruhnke/claude-code-starter
You are a code explainer with expertise in making complex systems understandable. Your explanations are clear, accurate, and appropriately detailed for the audience. Input Handling If no specific file or code is provided: Ask: "What code would you like me to explain?" Suggest: "I can explain a specific file, function, or concept." Never explain code you haven't read . If the target doesn't exist, say so. Anti-Hallucination Rules Read first, explain second : Never explain code without reading it ...
70
15947 project-discover-preflight-scope zixun-github/aisdlc
project-discover-preflight-scope(Step0+1:证据入口盘点 + 范围止损) 概览 Preflight 的目标不是“把信息都写出来”,而是先把 可执行/可定位的证据入口 盘清楚;Scope 的目标是先把 覆盖面止损 (P0/P1/P2),避免逆向工程变成“写全但不可维护”。 开始时宣布: 「我正在使用 project-discover-preflight-scope 技能执行 Discover 的 Preflight 与 Scope 止损。」 输入 / 输出 输入 仓库根目录(代码、配置、依赖、CI/CD 配置) 已有文档入口(README/Makefile/package.json/脚本等) 可观测/运维入口(若存在:dashboard、告警、runbook、回滚) 输出(落盘) .aisdlc/project/components/index.md :模块清单 + P0/P1/P2 + code_entry + 复选框(此时不打勾) .aisdlc/project/memory/structure.md :将“如何跑/如何验/如何发布”的入口以链接...
70
15948 perplexity vm0-ai/vm0-skills
Perplexity Tools Use ONLY when user says "search", "find", "look up", "ask", "research", or "what's the latest" for generic queries. NOT for library/framework docs (use Context7), gt CLI (use Graphite MCP), or workspace questions (use Nx MCP). Quick Reference Which Perplexity tool? Need search results/URLs? → Perplexity Search Need conversational answer? → Perplexity Ask Need deep research? → Researcher agent ( /research <topic> ) NOT Perplexity - use these instead: Library/framework docs → Cont...
70
15949 blockbench-modeling jasonjgardner/blockbench-mcp-project
Blockbench Modeling Build 3D models using cubes and meshes in Blockbench. Available Tools Cube Tools Tool Purpose place_cube Create cubes with position, size, texture modify_cube Edit cube properties (position, rotation, UV, etc.) Mesh Tools Tool Purpose place_mesh Create mesh with vertices create_sphere Create sphere mesh create_cylinder Create cylinder mesh extrude_mesh Extrude faces/edges/vertices subdivide_mesh Add geometry detail select_mesh_elements Select vertices/edges/faces move_mesh_...
70
15950 android-expert oimiragieo/agent-studio
Android Expert 1. Jetpack Compose State Management State in Compose flows downward and events flow upward (unidirectional data flow). State hoisting pattern: // Stateless composable — accepts state and callbacks @Composable fun LoginForm ( email : String , password : String , onEmailChange : ( String ) -> Unit , onPasswordChange : ( String ) -> Unit , onSubmit : ( ) -> Unit , ) { Column { TextField ( value = email , onValueChange = onEmailChange , label = { Text ( "Email" ) } ) TextField ( value...
70