notebooklm
Consultar Cuadernos de NotebookLM desde Claude
También disponible en: teng-lin
Esta habilidad permite a Claude consultar directamente los cuadernos de Google NotebookLM, proporcionando respuestas fundamentadas en fuentes de Gemini que citan tus documentos subidos, reduciendo drásticamente las alucinaciones de la IA.
Descargar el ZIP de la skill
Subir en Claude
Ve a Configuración → Capacidades → Skills → Subir skill
Activa y empieza a usar
Pruébalo
Usando "notebooklm". Ask: What is the main finding of my research notebook?
Resultado esperado:
Based on the documents in your notebook, the main finding is that [specific content from your documents]. This is supported by [citation from source]. The key evidence includes [additional details from documents].
Usando "notebooklm". Ask: List all the API endpoints in my project documentation
Resultado esperado:
Your project documentation contains the following API endpoints: /api/users (GET, POST), /api/auth (POST), /api/documents (GET, POST, PUT, DELETE). Each endpoint is documented with request/response schemas in the OpenAPI specification section.
Auditoría de seguridad
Riesgo bajoThis skill is a legitimate Google NotebookLM integration using browser automation. The static findings are false positives triggered by: (1) shell command examples in documentation, (2) Playwright browser automation code for Google authentication, (3) network requests to Google's legitimate NotebookLM service. The combination of code execution + network + credentials is expected behavior for this type of integration skill.
Problemas de riesgo alto (1)
Problemas de riesgo medio (2)
Problemas de riesgo bajo (2)
Factores de riesgo
⚙️ Comandos externos (3)
🌐 Acceso a red (2)
📁 Acceso al sistema de archivos (2)
🔑 Variables de entorno (1)
Puntuación de calidad
Lo que puedes crear
Consulta de Documentación de Investigación
Haz preguntas sobre tus artículos de investigación, notas de reuniones o materiales de estudio almacenados en NotebookLM y obtén respuestas respaldadas por citas.
Asistente de Documentación de Base de Código
Consulta la documentación de tu base de código, READMEs y especificaciones técnicas almacenadas en cuadernos para obtener respuestas precisas sobre tu proyecto.
QA de Base de Conocimiento Personal
Treat NotebookLM as a personal knowledge base and ask Claude questions that retrieve specific information from your documents.
Prueba estos prompts
Check if NotebookLM authentication is set up. Run: python scripts/run.py auth_manager.py status
Show all notebooks in my library. Run: python scripts/run.py notebook_manager.py list
Ask a question to NotebookLM: python scripts/run.py ask_question.py --question "[YOUR QUESTION]" --notebook-id [NOTEBOOK_ID]. Use the follow-up mechanism to gather complete information.
Add a notebook to the library: python scripts/run.py notebook_manager.py add --url [URL] --name [NAME] --description [DESCRIPTION] --topics [TOPICS]. Use SMART ADD if content is unknown.
Mejores prácticas
- Always check authentication status before attempting queries
- Use the follow-up mechanism to gather complete information before responding to user
- Register notebooks with accurate descriptions and topics for better searchability
- Use --show-browser flag for debugging when issues occur
Evitar
- Do not call scripts directly without the run.py wrapper
- Do not skip follow-up questions - always synthesize complete answers
- Do not guess notebook descriptions - use SMART ADD to discover content
- Do not forget to check authentication before operations