Skip to content

here.now

MetadataValue
Categoryhosting
Capabilitieshttp
Websitehttps://here.now
  • website — from op_create_website, op_update_website
  • website[] — from list_websites
  • api

Publish static files to the Cloudflare edge instantly — no build step, no deploy config, no account required.

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):

  1. Create — declare files and get presigned upload URLs
  2. Upload — PUT content to Cloudflare directly
  3. Finalize — make it live
AnonymousAuthenticated
Account neededNoYes (sign in at here.now)
Expiry24 hoursPermanent (or custom TTL)
Max file size250 MB5 GB
Rate limit5/hour60/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.

Terminal window
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..."
}
}
Terminal window
curl http://localhost:3456/mem/websites?refresh=true&skill=here-now
Terminal window
curl -X POST http://localhost:3456/use/here-now/website.claim \
-H "Content-Type: application/json" \
-d '{"slug": "bright-canvas-a7k2", "claim_token": "abc123..."}'
Terminal window
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>"}'

Change filename and content_type:

{ "content": "...", "filename": "report.pdf", "content_type": "application/pdf" }
{ "content": "...", "filename": "data.json", "content_type": "application/json" }
  1. Sign in at here.now
  2. Copy your API key from the dashboard
  3. Add it to AgentOS credentials for the here-now skill