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.
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.
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ûrThe 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 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
Ingénierie de Prompts
Data & IA
Bonnes pratiques et templates de prompt engineering pour maximiser les résultats IA.
Visualisation de Données
Data & IA
Génère des visualisations de données et graphiques adaptés à vos données.
Architecture RAG
Data & IA
Guide de configuration d'architectures RAG (Retrieval-Augmented Generation).