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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,443
总 Skills
161.7M
总安装量
2,742
贡献者
# Skill 仓库 描述 安装量
22251 laravel:tdd-with-pest jpcaparas/superpowers-laravel
Write the test first. Watch it fail. Write minimal code to pass. Keep tests fast and realistic. Test Runner ``` Sail sail artisan test --parallel Non-Sail php artisan test --parallel ``` Prefer Pest (default in new Laravel apps). PHPUnit is fine if your project uses it. RED – Write a failing test - Use model factories; avoid heavy mocking - Feature tests for HTTP/controllers; unit tests for pure services - Name tests by behavior Example (feature): ``` it('rejects empty email on si...
50
22252 analyze-crypto jssfy/k-skills
Analyze Crypto — 一键加密货币综合分析 输入代币名称或符号,自动并行采集五个维度的数据,综合分析后输出标准报告。 When to Use 当用户请求以下操作时触发: "分析BTC" / "分析以太坊" / "分析SOL" "analyze BTC" / "analyze Ethereum" "比特币怎么样" / "ETH最近为什么涨/跌" "帮我看看SOL" / "DOGE值得买吗" Phase 0: 解析输入 根据用户输入,识别以下信息: 代币名称映射 (常用代币中英文对照) 比特币/Bitcoin → BTC 以太坊/Ethereum → ETH 索拉纳/Solana → SOL 瑞波/Ripple → XRP 币安币/BNB Chain → BNB 艾达/Cardano → ADA 狗狗币/Dogecoin → DOGE 波卡/Polkadot → DOT 雪崩/Avalanche → AVAX 马蹄/Polygon → POL 链接/Chainlink → LINK 莱特币/Litecoin → LTC Uniswap → UNI Aave → AAVE Ton...
50
22253 data-metabase vasilyu1983/ai-agents-public
Metabase Automate Metabase via API: reports (cards), dashboards, and chart settings. Quick Start Inputs (env vars) METABASE_URL (e.g., https://metabase.example.com) Preferred: METABASE_API_KEY Fallback: METABASE_USERNAME + METABASE_PASSWORD Sanity checks python3 frameworks/shared-skills/skills/data-metabase/scripts/metabase_api.py health python3 frameworks/shared-skills/skills/data-metabase/scripts/metabase_api.py whoami Live API documentation Your Metabase instance serves OpenAPI docs at /a...
50
22254 azure-mgmt-mongodbatlas-dotnet sickn33/antigravity-awesome-skills
Azure.ResourceManager.MongoDBAtlas SDK Manage MongoDB Atlas Organizations as Azure ARM resources with unified billing through Azure Marketplace. Package Information Property Value Package Azure.ResourceManager.MongoDBAtlas Version 1.0.0 (GA) API Version 2025-06-01 Resource Type MongoDB.Atlas/organizations NuGet Azure.ResourceManager.MongoDBAtlas Installation dotnet add package Azure.ResourceManager.MongoDBAtlas dotnet add package Azure.Identity dotnet add package Azure.ResourceManager Important ...
50
22255 defense-in-depth zenobi-us/dotfiles
Defense-in-Depth Validation Overview When you fix a bug caused by invalid data, adding validation at one place feels sufficient. But that single check can be bypassed by different code paths, refactoring, or mocks. Core principle: Validate at EVERY layer data passes through. Make the bug structurally impossible. Why Multiple Layers Single validation: "We fixed the bug" Multiple layers: "We made the bug impossible" Different layers catch different cases: Entry validation catches most bugs Busines...
50
22256 better-auth-best-practices connorads/dotfiles
Better Auth Integration Guide Always consult better-auth.com/docs for code examples and latest API. Setup Workflow Install: npm install better-auth Set env vars: BETTER_AUTH_SECRET and BETTER_AUTH_URL Create auth.ts with database + config Create route handler for your framework Run npx @better-auth/cli@latest migrate Verify: call GET /api/auth/ok — should return { status: "ok" } Quick Reference Environment Variables BETTER_AUTH_SECRET - Encryption secret (min 32 chars). Generate: openssl rand -b...
50
22257 backtest-expert nicepkg/ai-workflow
Backtest Expert Systematic approach to backtesting trading strategies based on professional methodology that prioritizes robustness over optimistic results. Core Philosophy Goal : Find strategies that "break the least", not strategies that "profit the most" on paper. Principle : Add friction, stress test assumptions, and see what survives. If a strategy holds up under pessimistic conditions, it's more likely to work in live trading. When to Use This Skill Use this skill when: Developing or valid...
50
22258 service-integration mgd34msu/goodvibes-plugin
Resources scripts/ validate-services.sh references/ service-patterns.md Service Integration Implementation This skill guides you through integrating external services into applications, from service selection to production deployment. It leverages GoodVibes precision tools for type-safe, resilient service integrations with proper error handling and testing. When to Use This Skill Use this skill when you need to: Integrate email providers (Resend, SendGrid, Postmark) Set up content management sys...
50
22259 opencode volcengine/openviking
OpenCode Skill Use helper scripts to manage your OpenCode instances. Helper Scripts All scripts are in the workspace skills directory. Run them with: uv run python skills/opencode/script_name.py Note: Do not kill the opencode process. Scripts list_sessions.py Listing all OpenCode sessions Example: uv run python skills/opencode/list_sessions.py list_messages_of_session.py Listing latest OpenCode messages by session_id Example: uv run python skills/opencode/list_sessions.py {session_id} Session St...
50
22260 ios-design-system pproenca/dot-skills
Airbnb iOS Design System Best Practices Opinionated, strict design system engineering for SwiftUI iOS 26 / Swift 6.2 apps. Contains 50 rules across 8 categories, prioritized by impact. Derived from Airbnb's Design Language System (DLS), Airbnb Swift Style Guide, Apple Human Interface Guidelines, and WWDC sessions. Mandates @Equatable on every view, @Observable for state, and style protocols as the primary component API. Mandated Architecture Alignment This skill is designed to work alongside swi...
50
22261 code-review unclecatvn/agent-skills
Two-axis review of the diff between HEAD and a fixed point the user supplies: Standards — does the code conform to this repo's documented coding standards? Spec — does the code faithfully implement the originating issue / PRD / spec? Both axes run as parallel sub-agents so they don't pollute each other's context, then this skill aggregates their findings. The issue tracker should have been provided to you — run /setup-matt-pocock-skills if docs/agents/issue-tracker.md is missing. Process 1. Pin ...
50
22262 workers-migration secondsky/claude-skills
Migrate existing applications to Cloudflare Workers from various platforms. Migration Decision Tree ``` What are you migrating from? ├── AWS Lambda │ └── Node.js handler? → Lambda adapter pattern │ └── Python? → Consider Python Workers │ └── Container/custom runtime? → May need rewrite ├── Vercel/Next.js │ └── API routes? → Minimal changes with adapter │ └── Full Next.js app? → Use OpenNext adapter │ └── Middleware? → Direct Workers equivalent ├── Express/Node.js │ └── Simple AP...
50
22263 code-simplifier aktsmm/agent-skills
Code Simplifier You are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions. Refinement Principles 1. Preserve Functionality Never change what the code does - only how it does it. All original features, outputs, ...
50
22264 domain-classifier huangserva/skill-prompt-generator
No SKILL.md available for this skill. View on GitHub
50
22265 project-test-loop laurigates/claude-plugins
Run automated TDD cycle: test → fix → refactor. Note : Configure project-specific test/build commands in CLAUDE.md or .claude/rules/ for automatic detection. Steps : Detect test command (if not already configured): Check package.json for scripts.test (Node.js) Check for pytest or python -m unittest (Python) Check for cargo test (Rust) Check for go test ./... (Go) Check Makefile for test target If not found, ask user how to run tests Run test suite : Run detected test command [ test_command ] An...
50
22266 api-architect erichowens/some_claude_skills
API Architect Expert API designer specializing in REST, GraphQL, gRPC, and WebSocket architectures. Activation Triggers Activate on: "API design", "REST API", "GraphQL schema", "gRPC service", "OpenAPI", "Swagger", "API versioning", "endpoint design", "rate limiting", "OAuth flow", "API gateway" NOT for: Database schema → data-pipeline-engineer | Frontend consumption → web-design-expert | Deployment → devops-automator Quick Start Define API contract first (API-first design) Choose paradigm:...
50
22267 dataset-comparer dkyazzentwatwa/chatgpt-skills
Dataset Comparer Compare two CSV/Excel datasets to identify differences, additions, deletions, and value changes. Features Row Comparison: Find added, removed, and matching rows Value Changes: Detect changed values in matching rows Column Comparison: Identify schema differences Statistics: Summary of differences Diff Reports: HTML, CSV, and JSON output Flexible Matching: Compare by key columns or row position Quick Start from dataset_comparer import DatasetComparer comparer = DatasetComparer(...
50
22268 api-design mgd34msu/goodvibes-plugin
API Design When to use this skill Designing new REST APIs Creating GraphQL schemas Refactoring API endpoints Documenting API specifications API versioning strategies Defining data models and relationships Instructions Step 1: Define API requirements Identify resources and entities Define relationships between entities Specify operations (CRUD, custom actions) Plan authentication/authorization Consider pagination, filtering, sorting Step 2: Design REST API Resource naming : Use nouns, not verbs: ...
50
22269 template-renderer oimiragieo/agent-studio
Template Renderer Step 1: Validate Inputs (SECURITY - MANDATORY) Template Path Validation (SEC-SPEC-002): Verify template file exists within PROJECT_ROOT Reject any path traversal attempts (../) Only allow templates from .claude/templates/ Token Whitelist Validation (SEC-SPEC-003): // Allowed tokens by template type const SPEC_TOKENS = [ 'FEATURE_NAME' , 'VERSION' , 'AUTHOR' , 'DATE' , 'STATUS' , 'ACCEPTANCE_CRITERIA_1' , 'ACCEPTANCE_CRITERIA_2' , 'ACCEPTANCE_CRITERIA_3' , 'TERM_1' , 'TERM_2' , ...
50
22270 carousels-sliders dylantarre/animation-principles
Carousel & Slider Animation Principles Apply Disney's 12 principles to carousels and sliders for smooth, intuitive navigation. Principles Applied to Carousels 1. Squash & Stretch Slides can slightly compress in scroll direction during fast swipes. Expands perception of speed and momentum. 2. Anticipation Before slide change, current slide can shift 5-10px in direction of navigation. Button can depress before triggering. 3. Staging Current/active slide should be prominently displayed: larg...
50
22271 csm-patterns groeimetai/snow-flow
Customer Service Management for ServiceNow CSM enables organizations to deliver exceptional customer service through cases, accounts, and self-service. CSM Architecture Account (customer_account) ├── Contacts (customer_contact) ├── Contracts (ast_contract) │ └── Entitlements (service_entitlement) ├── Assets (alm_asset) └── Cases (sn_customerservice_case) ├── Case Tasks └── Communications Key Tables Table Purpose customer_account Customer accounts customer...
50
22272 write-blog openclaudia/openclaudia-skills
Write Blog Post Skill You are an expert SEO content writer. Create comprehensive, well-researched blog posts optimized for both search engines and readers. Follow the E-E-A-T framework (Experience, Expertise, Authoritativeness, Trustworthiness). Blog Writing Process Step 1: Research & Briefing Before writing a single word, gather intelligence: 1A. Understand the keyword Ask or infer: Target keyword: Primary keyword to rank for Secondary keywords: 3-5 related terms to include naturally Search int...
50
22273 prospect-research-compiler onewave-ai/claude-skills
Prospect Research Compiler Aggregate prospect intelligence from multiple sources including news, social media, company websites, and financial data. Instructions You are an expert at prospect research and intelligence gathering. Compile comprehensive prospect profiles from multiple sources with actionable insights for outreach. Output Format Prospect Research Compiler Output Generated: {timestamp} --- Results [Your formatted output here] --- Recommendations [Actionable next steps] ...
50
22274 linear-search finesssee/linear-cli
Linear Search Search Linear.app issues and projects using linear-cli . Search Issues Search by text linear-cli s issues "authentication bug" Limit results linear-cli s issues "login" --limit 5 JSON output for parsing linear-cli s issues "error" --output json With specific fields linear-cli s issues "crash" --output json --fields identifier,title,state.name Search Projects Search projects linear-cli s projects "backend" Limit results linear-cli s projects "api" --limit 10 JSON output linea...
50
22275 database-layer mgd34msu/goodvibes-plugin
Resources scripts/ database-checklist.sh references/ orm-comparison.md Database Layer Implementation This skill guides you through implementing database layers in applications, from initial schema design to query optimization. It leverages GoodVibes precision tools and project analysis tools for type-safe, production-ready database implementations. When to Use This Skill Use this skill when you need to: Set up a new database connection and ORM Design and implement database schemas Create and run...
50
22276 design-patterns florianbruniaux/claude-code-ultimate-guide
RTK Rust Design Patterns Patterns that apply to RTK's filter module architecture. Focused on CLI tool patterns, not web/service patterns. Pattern 1: Newtype (Type Safety) Use when: wrapping primitive types to prevent misuse (command names, paths, token counts). // Without Newtype — easy to mix up fn track ( input_tokens : usize , output_tokens : usize ) { ... } track ( output_tokens , input_tokens ) ; // Silent bug! // With Newtype — compile error on swap pub struct InputTokens ( pub usize ) ; p...
50
22277 configure-linting laurigates/claude-plugins
/configure:linting Check and configure linting tools against modern best practices. When to Use This Skill Use this skill when... Use another approach when... Setting up modern linting (Biome, Ruff, Clippy) Just running linter (use /lint:check skill) Migrating from ESLint/Prettier to Biome Linters already properly configured Validating linter configuration Fixing specific lint errors (run linter and fix) Ensuring language-specific best practices Simple script with no linting needs Configuring pr...
50
22278 agent-prompt getsentry/warden
You are a prompt engineering specialist helping users write effective agent prompts and Warden skills. Reference Documents The following documents contain detailed guidance. Read the relevant ones based on the user's question: Document Use When references/core-principles.md Writing any prompt - foundational rules references/skill-structure.md Creating or reviewing skill files references/system-prompts.md Understanding Warden's prompt architecture references/output-formats.md Designing structured...
50
22279 review-doc-consistency heyvhuang/ship-faster
Documentation Consistency Reviewer Goal Systematically identify all "outdated" or "inconsistent with implementation" descriptions in README + docs/, outputting ≥30 issue items. Core Principles Code is truth - When documentation conflicts with code, source code/config/contract files are authoritative Evidence before conclusions - Each issue must cite code/config location as evidence Contracts first - OpenAPI/proto/schema/TS types are treated as SSOT (Single Source of Truth) Security default tight...
50
22280 risk-management-specialist borghei/claude-skills
Risk Management Specialist ISO 14971:2019 risk management implementation throughout the medical device lifecycle. Table of Contents Risk Management Planning Workflow Risk Analysis Workflow Risk Evaluation Workflow Risk Control Workflow Post-Production Risk Management Risk Assessment Templates Decision Frameworks Tools and References Risk Management Planning Workflow Establish risk management process per ISO 14971. Workflow: Create Risk Management Plan Define scope of risk management activities: ...
50
22281 pattern-debug commontoolsinc/labs
Debug Pattern Use Skill("ct") for ct CLI documentation if debugging deployment or piece issues. Read First docs/development/debugging/workflow.md - 5-step debugging process docs/development/debugging/README.md - Error reference matrix Process Check TypeScript errors: deno task ct check pattern.tsx --no-run Match error to documentation: Read the error message carefully Check docs/development/debugging/README.md for matching errors Check gotchas: docs/development/debugging/gotchas/handler-inside-p...
50
22282 ha-validate laurigates/claude-plugins
/ha:validate Validate Home Assistant configuration files for YAML syntax errors and common issues. Context Config path: {{ path or '.' }} YAML files: ! find {{ path or '.' }} -name "*.yaml" -type f Validation Steps 1. YAML Syntax Validation Validate all YAML files for proper syntax: find { { path or '.' } } -name "*.yaml" -type f -exec python3 -c " import yaml import sys try: with open('{}', 'r') as f: yaml.safe_load(f) print('OK: {}') except yaml.YAMLError as e: print('ERROR: {}') print(str(e)[...
50
22283 slot-deploy cartridge-gg/docs
Slot Deploy Manage the lifecycle of Slot deployments — Katana (execution layer) and Torii (indexer). Prerequisites Install the Slot CLI: curl -L https://slot.cartridge.sh | bash Authenticate: slot auth login For CI/scripts, generate a token and set the SLOT_AUTH env var: slot auth token Creating Deployments Katana slot deployments create < Project Name > katana Torii Torii requires a TOML configuration file: slot deployments create < Project Name > torii --config < path/to/torii.toml > Minimal t...
50
22284 image-metadata-tool dkyazzentwatwa/chatgpt-skills
Image Metadata Tool Extract, analyze, and manage EXIF metadata from images with GPS mapping and privacy features. Features EXIF Extraction: Camera, lens, settings, timestamps GPS Data: Extract coordinates, map locations Metadata Removal: Strip EXIF for privacy Batch Processing: Process multiple images Map Generation: Create location maps from photos Export: JSON, CSV, HTML reports Quick Start from image_metadata import ImageMetadata meta = ImageMetadata() meta.load("photo.jpg") Get all meta...
50
22285 code-review groeimetai/snow-flow
Two-axis review of the diff between HEAD and a fixed point the user supplies: Standards — does the code conform to this repo's documented coding standards? Spec — does the code faithfully implement the originating issue / PRD / spec? Both axes run as parallel sub-agents so they don't pollute each other's context, then this skill aggregates their findings. The issue tracker should have been provided to you — run /setup-matt-pocock-skills if docs/agents/issue-tracker.md is missing. Process 1. Pin ...
50
22286 modular-architecture melodic-software/claude-code-plugins
Modular Architecture When to Use This Skill Use this skill when you need to: Structure a modular monolith application Define boundaries between modules (bounded contexts) Set up inter-module communication patterns Implement ports and adapters (hexagonal) architecture Isolate database contexts between modules Configure MediatR for internal domain events Keywords: modular monolith, modules, bounded contexts, ports and adapters, hexagonal architecture, module communication, data isolation, separ...
50
22287 hooks kimny1143/claude-code-template
Hook Development Rules When working with files in .claude/hooks/: Pattern Shell wrapper (.sh) → TypeScript (.ts) via npx tsx Shell Wrapper Template !/bin/bash set -e cd "$CLAUDE_PROJECT_DIR/.claude/hooks" cat | npx tsx <handler>.ts TypeScript Handler Pattern interface HookInput { // Event-specific fields } async function main() { const input: HookInput = JSON.parse(await readStdin()); // Process input const output = { result: 'continue', // or 'block' message: 'Optional ...
50
22288 mvp-case-builder onewave-ai/claude-skills
Mvp Case Builder Construct statistical arguments for MVP/awards. Narrative framing, comparison to past winners, advanced metrics, counter-arguments. Instructions You are an expert sports analyst and award voting strategist. Build comprehensive MVP cases with: statistical arguments, narrative framing, historical comparisons, advanced metrics explanations, counter-arguments addressed, and persuasive presentation. Output Format Mvp Case Builder Output Generated: {timestamp} --- Results [Y...
50
22289 ai integration specialist eddiebe147/claude-settings
AI Integration Specialist Integrate AI tools and APIs into business workflows and applications When to Use This Skill Use this skill when you need to: Automate workflows and processes Integrate tools and systems Optimize technical operations Not recommended for: Tasks requiring creative content manual processes Quick Reference Action Command/Trigger Create ai integration specialist ai integration Review and optimize review ai integration specialist Get best practices ai integration specialist be...
50
22290 mcp-builder-ms sickn33/antigravity-awesome-skills
MCP Server Development Guide When to Use Use this skill when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK). Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Microsoft MCP Ecosystem Microsoft provides extensive MCP infrastructure for Azure and...
50
22291 humanize richtabor/agent-skills
Humanize AI Text Transform AI-generated content into natural, human-like writing using the HumanizerAI API. How It Works When the user invokes /humanize , you should: Parse $ARGUMENTS for text and optional --intensity flag Call the HumanizerAI API to humanize the text Present the humanized text with before/after scores Show remaining credits Parsing Arguments The user may provide: Just text: /humanize [their text] With intensity: /humanize --intensity aggressive [their text] Default intensity is...
50
22292 component-docs sgcarstrends/sgcarstrends
Component Documentation Skill This skill helps you create and maintain component documentation in packages/ui/. When to Use This Skill Writing documentation for new components Creating usage examples and code snippets Documenting component props and variants Setting up Storybook stories Generating API documentation Maintaining component README files Documentation Structure packages/ui/ ├── src/ │ ├── components/ │ │ ├── button.tsx Component implementation │ │ ├── button.sto...
50
22293 quiz-generator dmccreary/claude-skills
Quiz Generator Quick Start 1. Generate 50 questions for chapter Focus on conceptual (75%+ Apply level), not recall 2. Redistribute answers evenly python scripts/redistribute_answers_v2.py quiz.md A 3. Validate option lengths (±3 words per question) Manually count words for ALL 50 questions Persona You generate college-level conceptual quizzes that test understanding, not memorization. Your goal is 50 comprehensive questions covering all chapter concepts with immediate feedback per answer. F...
50
22294 gitlab stack secrets manager rknall/claude-skills
This skill manages secrets for GitLab stack projects, ensuring secrets are stored securely, never exposed in configuration files, and properly integrated with Docker secrets. When to Use This Skill Activate this skill when the user requests: - Create or manage Docker secrets - Migrate environment variables to Docker secrets - Validate secret configuration and permissions - Audit secret usage and detect leaks - Ensure secrets aren't in .env or docker-compose.yml - Check if secrets are ex...
50
22295 uniappx-uview-pro teachingai/full-stack-skills
Use this skill whenever the user wants to: - Integrate uView Pro into UniAppX projects - Configure UniAppX projects to work with uView Pro (pages.json, manifest.json, easycom) - Handle platform-specific behaviors when using uView Pro in UniAppX (H5, mini-program, App, nvue) - Use UniAppX features (navigation, APIs, lifecycle) with uView Pro components - Build cross-platform UniAppX applications with uView Pro components - Configure easycom for automatic uView Pro component import in UniApp...
50
22296 precision-mastery mgd34msu/goodvibes-plugin
Resources scripts/ validate-precision-usage.sh references/ tool-reference.md Precision Mastery The precision engine provides token-efficient alternatives to native tools (Read, Edit, Write, Grep, Glob, WebFetch). When used correctly, you save 75-95% of tokens on file operations. This skill teaches optimal usage. Verbosity Cheat Sheet Use the lowest verbosity that meets your needs. Verbosity directly impacts token consumption. Operation Default Recommended Why precision_write standard count_only ...
50
22297 tech-stack-evaluator borghei/claude-skills
Technology Stack Evaluator A comprehensive evaluation framework for comparing technologies, frameworks, cloud providers, and complete technology stacks. Provides data-driven recommendations with TCO analysis, security assessment, ecosystem health scoring, and migration path analysis. Capabilities This skill provides eight comprehensive evaluation capabilities: Technology Comparison: Head-to-head comparisons of frameworks, languages, and tools (React vs Vue, PostgreSQL vs MongoDB, Node.js vs ...
50
22298 mcp-builder project-n-e-k-o/n.e.k.o
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint coverag...
50
22299 data-validation cosmix/loom
Data Validation Skill Pre-delivery QA checklist, common data analysis pitfalls, result sanity checking, and documentation standards for reproducibility. Pre-Delivery QA Checklist Run through this checklist before sharing any analysis with stakeholders. Data Quality Checks Source verification : Confirmed which tables/data sources were used. Are they the right ones for this question? Freshness : Data is current enough for the analysis. Noted the "as of" date. Completeness : No unexpected gaps in t...
50
22300 nanobanana-skill feiskyer/codex-settings
Nanobanana Image Generation Skill Generate or edit images using Google Gemini API through the nanobanana tool. Requirements GEMINI_API_KEY : Must be configured in ~/.nanobanana.env or export GEMINI_API_KEY=<your-api-key> Python3 with dependent packages installed : google-genai, Pillow, python-dotenv. They could be installed via python3 -m pip install -r ${CLAUDE_PLUGIN_ROOT}/skills/nanobanana-skill/requirements.txt if not installed yet. Executable : ${CLAUDE_PLUGIN_ROOT}/skills/nanobanana-skill/...
50