원클릭으로
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 직업 분류 기준
AI-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.
| 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 workflow