Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/akillness/oh-my-skills --skill notebooklmコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
One-shot installer for the akillness/oh-my-gods agent skill bundle (80+ skills spanning agent-browser, agent-workflow, ai-research-skills, api-design, and the full god-skills catalog). Use when the user asks to add the oh-my-gods skill pack, bring in the AgenticSkills bundle, or wants every god-skill copied into Claude Code, Codex CLI, Antigravity/Gemini, and OpenCode in one step. Triggers on: AgenticSkills, agenticskills, oh-my-gods, god-skills, install oh-my-gods, bring in agentic skills bundle, install gods skills, add god skills.
Make any software agent-native with HKUDS CLI-Anything — route between four modes: install ready-made CLI harnesses via the CLI-Hub package manager (`pip install cli-anything-hub`, then `cli-hub list/search/info/install/launch`), give agents the autonomous discovery meta-skill (`npx skills add HKUDS/CLI-Anything --skill cli-hub-meta-skill`), generate a new harness from any codebase or GitHub repo via the 7-phase pipeline (`/plugin install cli-anything` → `/cli-anything <path>`), or iterate with `/cli-anything:refine`, `:test`, `:validate`. 40+ production harnesses (GIMP, Blender, LibreOffice, OBS, ComfyUI, Ollama, Godot, QGIS, …), 2,461 passing tests, Click CLIs with REPL + `--json` output. Use when agents must drive real desktop/server software without GUI automation. Triggers on: cli-anything, cli-hub, cli-anything-hub, agent-native cli, make software agent-native, cli harness generation, /cli-anything, harness refine, HKUDS cli.
Run Comet's Opik — open-source LLM observability, evaluation, and optimization — from one routing-first skill: install the Python/TypeScript SDK, stand up a server (Comet.com cloud, Docker Compose via `./opik.sh`, or Kubernetes/Helm), wire tracing through `@opik.track` or one of 50+ framework integrations (OpenAI, Anthropic, LangChain, LangGraph, LlamaIndex, CrewAI, DSPy, Ollama, Bedrock, Vercel AI SDK, …), score outputs with LLM-as-a-judge metrics (Hallucination, Moderation, Answer Relevance, Context Precision), and run Datasets/Experiments evaluations including PyTest CI gates. Use when the user wants LLM tracing, prompt evaluation, production LLM monitoring, agent optimization, or guardrails with Opik. Triggers on: opik, comet opik, opik configure, opik.sh, llm observability, llm tracing, llm as a judge, hallucination metric, prompt evaluation, opik dashboard, opik guardrails, agent optimizer.
SOC 職業分類に基づく
SKILL.md を表示中
| name | notebooklm |
| description | Use this skill when > |
Query your NotebookLM notebooks directly. Source-grounded, citation-backed answers without leaving the editor.
notebooklm brings Google NotebookLM into your Claude Code workflow via browser automation (Patchright). Instead of switching tabs and copy-pasting, you ask questions from the terminal and get grounded answers from your uploaded sources.
claude plugin marketplace add PleasePrompto/notebooklm-skill
mkdir -p ~/.claude/skills
cd ~/.claude/skills
git clone https://github.com/PleasePrompto/notebooklm-skill.git notebooklm
npx skills add https://github.com/akillness/oh-my-skills --skill notebooklm
patchright install chrome (Chromium will NOT work)# 1. Install Python dependencies (auto-runs on first use)
cd ~/.claude/skills/notebooklm
python scripts/run.py auth_manager.py setup
# 2. A Chrome window opens — log in to Google manually
# The session is saved and reused for future queries
# 3. Add your first notebook
python scripts/run.py notebook_manager.py add \
--url "https://notebooklm.google.com/notebook/YOUR_ID" \
--name "my-research" \
--description "Research notes on topic X"
scrapling or web-research instead# Ask the currently active notebook
python scripts/run.py ask_question.py --question "What are the key findings about X?"
# Ask a specific notebook by ID
python scripts/run.py ask_question.py \
--notebook-id "my-research" \
--question "Summarize the methodology section"
# Ask with browser visible (useful for debugging)
python scripts/run.py ask_question.py \
--question "What does source 3 say about Y?" \
--show-browser
# List all notebooks
python scripts/run.py notebook_manager.py list
# Search notebooks
python scripts/run.py notebook_manager.py search "machine learning"
# Activate a notebook (sets it as the default)
python scripts/run.py notebook_manager.py activate --id "my-research"
# Remove a notebook from the library
python scripts/run.py notebook_manager.py remove --id "old-notes"
# Check auth status
python scripts/run.py auth_manager.py status
# Re-authenticate if session expired
python scripts/run.py auth_manager.py reauth
# Clear all auth data
python scripts/run.py auth_manager.py clear
All user data is stored locally at ~/.claude/skills/notebooklm/data/:
data/
├── library.json # Your notebook registry
├── auth_info.json # Authentication metadata
├── browser_state/ # Persistent browser session
│ ├── browser_profile/ # Chrome profile data
│ └── state.json # Cookies and localStorage
└── sessions.json # Active session tracking
| Constraint | Detail |
|---|---|
| Rate limit | 50 queries/day (free Google account) |
| Local only | Web UI sandbox blocks network access |
| Manual upload | Documents must be uploaded to NotebookLM manually first |
| Browser overhead | Each query opens a browser session (adds 3–10 seconds) |
| Auth renewal | Session cookies expire; run auth_manager.py reauth when needed |
| Symptom | Fix |
|---|---|
Authentication failed | Run python scripts/run.py auth_manager.py reauth |
Browser crash | Run python scripts/run.py auth_manager.py clear then setup |
No response / timeout | Increase timeout or run with --show-browser to inspect |
Rate limited | Wait 24 hours or use a different Google account |
Chrome not found | Run patchright install chrome (not chromium) |
Import error | First-run auto-setup may have failed; run setup_environment.py manually |
Full troubleshooting guide: ~/.claude/skills/notebooklm/references/troubleshooting.md
After each answer, always assess completeness:
"Is that ALL you need to know from this notebook on this topic?"
NotebookLM can answer follow-up questions within the same session context. Ask targeted follow-ups before switching notebooks to get the most grounded coverage.
~/.claude/skills/notebooklm/references/usage_patterns.md — advanced usage patterns~/.claude/skills/notebooklm/references/api_reference.md — programmatic usage~/.claude/skills/notebooklm/references/troubleshooting.md — troubleshooting guide~/.claude/skills/notebooklm/AUTHENTICATION.md — hybrid auth system details