Loading...
Loading...
Modao prototype capture tool. Automatically capture all pages, screenshots and comments from Modao prototype links, and generate Markdown documents. Use cases include: (1) Capture prototype pages (2) Generate page screenshots (3) Extract comment content (4) Export Markdown documents
npx skill4agent add abcfed/claude-marketplace modao-capturenpm install/Applications/Google Chrome.appnode scripts/modao-capture.js --url "Modao prototype link" --output "project directory"| Parameter | Description |
|---|---|
| Modao prototype sharing link (required) |
| Project root directory path (required) |
| Number of concurrent processes (default: 3) |
| Screenshot scaling factor 1-5 (default: 3) |
# Capture prototype and output to current directory
node scripts/modao-capture.js \
--url "https://modao.cc/proto/abc123/sharing" \
--output "$(pwd)"# High-quality screenshot (scaling factor 5), concurrency 2
node scripts/modao-capture.js \
--url "https://modao.cc/proto/abc123/sharing" \
--output "/path/to/project" \
--scale 5 \
--concurrency 2modao_<Canvas Name>/modao_<Canvas Name>/
├── README.md # Index file
├── 01_HomePage1.png # Page screenshot
├── 01_HomePage.md # Page document
├── 02_DetailPage1.png
├── 02_DetailPage.md
└── ...# Modao Prototype Index
**Project ID**: abc123
**Link**: https://modao.cc/proto/abc123/sharing
---
## Page List
| Serial Number | Page | Number of Comments |
|------|------|--------|
| 1 | [Home Page](./01_HomePage.md) | 3 |
| 2 | [Detail Page](./02_DetailPage.md) | 0 |# Home Page
## Prototype

## Comment Content
### Comment 1
**Content**:
This is the description of the first comment
---User: "Capture this prototype https://modao.cc/proto/xxx/sharing"
Claude:
1. node scripts/modao-capture.js --url "https://modao.cc/proto/xxx/sharing" --output "$(pwd)"
2. Check the README.md index in the output directory
3. Read the generated page documentsmodao-capture/
├── .gitignore
├── SKILL.md
├── package.json
└── scripts/
└── modao-capture.js # Main script