一键导入
anygen-task-download
AnyGen: Download artifacts from a completed task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
AnyGen: Download artifacts from a completed task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | anygen-task-download |
| version | 1.0.0 |
| description | AnyGen: Download artifacts from a completed task. |
| metadata | {"requires":{"bins":["anygen"],"env":["ANYGEN_API_KEY"]},"install":[{"id":"node","kind":"node","package":"@anygen/cli","bins":["anygen"]}],"cliHelp":"anygen task +download --help"} |
PREREQUISITE: Read
../anygen-shared/SKILL.mdfor auth, global flags, and security rules.
Download artifacts from a completed task.
anygen task +download --task-id <id> --output-dir <dir>
| Flag | Required | Description |
|---|---|---|
--task-id | ✓ | Task ID |
--output-dir | — | Local directory to save files (default: current directory) |
--file <name...> | — | Download specific file(s) by name (repeatable) |
--thumbnail | — | Download thumbnail image instead of main files |
# Download all output files
anygen task +download --task-id xxx
# Download specific file(s) by name
anygen task +download --task-id xxx --file report.pptx
anygen task +download --task-id xxx --file report.pptx --file data.xlsx
# Download thumbnail (for preview)
anygen task +download --task-id xxx --thumbnail
# Specify output directory
anygen task +download --task-id xxx --output-dir ./output
Returns JSON with downloaded file paths:
{
"status": "completed",
"task_id": "xxx",
"files": [
{ "file": "./report.pptx", "name": "report.pptx" },
{ "file": "./data.xlsx", "name": "data.xlsx" }
],
"task_url": "https://..."
}
completed state. Use task get --wait first if needed.--file, all output files are downloaded.--thumbnail first to show a preview, then download the main files when user requests it.--file come from the output.files[].name field in the task get response.[!CAUTION] This is a write command (writes files to disk) — confirm the output directory with the user.
anygen-workflow-generate — Full content generation workflowAI-powered content creation suite. Create slides/PPT, documents, diagrams, websites, data visualizations, research reports, storybooks, financial analysis, and images. Supports: pitch decks, keynotes, technical docs, PRDs, white papers, architecture diagrams, flowcharts, mind maps, org charts, ER diagrams, sequence diagrams, UML, landing pages, CSV analysis, earnings research, posters, banners, comics, and more.
anygen CLI: Shared patterns for authentication, global flags, and output formatting.