Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ OpenCLI supports downloading images, videos, and articles from supported platfor
| **xiaoyuzhou** | Audio, Transcript | Downloads episode audio and transcript JSON/text with local credentials |
| **zhihu** | Articles (Markdown) | Exports with optional image download |
| **weixin** | Articles (Markdown) | WeChat Official Account articles |
| **anthropic** | Articles (Markdown) | Anthropic articles with frontmatter and local image assets |

For video downloads, install `yt-dlp` first: `brew install yt-dlp`

Expand Down
1 change: 1 addition & 0 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ OpenCLI 支持从各平台下载图片、视频和文章。
| **小宇宙** | 音频、转录 | 使用本地凭证下载单集音频和转录 JSON / 文本 |
| **知乎** | 文章(Markdown) | 导出文章,可选下载图片到本地 |
| **微信公众号** | 文章(Markdown) | 导出微信公众号文章为 Markdown |
| **Anthropic** | 文章(Markdown) | 导出 Anthropic 文章,包含 frontmatter 和本地图片资源 |
| **豆瓣** | 图片 | 下载电影条目的海报 / 剧照图片 |

### 前置依赖
Expand Down
42 changes: 42 additions & 0 deletions cli-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -1447,6 +1447,48 @@
"sourceFile": "amazon/search.js",
"navigateBefore": false
},
{
"site": "anthropic",
"name": "download",
"description": "Download Anthropic articles as local Markdown with YAML frontmatter and images",
"access": "read",
"domain": "www.anthropic.com",
"strategy": "public",
"browser": true,
"args": [
{
"name": "url",
"type": "str",
"required": true,
"help": "Anthropic article URL under www.anthropic.com"
},
{
"name": "output",
"type": "str",
"default": "./anthropic-articles",
"required": false,
"help": "Output directory"
},
{
"name": "download-images",
"type": "boolean",
"default": true,
"required": false,
"help": "Download cover and article images locally"
}
],
"columns": [
"title",
"date",
"status",
"images",
"saved",
"assets"
],
"type": "js",
"modulePath": "anthropic/download.js",
"sourceFile": "anthropic/download.js"
},
{
"site": "antigravity",
"name": "dump",
Expand Down
Loading