███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 11401 | metrics | railwayapp/railway-skills |
Service Metrics Query resource usage metrics for Railway services. When to Use User asks "how much memory is my service using?" User asks about CPU usage, network traffic, disk usage User wants to debug performance issues User asks "is my service healthy?" (combine with service skill) Prerequisites Get environmentId and serviceId from linked project: railway status --json Extract: environment.id → environmentId service.id → serviceId (optional - omit to get all services) MetricMeasurement...
|
822 |
| 11402 | davila7/claude-code-templates |
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
|
822 | |
| 11403 | numpy-best-practices | mindrally/skills |
NumPy Best Practices Expert guidelines for NumPy development, focusing on array programming, numerical computing, and performance optimization. Code Style and Structure Write concise, technical Python code with accurate NumPy examples Prefer vectorized operations over explicit loops for performance Use descriptive variable names reflecting data content (e.g., weights, gradients, input_array) Follow PEP 8 style guidelines for Python code Use functional programming patterns when appropriate Arra...
|
822 |
| 11404 | tavily-search | framix-team/openclaw-tavily |
tavily search Web search returning LLM-optimized results with content snippets and relevance scores. Before running any command If tvly is not found on PATH, install it first: curl -fsSL https://cli.tavily.com/install.sh | bash && tvly login Do not skip this step or fall back to other tools. See tavily-cli for alternative install methods and auth options. When to use You need to find information on any topic You don't have a specific URL yet First step in the workflow : search → extract → map → ...
|
822 |
| 11405 | improve-game | playableintelligence/game-creator |
Performance Notes Take your time to do this thoroughly Quality is more important than speed Do not skip validation steps Improve Game Make your game better. This command deep-audits gameplay, visuals, code quality, performance, and player experience, then implements the highest-impact improvements. Run it as many times as you want — each pass finds the next most impactful thing to fix. Instructions Improve the game in the current directory. If $ARGUMENTS specifies a focus area (e.g., "gameplay",...
|
821 |
| 11406 | game-3d-assets | playableintelligence/game-creator |
Game 3D Asset Engineer (Model Pipeline) You are an expert 3D game artist and integrator. You generate custom 3D models with Meshy AI, find models from free libraries, and wire them into Three.js games — replacing primitive geometry with recognizable 3D models. Philosophy Primitive cubes and spheres are fast to scaffold, but players can't tell a house from a tree. Real 3D models — even low-poly ones — give every entity a recognizable identity. Meshy AI is the preferred source — it generates exact...
|
821 |
| 11407 | fusion-issue-author-feature | equinor/fusion-skills |
Author Feature Issue Dependency Requires fusion-issue-authoring as the top-level orchestrator for classification, shared gates, and publish flow. When to use Use this skill when the request is for a new capability or enhancement. When not to use Do not use this skill for bugs, user stories centered on role narratives, or generic technical tasks. Required inputs Feature intent and value Scope and non-goals Success criteria Instructions Confirm routed type is Feature . Draft locally in .tmp/FEATUR...
|
821 |
| 11408 | creating-openlineage-extractors | astronomer/agents |
Creating OpenLineage Extractors This skill guides you through creating custom OpenLineage extractors to capture lineage from Airflow operators that don't have built-in support. Reference: See the OpenLineage provider developer guide for the latest patterns and list of supported operators/hooks. When to Use Each Approach Scenario Approach Operator you own/maintain OpenLineage Methods (recommended, simplest) Third-party operator you can't modify Custom Extractor Need column-level lineage OpenLinea...
|
821 |
| 11409 | threejs-game | playableintelligence/game-creator |
Three.js Game Development You are an expert Three.js game developer. Follow these opinionated patterns when building 3D browser games. Reference : See reference/llms.txt (quick guide) and reference/llms-full.txt (full API + TSL) for official Three.js LLM documentation. Prefer patterns from those files when they conflict with this skill. Performance Notes Take your time with each step. Quality is more important than speed. Do not skip validation steps — they catch issues early. Read the full cont...
|
821 |
| 11410 | axiom-performance | charleswiltgen/axiom |
Performance You MUST use this skill for ANY performance issue including memory leaks, slow execution, battery drain, or profiling. Not on Claude Code? Where this router says "Launch some-auditor agent", read that auditor's file in this suite and follow it inline — the same procedure, needing only file search and read. Available here: skills/energy-auditor.md , skills/memory-auditor.md , skills/swift-performance-analyzer.md . Agents that need Bash — builds, tests, simulators, crash symbolication ...
|
821 |
| 11411 | flipoff-split-flap-display | aradotso/trending-skills |
FlipOff Split-Flap Display Emulator Skill by ara.so — Daily 2026 Skills collection. FlipOff is a pure vanilla HTML/CSS/JS web app that emulates classic mechanical split-flap (flip-board) airport displays. No frameworks, no npm, no build step — open index.html and you have a full-screen retro display with authentic scramble animations and clacking sounds. Installation git clone https://github.com/magnum6actual/flipoff.git cd flipoff Option 1: Open directly open index.html Option 2: Serve locall...
|
820 |
| 11412 | deployment-procedures | sickn33/antigravity-awesome-skills |
Deployment Procedures Deployment principles and decision-making for safe production releases. Learn to THINK, not memorize scripts. ⚠️ How to Use This Skill This skill teaches deployment principles , not bash scripts to copy. Every deployment is unique Understand the WHY behind each step Adapt procedures to your platform 1. Platform Selection Show more Installs 2 Repository sickn33/agentic…e-skills GitHub Stars 44.7K First Seen 1 day ago Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk ...
|
820 |
| 11413 | architecture-decision-records | sickn33/antigravity-awesome-skills |
Architecture Decision Records Comprehensive patterns for creating, maintaining, and managing Architecture Decision Records (ADRs) that capture the context and rationale behind significant technical decisions. When to Use This Skill Making significant architectural decisions Documenting technology choices Recording design trade-offs Onboarding new team members Reviewing historical decisions Establishing decision-making processes Core Concepts 1. What is an ADR? An Architecture Decision Record cap...
|
820 |
| 11414 | feishu-cli-search | riba2534/feishu-cli |
飞书搜索 搜索飞书云文档、消息和应用。所有搜索命令 必须使用 User Access Token 。 执行流程 每次执行搜索前,按以下流程操作: 1. 检查 Token 状态 feishu-cli auth status -o json 根据返回结果判断: logged_in=false → 需要登录(步骤 2) access_token_valid=true + scope 包含所需权限 → 直接搜索(步骤 3) access_token_valid=false + refresh_token_valid=true → 无需操作,下次搜索时自动刷新 access_token_valid=false + refresh_token_valid=false → 需要重新登录(步骤 2) scope 缺少所需权限 → 需要重新登录并补充 scope(步骤 2) 2. 登录获取 Token(如需要) 使用两步式非交互登录, 始终使用最大 scope 范围 (覆盖搜索 + wiki + 日历 + 任务等全部功能): 步骤 A:生成授权 URL(最大 scope) feishu-cli aut...
|
820 |
| 11415 | marketing-demand-acquisition | alirezarezvani/claude-skills |
No SKILL.md available for this skill. View on GitHub Installs 652 Repository alirezarezvani/…e-skills GitHub Stars 16.3K First Seen Jan 20, 2026
|
820 |
| 11416 | notion-template-business | sickn33/agentic-awesome-skills |
Notion Template Business Expert in building and selling Notion templates as a business - not just making templates, but building a sustainable digital product business. Covers template design, pricing, marketplaces, marketing, and scaling to real revenue. Role : Template Business Architect You know templates are real businesses that can generate serious income. You've seen creators make six figures selling Notion templates. You understand it's not about the template - it's about the problem it s...
|
820 |
| 11417 | architecting-solutions | zhaono1/agent-playbook |
Architecting Solutions Analyzes requirements and creates technical solution documents for software implementation. Description Use this skill when you need to: Create non-PRD solution briefs or technical design documents Design software solutions Analyze requirements Specify features Document technical plans Plan refactoring or migration Installation Install through apb skills add ./skills/architecting-solutions --scope global --target all --link when possible. How It Works Show more Installs 22...
|
820 |
| 11418 | story-coach | jwynia/agent-skills |
Story Coach: Assistive Writing Skill You are a writing coach. Your role is to help writers develop their own work through questions, diagnosis, and guided exploration. You never write their story for them. The Core Constraint You do not generate: Story prose or narrative text Dialogue for their characters Scene content or descriptions Plot summaries or outlines (unless reviewing theirs) Character backstories or biographies World details or lore You do generate: Questions that help them dis...
|
820 |
| 11419 | a11y-audit | alirezarezvani/claude-skills |
No SKILL.md available for this skill. View on GitHub
|
820 |
| 11420 | research-sources | kostja94/marketing-skills |
Strategies: Research Sources Guides selecting and organizing information sources for marketing research: content ideation, competitor monitoring, and industry tracking. Use this skill when planning where to gather signals for content, competitive intelligence, or market trends. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main outpu...
|
820 |
| 11421 | rag-implementation | sickn33/antigravity-awesome-skills |
RAG Implementation Master Retrieval-Augmented Generation (RAG) to build LLM applications that provide accurate, grounded responses using external knowledge sources. When to Use This Skill Building Q&A systems over proprietary documents Creating chatbots with current, factual information Implementing semantic search with natural language queries Reducing hallucinations with grounded responses Enabling LLMs to access domain-specific knowledge Building documentation assistants Creating research too...
|
819 |
| 11422 | auth0-mfa | auth0/agent-skills |
Auth0 MFA Guide Add Multi-Factor Authentication to protect user accounts and require additional verification for sensitive operations. Overview What is MFA? Multi-Factor Authentication (MFA) requires users to provide two or more verification factors to access their accounts. Auth0 supports multiple MFA factors and enables step-up authentication for sensitive operations. When to Use This Skill Adding MFA to protect user accounts Requiring additional verification for sensitive actions (payments, s...
|
819 |
| 11423 | design-loop | jezweb/claude-skills |
Design Loop — Autonomous Site Builder Build complete multi-page websites through an autonomous loop. Each iteration reads a task, generates a page, integrates it, verifies it visually, then writes the next task to keep going. Overview The Design Loop uses a "baton" pattern — a file ( .design/next-prompt.md ) acts as a relay baton between iterations. Each cycle: Reads the current task from the baton Generates the page (via Claude or Google Stitch) Integrates into the site structure (navigation, l...
|
819 |
| 11424 | python-cybersecurity-tool-development | mindrally/skills |
Python Cybersecurity Tool Development You are an expert in Python cybersecurity tool development, focusing on secure, efficient, and well-structured security testing applications. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes where possible Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., is_encrypted, has_valid_signature) Use lowercase wi...
|
819 |
| 11425 | static-analysis | mohitmishra786/low-level-dev-skills |
Static Analysis Purpose Guide agents through selecting, running, and triaging static analysis tools for C/C++ — clang-tidy, cppcheck, and scan-build — including suppression strategies and CI integration. Triggers "How do I run clang-tidy on my project?" "What clang-tidy checks should I enable?" "cppcheck is reporting false positives — how do I suppress them?" "How do I set up scan-build for deeper analysis?" "My build is noisy with static analysis warnings" "How do I generate compile_commands.js...
|
819 |
| 11426 | my-fetch-tweet | ai-native-camp/camp-1 |
My Fetch Tweet X/Twitter URL에서 트윗 원문, 작성자 정보, 인게이지먼트 데이터를 가져오고 요약-인사이트-전체 번역 3단계 파이프라인으로 제공하는 스킬. API 연동 — FxEmbed FxEmbed 오픈소스 프로젝트의 API ( api.fxtwitter.com )를 활용한다. JavaScript 없이 트윗 데이터를 추출할 수 있다. URL 변환 규칙 URL에서 screen_name 과 status_id 를 추출한다 도메인을 api.fxtwitter.com 으로 변환한다 WebFetch로 JSON 데이터를 가져온다 https://x.com/garrytan/status/123456 → https://api.fxtwitter.com/garrytan/status/123456 지원 URL 형식 x.com , twitter.com , fxtwitter.com , fixupx.com API 응답 주요 필드 필드 설명 tweet.text 트윗 본문 (URL 확장됨) tweet...
|
818 |
| 11427 | brand-writer | zed-industries/zed |
Zed Brand Writer Write in Zed's brand voice: thoughtful, technically grounded, and quietly confident. Sound like a developer who builds and explains tools for other developers. Write like the content on zed.dev — clear, reflective, and built around principles rather than persuasion. Invocation /brand-writer Start a writing session /brand-writer "homepage hero copy" Specify what you're writing /brand-writer --review "paste copy" Review existing copy for brand fit Core Voice You articulate Zed'...
|
817 |
| 11428 | nemoclaw-user-reference | nvidia/skills |
NemoClaw User Reference References Load references/architecture.md when looking up architecture, agent integration, plugin structure, or blueprint design. Describes the NemoClaw integration layer and blueprint architecture and how they orchestrate compatible agent sandboxes. references/cli-selection-guide.md — Explains when to use $$nemoclaw versus openshell for NemoClaw-managed sandboxes, including lifecycle, inference, policy, monitoring, file transfer, and gateway operations. Load references/...
|
817 |
| 11429 | accounting | whawkinsiv/solo-founder-skills |
Accounting & Bookkeeping Messy books cost you money in taxes, missed deductions, and accountant fees. This skill helps you set up clean financial tracking from day one — 30 minutes a week keeps you legal, informed, and out of trouble. Core Principles Bookkeeping is not optional. Messy books cost you money in taxes, missed deductions, and accountant fees. Separate business and personal finances completely. Day one. No exceptions. SaaS revenue recognition has rules. Stripe payments are not the sam...
|
817 |
| 11430 | notebooklm | sickn33/agentic-awesome-skills |
NotebookLM Automation Complete programmatic access to Google NotebookLM—including capabilities not exposed in the web UI. Create notebooks, add sources (URLs, YouTube, PDFs, audio, video, images), chat with content, generate all artifact types, and download results in multiple formats. Installation From PyPI (Recommended for AI agents — Python-version-aware): pip install "notebooklm-py[browser]" mandatory; errors must propagate [cookies] (rookiepy) is optional and known to FAIL TO BUILD on Pyt...
|
817 |
| 11431 | ab-test-setup | sickn33/agentic-awesome-skills |
A/B Test Setup You are an expert in experimentation and A/B testing. Your goal is to help design tests that produce statistically valid, actionable results. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Before designing a test, understand: Test Context ...
|
817 |
| 11432 | plaid | buildgreatproducts/plaid |
PLAID — Product Led AI Development You are a product development advisor helping a founder go from idea to buildable spec. You are warm, direct, and opinionated. You treat the founder as capable and smart — you’re here to help them articulate what’s already in their head, not to lecture them. The full pipeline is: Vision → Strategy → Spec → Build. Modes PLAID has three modes. Pick the right one based on context: Starting fresh (no vision.json exists): Run the vision intake conversation. See “Vis...
|
817 |
| 11433 | fusion-issue-author-user-story | equinor/fusion-skills |
Author User Story Issue Dependency Requires fusion-issue-authoring as the top-level orchestrator for classification, shared gates, and publish flow. When to use Use this skill when the request is primarily about user workflow and behavior from a specific role perspective. When not to use Do not use this skill for pure bug reports, generic feature specs without user narrative, or technical enablement tasks. Required inputs User role and workflow context Story goal ( As a... I want... so that... )...
|
817 |
| 11434 | fusion-help-api | equinor/fusion-skills |
Fusion Help API Use when a developer or admin needs to interact directly with the Fusion Help REST API — reading help content, building custom tooling, or automating content management. When to use Display help articles, FAQs, or release notes inside a Fusion app Build custom CLI or automation to manage help content Programmatically create, update, or delete help documentation Search or suggest help content from an application Understand Help API endpoints, authentication, or data models Read he...
|
816 |
| 11435 | vtex-io-graphql-api | vtex/skills |
GraphQL Schemas & Resolvers When this skill applies Use this skill when your VTEX IO app needs to expose a GraphQL API — either for frontend React components to query, for other VTEX IO apps to consume, or for implementing custom data aggregation layers over VTEX Commerce APIs. Defining schemas in .graphql files in the /graphql directory Writing resolver functions in TypeScript in /node/resolvers/ Configuring @cacheControl and @auth directives Wiring resolvers into the Service class Do not use t...
|
816 |
| 11436 | architecting-solutions | charon-fan/agent-playbook |
Architecting Solutions Analyzes requirements and creates technical solution documents for software implementation. Description Use this skill when you need to: Create non-PRD solution briefs or technical design documents Design software solutions Analyze requirements Specify features Document technical plans Plan refactoring or migration Installation Install through apb skills add ./skills/architecting-solutions --scope global --target all --link when possible. How It Works Show more Installs 22...
|
815 |
| 11437 | taste-skill | nexu-io/open-design |
taste-skill Curated from @Leonxlnx. What it does High-agency frontend skill that gives AI good taste with tunable design variance, motion intensity, and visual density to stop generic UI slop. Source Upstream: https://github.com/Leonxlnx/taste-skill Category: design-systems How to use This catalogue entry advertises the skill in Open Design so the agent discovers it during planning. To run the full upstream workflow with its original assets, scripts, and references, install the upstream bundle i...
|
815 |
| 11438 | new | railwayapp/railway-skills |
New Project / Service / Database Create Railway projects, services, and databases with proper configuration. When to Use User says "deploy to railway" (add service if linked, init if not) User says "create a railway project", "init", "new project" (explicit new project) User says "link to railway", "connect to railway" User says "create a service", "add a backend", "new api service" User says "create a vite app", "create a react website", "make a python api" User says "deploy from github.com/u...
|
815 |
| 11439 | redux | vercel-labs/json-render |
@json-render/redux Redux adapter for json-render's StateStore interface. Wire a Redux store (or Redux Toolkit slice) as the state backend for json-render. Installation npm install @json-render/redux @json-render/core @json-render/react redux or with Redux Toolkit (recommended): npm install @json-render/redux @json-render/core @json-render/react @reduxjs/toolkit Usage import { configureStore , createSlice } from "@reduxjs/toolkit" ; import { reduxStateStore } from "@json-render/redux" ; import {...
|
815 |
| 11440 | document-xlsx | vasilyu1983/ai-agents-public |
Document XLSX Skill — Quick Reference This skill enables creation, editing, and analysis of Excel spreadsheets programmatically. Claude should apply these patterns when users need to generate data reports, financial models, automate Excel workflows, or process spreadsheet data. Modern Best Practices (Jan 2026): Treat spreadsheets as software: clear inputs/outputs, auditability, and versioning. Protect data integrity: control totals, validation, and traceability to sources. Accessibility: labe...
|
815 |
| 11441 | nemoclaw-user-deploy-remote | nvidia/skills |
Deploy NemoClaw to a Remote GPU Instance Gotchas The nemoclaw deploy command is deprecated. On Brev, set CHAT_UI_URL in the launchable environment configuration so it is available when the installer builds the sandbox image. Prerequisites The Brev CLI installed and authenticated. A provider credential for the inference backend you want to use during onboarding. HF_TOKEN or HUGGING_FACE_HUB_TOKEN exported when your remote vLLM or Hugging Face workflow needs access to gated models. NemoClaw instal...
|
814 |
| 11442 | tanstack-router | jezweb/claude-skills |
Overview TanStack Router is a fully type-safe router for React (and Solid) applications. It provides file-based routing, first-class search parameter management, built-in data loading, code splitting, and deep TypeScript integration. It serves as the routing foundation for TanStack Start (the full-stack framework). Package: @tanstack/react-router CLI: @tanstack/router-cli or @tanstack/router-plugin (Vite/Rspack/Webpack) Devtools: @tanstack/react-router-devtools Installation npm install @tanstack...
|
814 |
| 11443 | capacitor-push-notifications | cap-go/capgo-skills |
Push Notifications in Capacitor Implement push notifications for iOS and Android using Firebase and APNs. When to Use This Skill User wants push notifications User needs FCM setup User asks about APNs User has notification issues User wants rich notifications Quick Start Install Plugin bun add @capacitor/push-notifications bunx cap sync Basic Implementation import { PushNotifications } from '@capacitor/push-notifications' ; async function initPushNotifications ( ) { // Request permission const p...
|
814 |
| 11444 | duckdb-docs | duckdb/duckdb-skills |
You are helping the user find relevant DuckDB or DuckLake documentation. Query: $@ Follow these steps in order. Step 1 — Check DuckDB is installed command -v duckdb If not found, delegate to /duckdb-skills:install-duckdb and then continue. Step 2 — Ensure required extensions are installed duckdb :memory: -c "INSTALL httpfs; INSTALL fts;" Show more Installs 813 Repository duckdb/duckdb-skills GitHub Stars 527 First Seen Mar 20, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
|
814 |
| 11445 | write-guide | vercel/next.js |
Writing Guides Goal Produce a technical guide that teaches a real-world use case through progressive examples. Concepts are introduced only when the reader needs them. Each guide solves one specific problem . Not a category of problems. If the outline has 5+ steps or covers multiple approaches, split it. Structure Every guide follows this arc: introduction, example setup, 2-5 progressive steps, next steps. Each step follows this loop: working code → new requirement → friction → explanation → res...
|
813 |
| 11446 | data-fetching | lobehub/lobehub |
LobeHub Data Fetching Architecture
|
813 |
| 11447 | shadcn-svelte | vercel-labs/json-render |
shadcn-svelte A framework for building UI, components, and design systems for Svelte. Components are added as source to the user's project via the CLI. IMPORTANT: Run all CLI commands using the project's package runner: npx shadcn-svelte@latest , pnpm dlx shadcn-svelte@latest , or bunx --bun shadcn-svelte@latest — based on the project's package manager. Examples below use npx shadcn-svelte@latest but substitute the correct runner for the project. Current Project Context Read components.json at t...
|
813 |
| 11448 | vitest | bobmatnyc/claude-mpm-skills |
Vitest is a next-generation testing framework powered by Vite. It provides a Jest-compatible API with native ESM, TypeScript, and JSX support out of the box. Vitest shares the same config, transformers, resolvers, and plugins with your Vite app. Key Features: Vite-native: Uses Vite's transformation pipeline for fast HMR-like test updates Jest-compatible: Drop-in replacement for most Jest test suites Smart watch mode: Only reruns affected tests based on module graph Native ESM, TypeScript, JSX su...
|
813 |
| 11449 | xyq-skill | pippit-dev/pippit-skills |
No SKILL.md available for this skill. View on GitHub Installs 457 Repository pippit-dev/pippit-skills First Seen 4 days ago
|
812 |
| 11450 | notebooklm | sickn33/antigravity-awesome-skills |
NotebookLM Automation Complete programmatic access to Google NotebookLM—including capabilities not exposed in the web UI. Create notebooks, add sources (URLs, YouTube, PDFs, audio, video, images), chat with content, generate all artifact types, and download results in multiple formats. Installation From PyPI (Recommended for AI agents — Python-version-aware): pip install "notebooklm-py[browser]" mandatory; errors must propagate [cookies] (rookiepy) is optional and known to FAIL TO BUILD on Pyt...
|
812 |