upload-file-cancel

Cancel in-progress chunked file uploads and discard all uploaded chunks.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill cancels an in-progress chunked file upload and ensures all uploaded chunks are discarded to prevent wasted storage and orphaned partial uploads.

Core Features & Use Cases

  • Immediate cancellation: Revoke an active chunked upload session using its upload token.
  • Storage cleanup: Ensure the server discards all uploaded chunks and frees associated storage.
  • Use case: Abort uploads interrupted by client crashes, network failures, or when replacing an incorrect file before completion.

Quick Start

Cancel the in-progress upload by supplying the upload token to this skill and verify that all chunks have been discarded.

Frequently Asked Questions about upload-file-cancel

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

FAQPage Schema
How do I cancel an in-progress chunked file upload in NovaDB CMS?

To cancel a chunked file upload, supply the valid upload token to revoke the active session. This immediately aborts the in-progress upload and discards all uploaded chunks from the server.

What happens to uploaded chunks when I abort a chunked upload before completion?

Aborting a chunked upload discards all uploaded chunks and frees associated server-side storage. This prevents wasted storage space and orphaned partial uploads from remaining on the server.

Why do I need an upload token to revoke a chunked file upload session?

An upload token is required to identify and authenticate the specific active chunked upload session being cancelled. The token ensures the cancellation request targets the correct upload before discarding its chunks.

Can I cancel a chunked upload if the client crashes or the network connection fails?

Yes, chunked uploads interrupted by client crashes or network failures can be cancelled by supplying the upload token. This revokes the session and frees the server-side storage occupied by partial chunks.

When should I abort a chunked upload instead of letting it complete?

Abort a chunked upload when replacing an incorrect file before completion or when the client experiences interruptions. Cancelling immediately frees storage by discarding all uploaded chunks rather than waiting for timeout.