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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,408
总 Skills
88.0M
总安装量
2,574
贡献者
# Skill 仓库 描述 安装量
751 vue-router-best-practices antfu/skills
Vue Router best practices, common gotchas, and navigation patterns. Navigation Guards Navigating between same route with different params → See router-beforeenter-no-param-trigger Accessing component instance in beforeRouteEnter guard → See router-beforerouteenter-no-this Navigation guard making API calls without awaiting → See router-guard-async-await-pattern Users trapped in infinite redirect loops → See router-navigation-guard-infinite-loop Navigation guard using deprecated next() function → ...
13.5K
752 recipe-share-event-materials googleworkspace/cli
Share Files with Meeting Attendees PREREQUISITE: Load the following skills to execute this recipe: gws-calendar , gws-drive Share Google Drive files with all attendees of a Google Calendar event. Steps Get event attendees: gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}' Share file with each attendee: gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "attendee@company.com"}' Verify sharing: ...
13.4K
753 recipe-send-team-announcement googleworkspace/cli
Announce via Gmail and Google Chat PREREQUISITE: Load the following skills to execute this recipe: gws-gmail , gws-chat Send a team announcement via both Gmail and a Google Chat space. Steps Send email: gws gmail +send --to team@company.com --subject 'Important Update' --body 'Please review the attached policy changes.' Post in Chat: gws chat +send --space spaces/TEAM_SPACE --text '📢 Important Update: Please check your email for policy changes.'
13.4K
754 gws-modelarmor-sanitize-response googleworkspace/cli
modelarmor +sanitize-response PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Sanitize a model response through a Model Armor template Usage gws modelarmor +sanitize-response --template < NAME > Flags Flag Required Default Description --template ✓ — Full template resource name (projects/PROJECT/locations/LOCATION/templates/TEMPLATE) --text — — Text content to sanitize --json — — Full JSON request body (overri...
13.4K
755 vue-debug-guides hyf0/vue-skills
Vue 3 debugging and error handling for runtime issues, warnings, async failures, and hydration bugs. For development best practices and common gotchas, use vue-best-practices . Reactivity Tracing unexpected re-renders and state updates → See reactivity-debugging-hooks Ref values not updating due to missing .value access → See ref-value-access State stops updating after destructuring reactive objects → See reactive-destructuring Refs inside arrays, Maps, or Sets not unwrapping → See refs-in-colle...
13.4K
756 recipe-log-deal-update googleworkspace/cli
Log Deal Update to Sheet PREREQUISITE: Load the following skills to execute this recipe: gws-sheets , gws-drive Append a deal status update to a Google Sheets sales tracking spreadsheet. Steps Find the tracking sheet: gws drive files list --params '{"q": "name = '\''Sales Pipeline'\'' and mimeType = '\''application/vnd.google-apps.spreadsheet'\''"}' Read current data: gws sheets +read --spreadsheet SHEET_ID --range "Pipeline!A1:F" Append new row: gws sheets +append --spreadsheet SHEET_ID --range...
13.3K
757 gws-classroom googleworkspace/cli
classroom (v1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws classroom < resource > < method > [ flags ] API Resources courses create — Creates a course. The user specified in ownerId is the owner of the created course and added as a teacher. A non-admin requesting user can only create a course with themselves as the owner. Domain admins can create courses owned by any user within their domain. This met...
13.3K
758 security-requirement-extraction wshobson/agents
Security Requirement Extraction Transform threat analysis into actionable security requirements. When to Use This Skill Converting threat models to requirements Writing security user stories Creating security test cases Building security acceptance criteria Compliance requirement mapping Security architecture documentation Core Concepts 1. Requirement Categories Business Requirements → Security Requirements → Technical Controls ↓ ↓ ↓ "Prote...
13.3K
759 dotnet-backend-patterns wshobson/agents
.NET Backend Development Patterns Master C/.NET patterns for building production-grade APIs, MCP servers, and enterprise backends with modern best practices (2024/2025). When to Use This Skill Developing new .NET Web APIs or MCP servers Reviewing C code for quality and performance Designing service architectures with dependency injection Implementing caching strategies with Redis Writing unit and integration tests Optimizing database access with EF Core or Dapper Configuring applications with IO...
13.3K
760 nano-banana-2 pilioai/skills
Nano Banana 2 — Pro Pack on RunComfy runcomfy.com · Model page · GitHub Google Nano Banana 2 — the flash-tier text-to-image model in the Gemini family — hosted on the RunComfy Model API . Optimized for ideation, social-thumbnail batches, and rapid drafts with strong in-image typography. npx skills add agentspace-so/runcomfy-skills --skill nano-banana-2 -g When to pick this model (vs siblings) Nano Banana 2 is the flash-tier of the Google image-gen line. Pick it when iteration speed and predictab...
13.3K
761 karpathy-guidelines forrestchang/andrej-karpathy-skills
Karpathy Guidelines Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations on LLM coding pitfalls. Tradeoff: These guidelines bias toward caution over speed. For trivial tasks, use judgment. 1. Think Before Coding Don't assume. Don't hide confusion. Surface tradeoffs. Before implementing: State your assumptions explicitly. If uncertain, ask. If multiple interpretations exist, present them - don't pick silently. If a simpler approach exists, say so...
13.3K
762 recipe-create-classroom-course googleworkspace/cli
Create a Google Classroom Course PREREQUISITE: Load the following skills to execute this recipe: gws-classroom Create a Google Classroom course and invite students. Steps Create the course: gws classroom courses create --json '{"name": "Introduction to CS", "section": "Period 1", "room": "Room 101", "ownerId": "me"}' Invite a student: gws classroom invitations create --json '{"courseId": "COURSE_ID", "userId": "student@school.edu", "role": "STUDENT"}' List enrolled students: gws classroom course...
13.2K
763 pnpm antfu/skills
pnpm is a fast, disk space efficient package manager. It uses a content-addressable store to deduplicate packages across all projects on a machine, saving significant disk space. pnpm enforces strict dependency resolution by default, preventing phantom dependencies. Configuration should preferably be placed in pnpm-workspace.yaml for pnpm-specific settings. Important: When working with pnpm projects, agents should check for pnpm-workspace.yaml and .npmrc files to understand workspace structure a...
13.2K
764 rust-async-patterns wshobson/agents
Rust Async Patterns Production patterns for async Rust programming with Tokio runtime, including tasks, channels, streams, and error handling. When to Use This Skill Building async Rust applications Implementing concurrent network services Using Tokio for async I/O Handling async errors properly Debugging async code issues Optimizing async performance Core Concepts 1. Async Execution Model Future (lazy) → poll() → Ready(value) | Pending ↑ ↓ Waker ← Runtime schedules 2. Key Abstractions...
13.2K
765 gemini-api-dev google-gemini/gemini-skills
Gemini API Development Skill Overview The Gemini API provides access to Google's most advanced AI models. Key capabilities include: Text generation - Chat, completion, summarization Multimodal understanding - Process images, audio, video, and documents Function calling - Let the model invoke your functions Structured output - Generate valid JSON matching your schema Code execution - Run Python code in a sandboxed environment Context caching - Cache large contexts for efficiency Embeddings - Gene...
13.1K
766 workers-best-practices cloudflare/skills
Your knowledge of Cloudflare Workers APIs, types, and configuration may be outdated. Prefer retrieval over pre-training for any Workers code task — writing or reviewing. Retrieval Sources Fetch the latest versions before writing or reviewing Workers code. Do not rely on baked-in knowledge for API signatures, config fields, or binding shapes. Source How to retrieve Use for Workers best practices Fetch https://developers.cloudflare.com/workers/best-practices/workers-best-practices/ Canonical rules...
13.1K
767 landing-page-design inference-sh-skills/skills
Landing Page Design Design high-converting landing pages with AI-generated visuals via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a hero image belt app run falai/flux-dev-lora --input '{ "prompt": "professional person smiling while using a laptop showing a clean dashboard interface, bright modern office, natural lighting, warm and productive atmosphere, lifestyle marketing photography", "width": 1248, "height": 832 }' Research com...
12.9K
768 gstack garrytan/gstack
gstack browse: QA Testing & Dogfooding Persistent headless Chromium. First call auto-starts (~3s), then ~100-200ms per command. Auto-shuts down after 30 min idle. State persists between calls (cookies, tabs, sessions). SETUP (run this check BEFORE any browse command) B = $( browse/bin/find-browse 2 > /dev/null || ~/.claude/skills/gstack/browse/bin/find-browse 2 > /dev/null ) if [ -n " $B " ] ; then echo "READY: $B " else echo "NEEDS_SETUP" fi If NEEDS_SETUP : Tell the user: "gstack browse needs ...
12.9K
769 mcp-apps-builder mcp-use/mcp-use
IMPORTANT: How to Use This Skill This file provides a NAVIGATION GUIDE ONLY. Before implementing any MCP server features, you MUST: Read this overview to understand which reference files are relevant ALWAYS read the specific reference file(s) for the features you're implementing Apply the detailed patterns from those files to your implementation Do NOT rely solely on the quick reference examples in this file - they are minimal examples only. The reference files contain critical best practices, s...
12.8K
770 playwright-generate-test github/awesome-copilot
Test Generation with Playwright MCP Your goal is to generate a Playwright test based on the provided scenario after completing all prescribed steps. Specific Instructions You are given a scenario, and you need to generate a playwright test for it. If the user does not provide a scenario, you will ask them to provide one. DO NOT generate test code prematurely or based solely on the scenario without completing all prescribed steps. DO run steps one by one using the tools provided by the Playwright...
12.7K
771 agent development anthropics/claude-code
Agent Development for Claude Code Plugins Overview Agents are autonomous subprocesses that handle complex, multi-step tasks independently. Understanding agent structure, triggering conditions, and system prompt design enables creating powerful autonomous capabilities. Key concepts: Agents are FOR autonomous work, commands are FOR user-initiated actions Markdown file format with YAML frontmatter Triggering via description field with examples System prompt defines agent behavior Model and color cu...
12.7K
772 character-design-sheet inference-sh-skills/skills
Character Design Sheet Create consistent characters across multiple AI-generated images via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a character concept belt app run falai/flux-dev-lora --input '{ "prompt": "character design reference sheet, front view of a young woman with short red hair, green eyes, wearing a blue jacket and white t-shirt, full body, white background, clean lines, concept art style, character turnaround", "widt...
12.6K
773 product-photography inference-sh-skills/skills
Product Photography Create professional product images with AI via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Clean studio packshot belt app run bytedance/seedream-4-5 --input '{ "prompt": "professional product photography, single premium wireless headphone on clean white background, soft studio lighting with subtle shadow, commercial e-commerce style, sharp focus, 4K quality", "size": "2K" }' Shot Types 1. Hero Shot (Primary Image) The mai...
12.6K
774 china-stock-analysis sugarforever/01coder-agent-skills
China Stock Analysis Skill 基于价值投资理论的中国A股分析工具,面向低频交易的普通投资者。 When to Use 当用户请求以下操作时调用此skill: 分析某只A股股票 筛选符合条件的股票 对比多只股票或行业内股票 计算股票估值或内在价值 查看股票的财务健康状况 检测财务异常风险 Prerequisites Python环境要求 pip install akshare pandas numpy 依赖检查 在执行任何分析前,先检查akshare是否已安装: python -c "import akshare; print(akshare.__version__)" 如果未安装,提示用户安装: pip install akshare Core Modules 1. Stock Screener (股票筛选器) 筛选符合条件的股票 2. Financial Analyzer (财务分析器) 个股深度财务分析 3. Industry Comparator (行业对比) 同行业横向对比分析 4. Valuation Calculat...
12.6K
775 code-review supercent-io/skills-template
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
12.5K
776 storyboard-creation inference-sh-skills/skills
Storyboard Creation Create visual storyboards with AI image generation via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a storyboard panel belt app run falai/flux-dev-lora --input '{ "prompt": "storyboard panel, wide establishing shot of a modern city skyline at sunset, cinematic composition, slightly desaturated colors, film still style, 16:9 aspect ratio", "width": 1248, "height": 832 }' Stitch panels into a board belt app run inf...
12.5K
777 image-to-video inference-sh-skills/skills
Image-to-Video — Pro Pack on RunComfy runcomfy.com · HappyHorse I2V · Wan 2.7 · Seedance 2.0 Pro · GitHub Image-to-video, intent-routed. This skill doesn't lock you to one model — it picks the right i2v model in the RunComfy catalog based on what the user actually wants: portrait animation, custom-voiceover lip-sync, or multi-modal composition. npx skills add agentspace-so/runcomfy-skills --skill image-to-video -g Pick the right model for the user's intent User intent Model Why Animate a portrai...
12.5K
778 youtube-thumbnail-design inference-sh-skills/skills
YouTube Thumbnail Design Create high-CTR YouTube thumbnails with AI image generation via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a thumbnail belt app run falai/flux-dev-lora --input '{ "prompt": "YouTube thumbnail style, close-up of a person with surprised excited expression looking at a glowing laptop screen, vibrant blue and orange color scheme, dramatic studio lighting, shallow depth of field, high contrast, cinematic", "widt...
12.5K
779 app-store-screenshots inference-sh-skills/skills
App Store Screenshots Create app store screenshots and preview videos via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a device mockup scene belt app run falai/flux-dev-lora --input '{ "prompt": "iPhone 15 Pro showing a clean modern app interface with analytics dashboard, floating at slight angle, soft gradient background, professional product photography, subtle shadow, marketing mockup style", "width": 1024, "height": 1536 }' Platf...
12.5K
780 competitor-teardown inference-sh-skills/skills
Competitor Teardown Structured competitive analysis with research and screenshots via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Research competitor landscape belt app run tavily/search-assistant --input '{ "query": "top project management tools comparison 2024 market share" }' Screenshot competitor's website belt app run infsh/agent-browser --input '{ "url": "https://competitor.com", "action": "screenshot" }' Teardown Framework The 7-Laye...
12.5K
781 gemini-watermark-remover gargantuax/gemini-watermark-remover
Gemini Watermark Remover Use the bundled runtime script for local file workflows. Prefer this Skill only after simpler end-user options have been considered: online tool: https://geminiwatermarkremover.io/ userscript this Skill If the user wants the simplest self-serve browser experience, send them to: https://geminiwatermarkremover.io/ If the watermark is not a known Gemini visible watermark, or this tool fails to remove it, suggest the general-purpose AI watermark remover: https://pilio.ai/ima...
12.5K
782 web-accessibility supercent-io/skills-template
Web Accessibility (A11y) When to use this skill New UI Component Development : Designing accessible components Accessibility Audit : Identifying and fixing accessibility issues in existing sites Form Implementation : Writing screen reader-friendly forms Modals/Dropdowns : Focus management and keyboard trap prevention WCAG Compliance : Meeting legal requirements or standards Input Format Required Information Framework : React, Vue, Svelte, Vanilla JS, etc. Component Type : Button, Form, Modal, Dr...
12.4K
783 workflow-automation supercent-io/skills-template
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...
12.3K
784 video-ad-specs inference-sh-skills/skills
Video Ad Specs Create platform-specific video ads via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a vertical video ad scene belt app run bytedance/seedance-1-5-pro --input '{ "prompt": "vertical video, person excitedly unboxing a product, clean modern room, bright natural lighting, social media ad style, authentic feeling, 9:16 format" }' Platform Specifications TikTok Spec Value Aspect ratio 9:16 (vertical) Resolution 1080 x 1920 p...
12.3K
785 product-hunt-launch inference-sh-skills/skills
Product Hunt Launch Optimize your Product Hunt launch with research and visuals via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate gallery hero image belt app run falai/flux-dev-lora --input '{ "prompt": "clean product showcase, modern SaaS dashboard interface on laptop screen, floating UI elements around it, soft gradient background from blue to purple, professional marketing hero shot, minimal clean design", "width": 1248, "height": ...
12.3K
786 chrome-devtools github/awesome-copilot
Chrome DevTools Agent Overview A specialized skill for controlling and inspecting a live Chrome browser. This skill leverages the chrome-devtools MCP server to perform a wide range of browser-related tasks, from simple navigation to complex performance profiling. When to Use Use this skill when: Browser Automation : Navigating pages, clicking elements, filling forms, and handling dialogs. Visual Inspection : Taking screenshots or text snapshots of web pages. Debugging : Inspecting console messag...
12.3K
787 database-migration wshobson/agents
Database Migration Master database schema and data migrations across ORMs (Sequelize, TypeORM, Prisma), including rollback strategies and zero-downtime deployments. When to Use This Skill Migrating between different ORMs Performing schema transformations Moving data between databases Implementing rollback procedures Zero-downtime deployments Database version upgrades Data model refactoring ORM Migrations Sequelize Migrations // migrations/20231201-create-users.js module . exports = { up : async ...
12.3K
788 skill development anthropics/claude-code
Skill Development for Claude Code Plugins This skill provides guidance for creating effective skills for Claude Code plugins. About Skills Skills are modular, self-contained packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks—they transform Claude from a general-purpose agent into a specialized agent equipped with procedural knowledge that no model can fully possess. What Skills Pr...
12.3K
789 database-schema-design supercent-io/skills-template
Database Schema Design When to use this skill Lists specific situations where this skill should be triggered: New Project : Database schema design for a new application Schema Refactoring : Redesigning an existing schema for performance or scalability Relationship Definition : Implementing 1:1, 1:N, N:M relationships between tables Migration : Safely applying schema changes Performance Issues : Index and schema optimization to resolve slow queries Input Format The required and optional input inf...
12.2K
790 postgresql-optimization github/awesome-copilot
PostgreSQL Development Assistant Expert PostgreSQL guidance for ${selection} (or entire project if no selection). Focus on PostgreSQL-specific features, optimization patterns, and advanced capabilities. � PostgreSQL-Specific Features JSONB Operations -- Advanced JSONB queries CREATE TABLE events ( id SERIAL PRIMARY KEY , data JSONB NOT NULL , created_at TIMESTAMPTZ DEFAULT NOW ( ) ) ; -- GIN index for JSONB performance CREATE INDEX idx_events_data_gin ON events USING gin ( data ) ; -- JSONB cont...
12.2K
791 conventional-commit github/awesome-copilot
Instructions < description > This file contains a prompt template for generating conventional commit messages. It provides instructions, examples, and formatting guidelines to help users write standardized, descriptive commit messages in accordance with the Conventional Commits specification. </ description > Workflow Follow these steps: Run git status to review changed files. Run git diff or git diff --cached to inspect changes. Stage your changes with git add <file> . Construct your commit mes...
12.2K
792 pinia antfu/skills
Pinia Pinia is the official state management library for Vue, designed to be intuitive and type-safe. It supports both Options API and Composition API styles, with first-class TypeScript support and devtools integration. The skill is based on Pinia v3.0.4, generated at 2026-01-28. Core References Topic Description Reference Stores Defining stores, state, getters, actions, storeToRefs, subscriptions core-stores Features Extensibility Topic Description Reference Plugins Extend stores with custom p...
12.2K
793 python-design-patterns wshobson/agents
Python Design Patterns Write maintainable Python code using fundamental design principles. These patterns help you build systems that are easy to understand, test, and modify. When to Use This Skill Designing new components or services Refactoring complex or tangled code Deciding whether to create an abstraction Choosing between inheritance and composition Evaluating code complexity and coupling Planning modular architectures Core Concepts 1. KISS (Keep It Simple) Choose the simplest solution th...
12.2K
794 memory-merger github/awesome-copilot
Memory Merger You consolidate mature learnings from a domain's memory file into its instruction file, ensuring knowledge preservation with minimal redundancy. Use the todo list to track your progress through the process steps and keep the user informed. Scopes Memory instructions can be stored in two scopes: Global ( global or user ) - Stored in <global-prompts> ( vscode-userdata:/User/prompts/ ) and apply to all VS Code projects Workspace ( workspace or ws ) - Stored in <workspace-instructions>...
12.1K
795 vue-testing-best-practices antfu/skills
Vue.js testing best practices, patterns, and common gotchas. Testing Setting up test infrastructure for Vue 3 projects → See testing-vitest-recommended-for-vue Tests keep breaking when refactoring component internals → See testing-component-blackbox-approach Tests fail intermittently with race conditions → See testing-async-await-flushpromises Composables using lifecycle hooks or inject fail to test → See testing-composables-helper-wrapper Getting "injection Symbol(pinia) not found" errors in te...
12.1K
796 git-advanced-workflows wshobson/agents
Git Advanced Workflows Master advanced Git techniques to maintain clean history, collaborate effectively, and recover from any situation with confidence. When to Use This Skill Cleaning up commit history before merging Applying specific commits across branches Finding commits that introduced bugs Working on multiple features simultaneously Recovering from Git mistakes or lost commits Managing complex branch workflows Preparing clean PRs for review Synchronizing diverged branches Core Concepts 1....
12.1K
797 baseline-ui ibelick/ui-skills
Baseline UI Enforces an opinionated UI baseline to prevent AI-generated interface slop. How to use /baseline-ui Apply these constraints to any UI work in this conversation. /baseline-ui <file> Review the file against all constraints below and output: violations (quote the exact line/snippet) why it matters (1 short sentence) a concrete fix (code-level suggestion) Stack MUST use Tailwind CSS defaults unless custom values already exist or are explicitly requested MUST use motion/react (formerly fr...
12K
798 expo-module expo/skills
Writing Expo Modules Complete reference for building native modules and views using the Expo Modules API. Covers Swift (iOS), Kotlin (Android), and TypeScript. When to Use Creating a new Expo native module or native view Adding native functionality (camera, sensors, system APIs) to an Expo app Wrapping platform SDKs for React Native consumption Building config plugins that modify native project files References Consult these resources as needed: references/ native-module.md Module defi...
12K
799 flutter-apply-architecture-best-practices flutter/skills
Architecting Flutter Applications Contents Architectural Layers Project Structure Workflow: Implementing a New Feature Examples Architectural Layers Enforce strict Separation of Concerns by dividing the application into distinct layers. Never mix UI rendering with business logic or data fetching. UI Layer (Presentation) Implement the MVVM (Model-View-ViewModel) pattern to manage UI state and logic. Views: Write reusable, lean widgets. Restrict logic in Views to UI-specific operations (e.g., anim...
12K
800 search tavily-ai/skills
Search Skill Search the web and get relevant results optimized for LLM consumption. Authentication The script uses OAuth via the Tavily MCP server. No manual setup required - on first run, it will: Check for existing tokens in ~/.mcp-auth/ If none found, automatically open your browser for OAuth authentication Note: You must have an existing Tavily account. The OAuth flow only supports login — account creation is not available through this flow. Sign up at tavily.com first if you don't have an a...
11.9K