AgentStack
SKILL verified MIT Self-run

Genmedia

skill-fal-ai-community-genmedia-cli-genmedia · by fal-ai-community

>

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-fal-ai-community-genmedia-cli-genmedia

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Genmedia? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

genmedia workflow

Use this skill when the user wants to execute a fal.ai model — either by task description (e.g. "generate a video of a dog running") or by a specific endpoint_id (e.g. fal-ai/flux/dev). Load genmedia-ref alongside this skill for the full command reference.

Steps

  1. Discover — If no endpoint_id is given, search for a suitable model:

`` genmedia models "" --json ``

  1. Inspect — Get the model's input parameters:

`` genmedia schema --json `` Read all required fields before running.

  1. Upload files (if inputs include images/video/audio):

`` genmedia upload --json ` Use the returned url` as the parameter value.

  1. Run the model:
  • Fast model (completes in seconds):

`` genmedia run -- ... --json ``

  • Slow model (video generation, large jobs):

`` genmedia run -- ... --async --json genmedia status --result --json ``

  1. Save outputs — when the user expects files on disk, add --download

to run or status. The CLI writes every media URL from the result to the filesystem and returns the local paths in downloaded_files[]. Do not curl the URLs yourself; use the flag. `` genmedia run fal-ai/flux/dev --prompt "a cat" --download --json # cwd, source file names genmedia run fal-ai/flux/dev --prompt "a cat" --num_images 3 --download "./out/{index}.{ext}" --json genmedia status --download ./out/ --json # implies --result ` Use {index}, {name}, {ext}, {requestid} placeholders in the template when the model returns multiple files (images[], imageurls[], etc.) to avoid filename collisions. A trailing /` or an existing directory path saves files under that directory using their source names.

  1. Return the result to the user. If --download was used, reference

the paths from downloaded_files[]; otherwise present the URLs from result clearly.

Assets library (genmedia assets ...)

The fal Assets API lets you persist generated media, organize it into collections, and define reusable characters.

Two ways to identify an asset

  • vector_id — present for any media in the user's library or in a

semantic-search result. Returned by assets browse / assets get / assets upload. Used both as a flag on mutations and as the positional argument for assets get and assets tags for-asset.

  • request_id — the generation the user just ran. Returned by

genmedia run and genmedia status.

Which to pass. Use --vector_id if you have it (anything in the library or a search result has one); otherwise use --request_id for a fresh generation.

Use these flags on every command that takes an asset target: assets favorite, assets unfavorite, assets tags assign / unassign / set, assets collections add / remove, assets characters create --reference_image .

assets upload is for external media only

Use assets upload only for local files or non-fal URLs — media that isn't already in fal's system. For anything that came out of a genmedia run, use the request_id instead.

Cheatsheet

| What you have | Use | |---|---| | vector_id (from assets browse / get / upload) | --vector_id | | request_id (from genmedia run / status) | --request_id | | Local file or non-fal URL | assets upload |

Example — character from a fresh generation

RUN=$(genmedia run fal-ai/flux/schnell --prompt "an elegant black cat" --json)
REQ=$(echo "$RUN" | jq -r .request_id)

genmedia assets characters create "Whiskers" \
  --description "An elegant black cat sitting on a moss-covered rock" \
  --reference_image "$REQ" \
  --identifier whiskers \
  --json

Same pattern for assets collections add --request_id and assets favorite --request_id . Newly-referenced media — whether by request_id or by a vector_id from a fresh upload — may take a moment to appear in assets browse / semantic search while the embedding finishes.

For the full command tree, run genmedia assets --help or any subcommand with --help.

Handling errors

When a command exits non-zero, it prints a JSON error object to stderr:

{
  "error": "Validation error — num_images: Input should be less than or equal to 4",
  "details": {
    "endpoint_id": "fal-ai/flux/schnell",
    "request_id": "019d...",
    "status": 422,
    "error_type": "ValidationError",
    "validation_errors": [
      { "field": "num_images", "message": "Input should be less than or equal to 4", "type": "less_than_equal", "input": 20 }
    ],
    "body": { "detail": [ ... raw FastAPI payload ... ] }
  }
}
  • status: 422 / error_type: "ValidationError" means the inputs violated

the model schema. Read details.validation_errors — each entry names the field, a human message, the validator type, and the input that was rejected. Re-run genmedia schema --json if you need the allowed values, fix the offending args, and retry.

  • Other statuses (401 auth, 403 forbidden, 404 endpoint not found, 429 rate

limited, 5xx upstream) surface the server message directly in error and do not contain validation_errors. Do not retry 4xx errors blindly — correct the request first.

  • For in-flight model failures, details.logs contains the most recent

model-side log lines.

Notes

  • Always use --json so output is machine-readable.
  • Run genmedia pricing --json first if cost is a concern.
  • If unsure which model to pick, run genmedia docs "" --json for

guidance from fal.ai documentation.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.