# Resilient File Delivery

> Bypass sandbox restrictions and email blocks. Deliver files via multi-channel fallback (Telegram, Discord, Google Drive, S3, IPFS).

- Skill: `modbender/resilient-file-delivery` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add modbender/resilient-file-delivery`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/resilient-file-delivery/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/resilient-file-delivery

---


# Resilient File Delivery

**Version:** 1.0.0  
**Author:** Midas Skills  
**License:** MIT

## Description
Bypass sandbox restrictions and email blocks. Deliver files via multi-channel fallback (Telegram, Discord, Google Drive, S3, IPFS).

## Value Proposition
Bypass sandbox restrictions and email blocks. Deliver files via multi-channel fallback (Telegram, Discord, Google Drive, S3, IPFS) with automatic retry logic and delivery verification.

## Category
file-delivery

## Tags
file-transfer, multi-channel, fallback, automation, integration

## Skill Type
integration

## Pricing
- **Free:** $0
- **Pro:** $29.99

## Key Features
- ✅ Multi-channel delivery (Telegram, Discord, Google Drive, S3, IPFS)
- ✅ Automatic fallback on failure
- ✅ Retry logic with exponential backoff
- ✅ File chunking for large payloads
- ✅ Integrity verification (MD5/SHA256)
- ✅ Delivery receipts & tracking
- ✅ Rate limiting aware

## Use Cases
- Deliver large datasets when email fails
- Send files to users across multiple platforms
- Automated backup distribution
- Secure file handoff in restricted environments
- Zero-trust file delivery pipelines

## Installation
```bash
npm install resilient-file-delivery
# or
pip install resilient-file-delivery
```

## Quick Start
```javascript
const FileDelivery = require('resilient-file-delivery');

const delivery = new FileDelivery({
  primaryChannels: ['telegram', 'discord'],
  fallbackChannels: ['google-drive', 's3', 'ipfs'],
  retryAttempts: 3
});

await delivery.send({
  file: '/path/to/file.zip',
  recipient: 'user@example.com',
  metadata: { sender: 'bot', priority: 'high' }
});
```

## Repository
https://github.com/midas-skills/resilient-file-delivery

## Support
📧 support@midas-skills.com  
🔗 Docs: https://docs.midas-skills.com/resilient-file-delivery

