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.
Use this skill to upload input data for a NovaDB CMS job, especially large files that benefit from chunked uploads.
Do not use for general file storage or when uploading files from remote URLs.
Security analysis
SafeThe 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 the file /data/input.csv as input to a new job.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 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
novadb_cms_job_input_upload— Start the upload (first chunk)novadb_cms_job_input_continue— Continue with subsequent chunksnovadb_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
- Call
novadb_cms_job_input_uploadwith the file path - Response returns
{ token, name }— use these as theinputFileparameter when creating a job
Chunked upload (large files)
- Call
novadb_cms_job_input_uploadwith the first chunk — response returns{ token } - For each subsequent chunk, call
novadb_cms_job_input_continuewith the token and next chunk path - Use the final
{ token, name }as theinputFileparameter 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 withnovadb_cms_create_job'sinputFileparameter - Cancel — Returns confirmation of cancellation
Prompt Engineering
Data & AI
Prompt engineering best practices and templates to maximize AI outputs.
Data Visualization
Data & AI
Generates data visualizations and charts tailored to your data.
RAG Architecture Setup
Data & AI
Setup guide for RAG (Retrieval-Augmented Generation) architectures.