Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

wechat-to-notebooklmwechat TO NotebookLM 搜索

Agent Skill

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

总安装

186

周安装

8

GitHub Stars

93

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/zstmfhy/wechat-to-notebooklm --skill wechat-to-notebooklm

简介

该技能用于将微信相关内容导入 NotebookLM 进行知识管理与深度分析。

  • 适合需要整理微信素材、提炼核心观点并构建知识库的用户使用。
  • 支持内容检索、筛选与结构化输出,提升信息处理效率。
  • 安装前请核实是否触发联网、文件读写或外部 API 调用等操作。
  • 建议结合原始 README 确认功能细节及数据隐私保护措施。

SKILL.md

WeChat to NotebookLM

Automatically sync WeChat Official Account articles to Google NotebookLM for AI-powered analysis, summarization, and content generation.

What This Does

This skill automates the entire workflow of getting a WeChat article into NotebookLM:

  1. Fetches the article content from the URL
  2. Converts to clean Markdown format
  3. Creates a NotebookLM notebook (optionally with custom title)
  4. Uploads the article as a source
  5. Returns the notebook ID for further interaction

When to Use

Use this skill when you:

  • Have a WeChat Official Account article URL (mp.weixin.qq.com)
  • Want to save the article to NotebookLM for analysis
  • Want to create a podcast/video from the article
  • Want to chat with the article content using AI
  • Want to summarize or extract insights from the article

Example triggers:

  • "Sync this WeChat article to NotebookLM"
  • "Add this mp.weixin.qq.com link to my notebook"
  • "Create a notebook from this WeChat article"
  • "Save this article to NotebookLM"

Prerequisites

Before using this skill, ensure NotebookLM CLI is authenticated:

notebooklm login          # Opens browser for Google OAuth
notebooklm status         # Verify authentication

Workflow

Complete Sync Process

Step 1: Fetch Article Content

Use the web reader MCP tool to fetch the WeChat article:

mcp__web_reader__webReader
URL: <WeChat article URL>
return_format: markdown
retain_images: false (optional, saves bandwidth)

This returns the article content in Markdown format.

Step 2: Save Content to File

Save the fetched content to a temporary Markdown file:

# Extract title from content or use default
# Save to /tmp/<sanitized_title>.md

The file should be saved with a descriptive name based on the article title.

Step 3: Create NotebookLM Notebook

Create a new notebook with the article title:

notebooklm create "<article_title>" --json

Parse the JSON response to get the notebook ID:

{"notebook": {"id": "abc-123-def", "title": "..."}}

Step 4: Upload Article to Notebook

Add the Markdown file as a source to the notebook:

notebooklm source add /tmp/<article_title>.md --notebook <notebook_id> --json

Parse the response to get the source ID:

{"source": {"id": "source-xyz-789", "title": "...", "type": "text"}}

Step 5: Confirm Success

Report to the user:

  • Notebook title and ID
  • Source file name
  • Notebook ID for further use
  • Suggested next steps (ask questions, generate podcast, etc.)

Progress Updates

Provide brief, clear status updates:

✅ Fetching article from WeChat...
✅ Converting to Markdown...
✅ Creating notebook "Article Title"...
✅ Uploading to NotebookLM...
✅ Done! Notebook ID: abc-123-def

Output Summary

When complete, provide:

Successfully synced WeChat article to NotebookLM!

📓 Notebook: [Article Title]
   ID: abc-123-def

📄 Source: article_title.md
   ID: source-xyz-789

💡 Next steps:
   - Use: notebooklm use abc-123-def
   - Ask: notebooklm ask "Summarize this article"
   - Generate: notebooklm generate audio "Create a podcast"

Error Handling

Common Issues

1. Article URL is invalid or inaccessible

  • Error: Failed to fetch content
  • Solution: Verify the URL is correct and accessible
  • Alternative: Try copying the article content manually

2. NotebookLM authentication failed

  • Error: Auth/cookie error
  • Solution: Run notebooklm login again
  • Check: notebooklm status to verify

3. File upload failed

  • Error: Invalid file or upload error
  • Solution: Check if Markdown file was created correctly
  • Verify: File path and permissions

4. Notebook creation failed

  • Error: Rate limiting or API error
  • Solution: Wait a few minutes and retry
  • Alternative: Add to existing notebook with --notebook flag

Advanced Features

Add to Existing Notebook

If user wants to add to an existing notebook:

# Get list of notebooks
notebooklm list --json

# Use existing notebook ID
notebooklm source add /tmp/article.md --notebook <existing_notebook_id> --json

Batch Processing

For multiple WeChat articles:

# Create notebook once
notebooklm create "WeChat Articles Collection" --json

# Add multiple articles
for url in "${urls[@]}"; do
  # Fetch, save, upload to same notebook
done

Follow-up Actions

After successful upload, suggest:

For analysis:

notebooklm use <notebook_id>
notebooklm ask "What are the key insights?"
notebooklm ask "Summarize in 3 bullet points"

For content generation:

notebooklm generate audio "Create an engaging podcast"
notebooklm generate video "Make an explanatory video"
notebooklm generate quiz "Test understanding"

For research:

notebooklm source add-research "related topics" --mode deep
notebooklm ask "Compare with other sources"

Limitations

  • WeChat articles only: Optimized for mp.weixin.qq.com URLs
  • Text content: Focuses on text, images are preserved as links
  • Public articles: Requires publicly accessible articles
  • Rate limits: NotebookLM has rate limits on uploads

Troubleshooting

Problem: Article content is incomplete

  • Cause: WeChat page uses JavaScript rendering
  • Solution: web reader tool handles most cases, but some dynamic content may be missed

Problem: Chinese characters display incorrectly

  • Cause: File encoding issues
  • Solution: Ensure UTF-8 encoding when saving files

Problem: NotebookLM says "Processing" for too long

  • Cause: Large articles take time to index
  • Solution: Wait 1-2 minutes, then check status with notebooklm source list

Best Practices

  1. Use descriptive notebook titles: Extract from article title or topic
  2. Keep articles organized: Use separate notebooks for different topics
  3. Verify uploads: Check notebooklm source list after upload
  4. Clean up temp files: Remove /tmp files after successful upload
  5. Handle rate limits: If uploads fail, wait 5-10 minutes before retry

Quick Reference

TaskCommand/Tool
Fetch articlemcp__web_reader__webReader
Create notebooknotebooklm create "Title" --json
Upload filenotebooklm source add file.md --notebook <id> --json
Check sourcesnotebooklm source list --notebook <id> --json
Chat with articlenotebooklm use <id>; notebooklm ask "question"
Generate podcastnotebooklm generate audio "instructions" --notebook <id>

Example Usage

User: "Sync this WeChat article to NotebookLM: https://mp.weixin.qq.com/s/xxxxx"

Agent workflow:

  1. Fetch article using web reader
  2. Save to /tmp/article_title.md
  3. Create notebook "Article Title"
  4. Upload markdown file
  5. Report success with IDs and next steps

Time estimate: 30-60 seconds total

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.59%
按下载量换算24

Claude

29.93%
按下载量换算19

Cursor

20.73%
按下载量换算13

Gemini CLI

8.88%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills