List, fetch, or download job artifacts.
List, fetch, or download artifacts produced by a job.
This skill ONLY handles: Listing job artifacts, fetching a specific artifact, or downloading all artifacts as ZIP.
For job logs → use get-job-logs
For processed object IDs → use get-job-object-ids
novadb_cms_get_job_artifacts — List all artifacts for a jobnovadb_cms_get_job_artifact — Download a specific artifact by path and save to disknovadb_cms_get_job_artifacts_zip — Download all artifacts as a ZIP and save to disk{
"jobId": "abc-123"
}
{
"jobId": "abc-123",
"path": "output/report.csv",
"targetPath": "report.csv"
}
targetPath — (Optional) Relative path, e.g. "report.csv" or "artifacts/report.csv". Default: job-<jobId>-artifacts/<path>. Subdirectories are created automatically. Absolute paths and path traversal (../) are rejected.{
"jobId": "abc-123",
"targetPath": "all.zip"
}
targetPath — (Optional) Relative path, e.g. "all.zip" or "artifacts/all.zip". Default: job-<jobId>-artifacts.zip. Subdirectories are created automatically. Absolute paths and path traversal (../) are rejected.novadb_cms_get_job_artifacts to list available artifactsnovadb_cms_get_job_artifact with the artifact pathnovadb_cms_get_job_artifacts_zip{
"filePath": "report.csv",
"sizeBytes": 12345,
"contentType": "application/octet-stream"
}
targetPath to save files with meaningful namestargetPath to control where files are saved