@okfilecom/okfile
v1.3.0
Published
Agent-first file upload and publish service built on Cloudflare Pages Functions, R2, and D1.
Downloads
278
Maintainers
Readme
OkFile
Agent-first file upload and publish service built on Cloudflare Pages Functions, R2, and D1.
- Website:
https://www.okfile.com - Repository:
https://github.com/okfilecom/okfile - License:
Apache-2.0
Python CLI
The published Python package name is okfile.
Install the latest release from PyPI:
py -3 -m pip install okfile
okfile --versionInstall a pinned version when you need reproducible environments:
py -3 -m pip install okfile==1.3.0Upgrade to the latest release:
py -3 -m pip install --upgrade okfileFallback wheel install:
py -3 -m pip install "https://www.okfile.com/downloads/okfile-1.3.0-py3-none-any.whl"- PyPI:
https://pypi.org/project/okfile/ - CLI skill doc:
./SKILL.md
Common CLI examples:
okfile upload photo.jpg
okfile upload video.mp4 --multipart-concurrency 3
okfile upload archive.zip --multipart-concurrency 6 --max-downloads 10
okfile upload photo.jpg --expires-at 2026-12-31T23:59:59Z
okfile publish ./my-site/
okfile publish ./my-site/ --expires-at 2026-12-31T23:59:59Z
okfile status a3k7m92x
okfile config --key okf_xxxxxHelp examples:
okfile upload --help
okfile publish --help
okfile status --helpNotes:
okfile uploaddefaults to--multipart-concurrency 3for multipart uploads- larger values can improve throughput for bigger files, but small files may not benefit
What It Does
OkFile is designed for Agents, scripts, and lightweight manual upload use cases.
It supports:
- anonymous uploads
- authenticated uploads with user API keys
- direct file URLs for download or embedding
- preview/playback URLs for image, video, and PDF
- anonymous single-file uploads up to
500MB - API Key uploads up to
1TBper file - temporary retention for anonymous uploads, with current default expiry at
24 hours - multipart upload for larger authenticated files
- phase-1 site directory upload with nested subdirectories and per-site subdomain publish URLs
- automatic shared top-level directory stripping for folder-based site uploads
- directory listing fallback when a published site does not contain root
index.html - retrying only missing parts after incomplete multipart uploads
- email magic-link login and account management
- localized home, upload, and account pages
Main User Flows
1. Anonymous Publish
POST /api/upload/preparePUT uploadUrlor eachparts[].uploadUrlPOST /api/upload/complete- return
urland optionallyplayUrl - current single-file limit is
500MB, and uploaded files expire after24 hours
2. API Key Publish
- request a magic link and log in
- create an API key in
/account - call
POST /api/upload/preparewithX-API-Keyheader - upload file data to signed URLs
- call
POST /api/upload/complete - current single-file limit is
1TBwhen a valid API key is used
3. Manual Upload
Users can also use:
/zh/upload//en/upload/
This path is kept as a fallback entry, while API integration remains the recommended flow.
4. Site Directory Publish
- select a whole folder in
/zh/upload/or/en/upload/ - the uploader preserves nested relative paths
- if every file sits under one shared top-level folder, that folder is stripped and treated as the site root
- if the site contains root
index.html,/renders that page - if root
index.htmldoes not exist,/renders a directory listing with file name, size, and upload time - image and video entries open inline, while other files use download links
Architecture
Runtime
- Cloudflare Pages Functions for routing and API handling
- Cloudflare Worker route for
*.ok26.org/*site subdomains - Cloudflare R2 for file storage
- Cloudflare D1 for auth and API key metadata
- Resend for email magic links
Frontend
- static
index.htmlfor homepage - static
upload.htmlfor manual upload - server-side localization and SEO injection in
worker-app.js
Backend Responsibilities
- issue presigned R2 upload URLs
- complete multipart uploads
- activate public file routes
- resolve published site subdomains from request
Host - manage sessions, magic links, and API keys
- enforce anonymous and per-key quota limits
Core Routes
Pages
/zh/and/en/: localized home pages/zh/upload/and/en/upload/: manual upload pages/account: redirects to localized account page/zh/account/and/en/account/: localized account pages/admin: admin console
Upload APIs
POST /api/upload/preparePOST /api/upload/completeGET /api/upload/status/{id}- authenticated automation should send
X-API-Key: okf_...
Authenticated prepare example:
curl -X POST "https://www.okfile.com/api/upload/prepare" \
-H "Content-Type: application/json" \
-H "X-API-Key: okf_..." \
--data '{"filename":"photo.jpg","size":12345,"contentType":"image/jpeg"}'Auth APIs
POST /api/auth/request-linkGET /auth/verify?token=...GET /api/account/mePOST /api/account/api-keys
File URLs
/i/{id}: direct file URL/i/{id}?play=1: preview/playback page/d/{id}: controlled download route
Site URLs
https://{subdomain}.ok26.org/: site root or directory listinghttps://{subdomain}.ok26.org/path/to/file: published site asset or documenthttps://{subdomain}.ok26.org/path/to/file?download=1: force download for a site file
Repository Layout
.
|- worker-app.js # main Pages Function entry
|- index.html # homepage
|- upload.html # manual upload page
|- schema.sql # D1 schema
|- wrangler.toml # Cloudflare config
|- SKILL.md # root skill document
|- .trae/skills/okfile/SKILL.md # Trae skill definition
|- okfile-upload-pitfalls.md # upload pitfalls and debugging notesLocal Development
Install dependencies:
npm installRun local development:
npx wrangler pages dev .Deploy to Cloudflare Pages:
npx wrangler pages deploy . --project-name okfile --branch mainConfiguration
Store secrets in Cloudflare, not in the repository.
Secrets
R2_ACCESS_KEY_IDR2_SECRET_ACCESS_KEYRESEND_API_KEY
Plain-Text Vars
R2_ACCOUNT_IDRESEND_FROM_EMAILADMIN_EMAILS
Database
The D1 schema is defined in schema.sql and includes:
usersmagic_linkssessionsapi_keysapi_key_usage_windows
Upload Notes
See these repo docs for integration details:
SKILL.mdSITE_UPLOAD_DESIGN.md.trae/skills/okfile/SKILL.mdokfile-upload-pitfalls.md
The pitfalls doc includes practical notes such as:
- Cloudflare requiring a normal
User-Agentfor some requests - explicit
Content-Lengthon R2 PUT - multipart retry strategy
- large-file client recommendations on Windows
For site publishing:
- use root
index.htmlwhen you want the subdomain root to render a page - if you upload a single wrapper folder such as
my-site/..., OkFile stripsmy-site/automatically - if no root
index.htmlexists, users land on a browsable directory listing instead of downloading an arbitrary file
Articles
Published and outward-facing articles are archived in docs/:
- docs/README.md
- docs/devto-agent-delivery-publish-file-or-site-test-guide.md
- docs/aliyun-workbuddy-agent-file-site-publish-test-guide.md
Contributing
Please read CONTRIBUTING.md before opening pull requests.
Security
Please read SECURITY.md for reporting instructions and secret-handling rules.
Changelog
See CHANGELOG.md for release notes tracked in-repo.
License
Apache-2.0
