Téléchargement d'entrée de tâche

VérifiéSûr

Télécharge des fichiers d'entrée pour des tâches, avec prise en charge du téléchargement par fragments. Gère le processus en plusieurs morceaux pour les fichiers volumineux et fournit un jeton à utiliser lors de la création de la tâche. Permet d'annuler les téléchargements en cours si nécessaire.

Spar Skills Guide Bot
Data & IAIntermédiaire
6002/06/2026
Claude Code
#file-upload#chunked-upload#job-input#novadb

Recommandé pour

Notre avis

Télécharge un fichier d'entrée pour un job avec support de téléchargement par morceaux.

Points forts

  • Support du téléchargement par morceaux pour les fichiers volumineux.
  • Intégration simple avec la création de job via un jeton et un nom.
  • Mécanisme d'annulation pour les téléchargements en cours.

Limites

  • Réservé aux fichiers d'entrée de job, pas pour les fichiers généraux.
  • Nécessite un chemin absolu sur le disque, pas de flux distant.
  • Gestion manuelle du jeton lors des téléchargements par morceaux.
Quand l'utiliser

Utilisez cette compétence pour télécharger des données d'entrée pour un job NovaDB CMS, en particulier pour des fichiers volumineux nécessitant un chargement par morceaux.

Quand l'éviter

Ne l'utilisez pas pour des téléchargements de fichiers généraux ou lorsque les fichiers proviennent d'URLs distantes.

Analyse de sécurité

Sûr
Score qualité90/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.

Aucun point d'attention détecté

Exemples

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
Skills similaires