upload-file-continue

Continue chunked file uploads with a token and finalize via commit.

Updated Feb 27, 2026
One-click install
npx skills add https://github.com/novadb/claude-plugins --skill upload-file-continue
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: upload-file-continue
Source: https://github.com/novadb/claude-plugins/tree/main/consulting/skills/upload-file-continue
Command: npx skills add https://github.com/novadb/claude-plugins --skill upload-file-continue

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a reliable mechanism to continue chunked file uploads without restarting, handling multiple sequential chunks with a provided token.

Core Features & Use Cases

  • Continue sending subsequent chunks for an in-progress upload using novadb_cms_upload_file_continue.
  • Finalize the upload when commit is true and obtain a fileIdentifier for subsequent download via get-file.
  • Clearly separates continuation from starting a new upload or canceling an in-progress upload, reducing retry effort.

Quick Start

Initiate the next chunk upload by calling novadb_cms_upload_file_continue with the token and chunk data.

Frequently Asked Questions about upload-file-continue

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I continue a chunked file upload that was interrupted?

To continue a chunked file upload, call the continuation endpoint with your original upload token and the next chunk data. This seamlessly resumes the in-progress upload without restarting from the beginning.

How does a token work for chunked file uploads?

A token for chunked file uploads tracks the progress of an in-progress upload. You obtain it from the initial upload call and pass it to subsequent continuation calls to append additional chunks sequentially.

How do I finalize a chunked upload and get a file identifier?

To finalize a chunked upload, send your final chunk data with the commit flag set to true. This completes the upload process and returns a fileIdentifier for downloading the file via get-file.

Do I need to start a new upload to send additional file chunks?

No, you do not need to start a new upload to send additional file chunks. You can apply the continuation mechanism using an existing token to append subsequent chunks and reduce retry effort.

What is the best way to handle multiple sequential chunks during file upload?

The best way to handle multiple sequential chunks during file upload is to use a dedicated continuation endpoint. It reliably processes each chunk sequentially using a token from the initial upload call.