user-manual

仓库创建 2026年7月25日最近提交 4 天前SkillHot 收录 3 天前
这个 Skill 做什么

基于代码库生成可打印的 PDF 用户手册:先读懂代码和路由,再用 Playwright 驱动真是 UI 截图,最后根据实截图写文字并排版成带封面、目录和图注的分页 PDF。适合要交付操作手册、客户交接或培训资料时使用。流程强调先学系统、再抓取界面、最后写文案,保证文档与真实界面一致。

▸ 展开 SKILL.md 英文原文

Builds a print-quality PDF user manual for an application — learns the product by reading the codebase, drives the real UI with Playwright to capture screenshots, writes the prose against what was actually captured, and renders a paginated PDF with cover, table of contents, figures and callouts. Use when asked for a user manual, operator guide, onboarding handbook, client handover documentation, or training material. Trigger: "make a user manual", "write documentation for this app", "operator guide", "client handover doc", "PDF manual", "training guide".

0
Stars
0
Forks
13
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/user-manual/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/user-manual/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# User Manual — Read the Code, Drive the UI, Ship a PDF

Three passes, in this order, and the order is the point:

1. **Learn** the product from the codebase — routes, roles, what each screen is for
2. **Capture** every screen by driving the real app
3. **Write** the prose *against the captured screenshots*, then render

**Never write the manual first.** Prose written before capture describes the UI you imagine,
and every mismatch survives into a document a customer reads. Screens get renamed, buttons
move, fields you were sure existed don't.

## Step 0: Scaffold

```bash
~/.claude/skills/user-manual/scripts/init.mjs docs/user-manual
```

Creates the working directory, `package.json`, `manua
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有