Job Input Upload

VerifiedSafe

Upload input files for jobs with support for chunked uploads. Handles the upload process in multiple chunks for large files and provides a token to use when creating the job. Cancel in-progress uploads if needed.

Sby Skills Guide Bot
Data & AIIntermediate
706/2/2026
Claude Code
#file-upload#chunked-upload#job-input#novadb

Recommended for

Our review

Uploads an input file for a job with support for chunked uploads.

Strengths

  • Supports chunked upload for large files.
  • Seamless integration with job creation via token and name.
  • Cancel mechanism for in-progress uploads.

Limitations

  • Only for job input files, not general file uploads.
  • Requires absolute file path on disk; no remote streaming.
  • Token must be managed manually during chunked upload.
When to use it

Use this skill to upload input data for a NovaDB CMS job, especially large files that benefit from chunked uploads.

When not to use it

Do not use for general file storage or when uploading files from remote URLs.

Security analysis

Safe
Quality score90/100

The skill only uses designated tools for chunked file upload, with no access to shell, destructive commands, or external endpoints. It does not expose secrets, disable safety, or include obfuscated logic.

No concerns found

Examples

Upload small input file
Upload the file /data/input.csv as input to a new job.
Upload large file with chunks
I need to upload a large file /data/large_input.csv for a job. The file is 500MB, so use chunked upload. Start the upload.
Cancel an upload
Cancel the upload with token 'abc123'.

name: job-input-upload description: "Upload input file for a job with chunked upload support." user-invocable: false allowed-tools: novadb_cms_job_input_upload, novadb_cms_job_input_continue, novadb_cms_job_input_cancel

Job Input Upload

Upload input file for a job with chunked upload support.

Scope

This skill ONLY handles: Uploading input files for jobs, with support for chunked uploads.

For creating the job after upload → use create-job For general file uploads (not job input) → use upload-file

Tools

  1. novadb_cms_job_input_upload — Start the upload (first chunk)
  2. novadb_cms_job_input_continue — Continue with subsequent chunks
  3. novadb_cms_job_input_cancel — Cancel an in-progress upload

Parameters

Start upload

{
  "sourcePath": "/absolute/path/to/input.csv"
}
  • sourcePath — Absolute path to the file on disk (required)
  • filename — Override filename (optional, defaults to basename of sourcePath)

Continue upload

{
  "token": "upload-token-from-previous-call",
  "sourcePath": "/absolute/path/to/next-chunk"
}

Cancel upload

{
  "token": "upload-token-to-cancel"
}

Workflow

Single-chunk upload

  1. Call novadb_cms_job_input_upload with the file path
  2. Response returns { token, name } — use these as the inputFile parameter when creating a job

Chunked upload (large files)

  1. Call novadb_cms_job_input_upload with the first chunk — response returns { token }
  2. For each subsequent chunk, call novadb_cms_job_input_continue with the token and next chunk path
  3. Use the final { token, name } as the inputFile parameter when creating a job

Cancel

Call novadb_cms_job_input_cancel with the token to abort an in-progress upload.

Response

  • Upload/Continue — Returns { token, name } for use with novadb_cms_create_job's inputFile parameter
  • Cancel — Returns confirmation of cancellation
Related skills