SpaceZephyr

Space Weread — Development skill for Claude Code

Development community

三个微信读书 Claude Code Skill:导出 / 分析 / 教练(推荐+引用+每日回顾).

How to install Space Weread

This entry records only its repository, not the path inside it, so there is no exact command to give. Open SpaceZephyr/space-weread and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Space Weread does

三个微信读书 Claude Code Skill:导出 / 分析 / 教练(推荐+引用+每日回顾).

Alternatives in Development

  • System Cache Cleanup — Clean temporary files and caches to free disk space: $ARGUMENTS 23.4k ★
  • Mono Color Skill — One-ink editorial print image skill — warm paper, halftone photography, active negative space, and restrained 3k ★
  • Universal Pattern Space — Pattern Space: Where Minds Dance Together 84 ★

README

space-weread

把微信读书的数据真正"用起来"。三个配套的 Claude Code Skill,覆盖**导出**、**分析**、**应用**三个场景。

依赖官方 `weread-skills` 提供的 API Gateway。

三个 Skill

Skill 一句话 触发词举例
space-weread-export 把所有划线笔记导出为 Markdown / PDF "导出我的微信读书划线"、"备份读书笔记"
space-weread-analyzer 基于全量阅读数据生成 10 维度深度报告(含 MBTI 推测),输出 9:16 白底简约 HTML 可视化 "分析我的微信读书"、"读书画像"、"我的阅读报告"
space-weread-coach 把读过的书"用起来":(1) 推荐阶梯书单 (2) 写作引用助手 (3) 每日划线回顾(去重 + 支持定时) "我想搞懂 XX"、"今日笔记"、"推一条划线"

安装

前置依赖

  1. 安装官方 weread-skills
    下载 https://cdn.weread.qq.com/skills/weread-skills.zip 安装 skill
  2. 在微信读书登录绑定,获得 API Key,写入环境变量:
    export WEREAD_API_KEY=wrk-xxxxxxxx

安装本仓库的 Skill

cd ~/.claude/skills
git clone https://github.com/zephyrwang6/space-weread.git
ln -s space-weread/space-weread-export space-weread-export
ln -s space-weread/space-weread-analyzer space-weread-analyzer
ln -s space-weread/space-weread-coach space-weread-coach

或直接把三个目录拷贝到 `~/.claude/skills/` 下。

用法示例

**导出**:

导出我的微信读书划线,两个格式都要,全部书籍

**分析**:

帮我分析微信读书,猜我的 MBTI

**教练**:

我想搞懂行为经济学

我在写关于"长期主义"的文章,能引用我读过的哪几本书?

今日笔记

定时推送(仅 coach)

每天早 8 点桌面通知一条历史划线:

crontab -e
# 加入:
0 8 * * * /usr/bin/python3 ~/.claude/skills/space-weread-coach/scripts/pick_review.py --notify

或在 Claude Code 内:

/loop 1d 推一条今日读书回顾

文件结构

space-weread-export/
├── SKILL.md
└── scripts/md_to_pdf.py        # MD → PDF(macOS Chrome 无依赖)

space-weread-analyzer/
├── SKILL.md
├── scripts/fetch.py            # 全量数据拉取
└── templates/report.html       # 9:16 卡片模板

space-weread-coach/
├── SKILL.md
├── scripts/
│   ├── fetch_corpus.py         # 划线/想法语料缓存(24h)
│   └── pick_review.py          # 去重抽样 + 历史写入
└── state/                      # 本地状态(已 gitignore)

许可

MIT