agentsclimarketplace

Anygen task download

Skill AnyGenIO/anygen-cli/skills/anygen-task-download

AnyGen CLI - AI-powered content generation platform

Install
npx -y skills add AnyGenIO/anygen-cli --skill anygen-task-download

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

AnyGen: Download artifacts from a completed task.

SKILL.md

2.2 KB, 516 tokens by cl100k_base, as published. Nobody here has run it

task +download

PREREQUISITE: Read ../anygen-shared/SKILL.md for auth, global flags, and security rules.

Download artifacts from a completed task.

Usage

anygen task +download --task-id <id> --output-dir <dir>

Flags

FlagRequiredDescription
--task-idTask ID
--output-dirLocal directory to save files (default: current directory)
--file <name...>Download specific file(s) by name (repeatable)
--thumbnailDownload thumbnail image instead of main files

Examples

# 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

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://..."
}

Tips

  • The task must be in completed state. Use task get --wait first if needed.
  • Without --file, all output files are downloaded.
  • Use --thumbnail first to show a preview, then download the main files when user requests it.
  • For smart_draw tasks, diagram files are automatically rendered to PNG.
  • File names for --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.

See Also

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,970. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.