here.now
| Metadata | Value |
|---|---|
| Category | hosting |
| Capabilities | http |
| Website | https://here.now |
Returns shapes
Section titled “Returns shapes”Connections
Section titled “Connections”api
Readme
Section titled “Readme”Publish static files to the Cloudflare edge instantly — no build step, no deploy config, no account required.
How It Works
Section titled “How It Works”here.now hosts static files (HTML, CSS, JS, images, PDFs, videos) on Cloudflare’s global network. Each publish gets its own subdomain:
https://bright-canvas-a7k2.here.now/Three-step flow (handled automatically by the skill):
- Create — declare files and get presigned upload URLs
- Upload — PUT content to Cloudflare directly
- Finalize — make it live
Anonymous vs. Authenticated
Section titled “Anonymous vs. Authenticated”| Anonymous | Authenticated | |
|---|---|---|
| Account needed | No | Yes (sign in at here.now) |
| Expiry | 24 hours | Permanent (or custom TTL) |
| Max file size | 250 MB | 5 GB |
| Rate limit | 5/hour | 60/hour |
Anonymous publishes return a claim_token and claim_url exactly once. Store these — they can’t be recovered. The user visits the claim_url and signs in to keep the site permanently.
Publish an HTML page
Section titled “Publish an HTML page”curl -X POST http://localhost:3456/use/here-now/website.create \ -H "Content-Type: application/json" \ -d '{ "content": "<html><body><h1>Hello world</h1></body></html>", "title": "My Page", "filename": "index.html" }'Response:
{ "id": "bright-canvas-a7k2", "url": "https://bright-canvas-a7k2.here.now/", "status": "active", "data": { "anonymous": true, "claim_token": "abc123...", "claim_url": "https://here.now/claim?slug=bright-canvas-a7k2&token=abc123..." }}List your sites (authenticated)
Section titled “List your sites (authenticated)”curl http://localhost:3456/mem/websites?refresh=true&skill=here-nowClaim an anonymous publish
Section titled “Claim an anonymous publish”curl -X POST http://localhost:3456/use/here-now/website.claim \ -H "Content-Type: application/json" \ -d '{"slug": "bright-canvas-a7k2", "claim_token": "abc123..."}'Update a site
Section titled “Update a site”curl -X POST http://localhost:3456/use/here-now/website.update \ -H "Content-Type: application/json" \ -d '{"slug": "bright-canvas-a7k2", "content": "<html>Updated!</html>"}'Publishing Other File Types
Section titled “Publishing Other File Types”Change filename and content_type:
{ "content": "...", "filename": "report.pdf", "content_type": "application/pdf" }{ "content": "...", "filename": "data.json", "content_type": "application/json" }Setup (Authenticated)
Section titled “Setup (Authenticated)”- Sign in at here.now
- Copy your API key from the dashboard
- Add it to AgentOS credentials for the
here-nowskill