here-now

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

Updated Sep 10, 2026
One-click install
npx skills add https://github.com/loteiron/ZeusAgent --skill here-now-loteiron
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: here-now
Source: https://github.com/loteiron/ZeusAgent/tree/main/optional-skills/productivity/here-now
Command: npx skills add https://github.com/loteiron/ZeusAgent --skill here-now-loteiron

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires curl, file, jq, and includes scripts (resource) components.

What problem does it solve? Sharing a website or persisting agent-generated files usually requires configuring hosting, deployment pipelines, or cloud storage accounts. This Skill lets an agent publish files and directories to live {slug}.here.now URLs and store private documents in cloud Drives using simple shell commands. ## Core Features & Use Cases - Site Publishing: Publish a single file or an entire directory to a live URL with a three-step create, upload, and finalize flow, including SPA routing and forkable options. - Anonymous and Authenticated Modes: Publish anonymously with 24-hour expiry and a claim URL, or save an API key for permanent sites tied to an account. - Private Drive Storage: Upload, list, download, import, export, and delete files in private cloud Drives, and share scoped tokens with other agents for handoff. - Use Case: After generating a static HTML report, run the publish script to get a live link to share with a colleague, then archive the source data in your default Drive for later sessions. ## Quick Start Ask the agent to publish the current folder as a website using the here-now skill and share the live URL it returns.

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 website to a live URL from the command line?▼

Run the publish.sh script with a file or directory path, such as bash publish.sh my-site/ --client zeus. The script creates the publish, uploads files, and finalizes the site, then prints the live URL like https://bright-canvas-a7k2.here.now/.

How to update an existing here.now site after publishing?▼

Pass the --slug flag with the site's slug to publish.sh, for example bash publish.sh my-site/ --slug bright-canvas-a7k2. For anonymous sites, the script auto-loads the claim token from .herenow/state.json; authenticated updates require a saved API key.

Do anonymous here.now sites expire?▼

Yes, sites published without an API key expire after 24 hours. The script returns a claim URL you can use to keep the site permanently, but claim tokens are only returned once and cannot be recovered.

Can I store private files without publishing them as a website?▼

Yes, use the drive.sh script to store files in private cloud Drives. Commands like put, cat, ls, import, and export manage files, and Drive contents stay private unless you share a scoped token with a path prefix and TTL.

What dependencies does the here-now skill require?▼

The scripts require the curl, file, and jq binaries and run on macOS or Linux. An API key is optional and can be stored in ~/.herenow/credentials, set via the HERENOW_API_KEY environment variable, or passed with the --api-key flag.

Why does my published HTML site not render correctly?▼

The directory you publish becomes the site root, so index.html must sit at the root of that directory, not inside a subdirectory. Publish the folder containing index.html directly rather than a parent folder.