What problem does it solve? Files written directly to the sandbox's network-mounted workspace can appear complete in the shell yet be unreadable through the platform, causing exports to fail silently or links to die. This Skill ensures deliverables like reports, HTML pages, images, and archives are written correctly and handed to the user as permanent, working download links. ## Core Features & Use Cases - Correct File Writing: Enforces writing deliverables with capsule.fs.write_file instead of shell redirection or Python open(), avoiding the mount-incoherency failure where a file looks fine but exports as empty. - Permanent Link Delivery: Uses the export_file tool to produce a persistent, authenticated download link that appears in the conversation's files list and survives page refreshes. - Failure Diagnosis: Distinguishes between retryable "still saving" errors, terminal storage failures, and missing-file errors, with a specific recovery action for each. - Use Case: After generating a Q3 report as HTML, write it to /workspace/outputs/ with capsule.fs.write_file, call export_file with a display name, and hand the user the returned permanent link. ## Quick Start Write my report to /workspace/outputs/ using capsule.fs.write_file and then export it with the export_file tool so I get a permanent download link.