here.now

Publish static sites to here.now URLs and store private files in cloud Drives.

1|Updated Feb 17, 2026
One-click install
npx skills add https://github.com/brittb-dev/zerogravityclaw --skill here-now-brittb-dev
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: here.now
Source: https://github.com/brittb-dev/zerogravityclaw/tree/main/src/hermes-core/optional-skills/productivity/here-now
Command: npx skills add https://github.com/brittb-dev/zerogravityclaw --skill here-now-brittb-dev

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Agents often need to share generated websites or persist files between sessions, but setting up hosting and storage requires accounts, servers, and manual deployment steps. This Skill publishes files to live URLs and manages private cloud storage directly from the terminal. ## Core Features & Use Cases - Static Site Publishing: Publish a file or directory to a live {slug}.here.now URL via a three-step create-upload-finalize flow, with anonymous 24-hour sites or permanent authenticated sites. - Private Cloud Drives: Store, list, upload, download, and delete files in private Drives, and issue scoped share tokens with path prefixes and TTLs for agent-to-agent handoff. - Use Case: After generating an HTML report, publish it instantly to a shareable URL, then save the source data to a Drive and share a read-only token with another agent for follow-up analysis. ## Quick Start Publish the folder my-site containing index.html to a live here.now URL using the publish script.

Frequently Asked Questions about here.now

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I publish a static site to a live URL from the terminal?▼

Run the publish.sh script with a file or directory containing index.html at its root. The script creates the publish, uploads files, and finalizes the site, then prints the live URL such as https://bright-canvas-a7k2.here.now/.

How to share files between agents using cloud storage?▼

Use drive.sh to upload files to a private Drive, then create a scoped share token with a narrow path prefix and short TTL. The receiving agent uses the token as a Bearer credential against the Drive API.

Does anonymous publishing expire, and how do I make sites permanent?▼

Anonymous sites expire after 24 hours and return a one-time claim URL. To publish permanent sites, request a sign-in code via the auth API, verify it to get an API key, and save it to ~/.herenow/credentials.

What dependencies are required to run the publish and drive scripts?▼

The scripts require curl, file, and jq binaries on macOS or Linux. An API key is optional for publishing but required for Drive operations, stored in the HERENOW_API_KEY variable or the credentials file.

Why does my published site show a directory listing instead of my page?▼

This happens when index.html is nested inside a subdirectory rather than at the root of the published directory. Publish the folder that directly contains index.html so its contents become the site root.