Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

ai-toolsAI 工具

Agent Skill

ai-tools 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

672

周安装

28

GitHub Stars

12

下载量

224
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-tools(AI 工具)
来源仓库:https://github.com/samhvw8/dotfiles
仓库路径:skills/ai-tools
安装命令:
npx skills add https://github.com/samhvw8/dotfiles --skill ai-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/samhvw8/dotfiles --skill ai-tools

简介

AI Tools 统一集成 Google AI 生态,包括 Gemini API、Gemini CLI 与 NotebookLM。

  • 适用于需同时使用音频分析、文档问答、代码审查等多模态能力的开发者。
  • 支持媒体处理(图像/PDF/视频)、网页研究与文档 grounding 问答等功能模块。
  • 使用前需设置 GEMINI_API_KEY 环境变量,并从 https://aistudio.google.com 获取密钥。
  • ai-tools 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Google AI Tools

Unified integration for Google's AI ecosystem: Gemini API (multimodal), Gemini CLI, and NotebookLM.

Module Selection

NeedModuleWhen to Use
Media ProcessingGemini APIAudio/image/video/PDF analysis, generation
Second OpinionGemini CLICode review, cross-validation, alternative perspective
Web ResearchGemini CLICurrent info via Google Search grounding
Doc-Grounded Q&ANotebookLMQuestions from uploaded documents

Gemini API (Multimodal)

Process audio, images, videos, documents, and generate images.

Prerequisites

export GEMINI_API_KEY="your-key"  # Get from https://aistudio.google.com/apikey
pip install google-genai python-dotenv pillow

Quick Commands

Transcribe Audio:

python scripts/gemini_batch_process.py --files audio.mp3 --task transcribe --model gemini-2.5-flash

Analyze Image:

python scripts/gemini_batch_process.py --files image.jpg --task analyze --prompt "Describe this" --output output.md

Process Video:

python scripts/gemini_batch_process.py --files video.mp4 --task analyze --prompt "Summarize with timestamps"

Extract from PDF:

python scripts/gemini_batch_process.py --files doc.pdf --task extract --prompt "Extract tables as JSON" --format json

Generate Image:

python scripts/gemini_batch_process.py --task generate --prompt "A futuristic city" --model gemini-2.5-flash-image

Model Selection

ModelUse CaseContext
gemini-2.5-flashGeneral (best price/perf)1-2M tokens
gemini-2.5-proHighest quality1-2M tokens
gemini-2.5-flash-imageImage generation-

Supported Formats

  • Audio: WAV, MP3, AAC, FLAC, OGG (up to 9.5 hrs)
  • Images: PNG, JPEG, WEBP, HEIC (up to 3,600 images)
  • Video: MP4, MOV, AVI, WebM (up to 6 hrs)
  • Documents: PDF (up to 1,000 pages)

References: references/audio-processing.md, references/vision-understanding.md, references/video-analysis.md, references/document-extraction.md, references/image-generation.md


Gemini CLI

Orchestrate Gemini for code review, web search, and parallel tasks.

Verify Installation

command -v gemini || which gemini

Quick Commands

Code Generation:

gemini "Create [description]. Output complete file." --yolo -o text

Code Review:

gemini "Review [file] for bugs and security issues" -o text

Web Research:

gemini "What are the latest [topic]? Use Google Search." -o text

Architecture Analysis:

gemini "Use codebase_investigator to analyze this project" -o text

Faster Model:

gemini "[prompt]" -m gemini-2.5-flash -o text

Key Flags

  • --yolo / -y: Auto-approve tool calls
  • -o text: Human-readable output
  • -o json: Structured output
  • -m gemini-2.5-flash: Faster model

When to Use

✅ Second opinion on code ✅ Current web information ✅ Codebase architecture analysis ✅ Parallel code generation

❌ Simple quick tasks ❌ Interactive refinement

References: references/gemini-reference.md, references/gemini-patterns.md, references/gemini-templates.md, references/gemini-tools.md


NotebookLM

Query uploaded documents with source-grounded answers.

Prerequisites

python scripts/run.py auth_manager.py status  # Check auth
python scripts/run.py auth_manager.py setup   # One-time setup (browser visible)

Quick Commands

List Notebooks:

python scripts/run.py notebook_manager.py list

Add Notebook:

python scripts/run.py notebook_manager.py add \
  --url "https://notebooklm.google.com/notebook/..." \
  --name "Name" --description "What it contains" --topics "topic1,topic2"

Ask Question:

python scripts/run.py ask_question.py --question "Your question" --notebook-id ID

Search Notebooks:

python scripts/run.py notebook_manager.py search --query "keyword"

Critical Notes

  1. Always use run.py wrapper - Handles venv automatically
  2. Browser visible for auth - Required for Google login
  3. Follow-up questions - Don't stop at first answer
  4. Rate limit: 50 queries/day on free accounts

References: references/notebooklm-api.md, references/notebooklm-troubleshooting.md


Scripts Overview

Gemini API Scripts (in scripts/)

ScriptPurpose
gemini_batch_process.pyBatch process media files
media_optimizer.pyPrepare media for API limits
document_converter.pyConvert docs to PDF

NotebookLM Scripts (via run.py)

ScriptPurpose
auth_manager.pyAuthentication management
notebook_manager.pyLibrary CRUD
ask_question.pyQuery interface
cleanup_manager.pyData cleanup

Cost Optimization

Gemini API Pricing

ModelInputOutput
2.5 Flash$1.00/1M$0.10/1M
2.5 Pro$3.00/1M$12.00/1M

Token Rates

  • Audio: 32 tokens/sec (1 min = 1,920 tokens)
  • Video: ~300 tokens/sec
  • PDF: 258 tokens/page
  • Image: 258-1,548 tokens

Best Practices

  1. Use gemini-2.5-flash for most tasks
  2. Use File API for files >20MB
  3. Optimize media before upload
  4. Process specific segments, not full videos

Error Handling

ErrorSolution
401Check API key
429Rate limit - wait or use flash model
ModuleNotFoundErrorUse run.py wrapper
Auth failsBrowser must be visible

References

Gemini API

  • references/audio-processing.md
  • references/vision-understanding.md
  • references/video-analysis.md
  • references/document-extraction.md
  • references/image-generation.md

Gemini CLI

  • references/gemini-reference.md
  • references/gemini-patterns.md
  • references/gemini-templates.md
  • references/gemini-tools.md

NotebookLM

  • references/notebooklm-api.md
  • references/notebooklm-troubleshooting.md
  • references/notebooklm-usage.md

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

windsurf

26.84%
按下载量换算60

Claude Code

26.15%
按下载量换算59

Codex

17.63%
按下载量换算39

Antigravity

14.45%
按下载量换算32

OpenCode

8.28%
按下载量换算19

Cursor

3.91%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills