Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.gumloop.com/llms.txt

Use this file to discover all available pages before exploring further.

gumloop artifacts exposes the files an agent has produced — reports, generated docs, exported data, etc. Artifacts are always scoped to an agent.

List artifacts

gumloop artifacts list agent_abc
gumloop artifacts list agent_abc --session session_xyz --limit 50
Prints ID, FILENAME, VERSION, SESSION, and CREATED. If the response is paginated, the next cursor is printed at the bottom.
Grab the agent ID from gumloop agents list and the session ID from gumloop sessions get <id> or the URL of the session in the Gumloop hub.
FlagDescription
--sessionFilter to artifacts produced inside a specific session.
--limitMaximum number of artifacts to return.
--cursorPagination cursor from a previous list call.
--jsonPrint the raw response payload.

Download an artifact

gumloop artifacts download artifact_abc
By default the artifact is written to the current directory under its original filename. Use -o to change the destination:
FlagDescription
-o, --outputFile or directory to write to. Use - to write to stdout.
--version-idDownload a specific artifact version.
--jsonPrint download metadata as JSON (path + bytes).
gumloop artifacts download artifact_abc -o ./downloads/
gumloop artifacts download artifact_abc -o -                  # stream to stdout
gumloop artifacts download artifact_abc --version-id av_xyz