here-now

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

Updated Aug 22, 2026
One-click install
npx skills add https://github.com/vivekgoquest/hermes-agent-stable --skill here-now-vivekgoquest
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: here-now
Source: https://github.com/vivekgoquest/hermes-agent-stable/tree/main/optional-skills/productivity/here-now
Command: npx skills add https://github.com/vivekgoquest/hermes-agent-stable --skill here-now-vivekgoquest

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Sharing a website or persisting agent-generated files usually requires configuring hosting, DNS, and storage accounts. This Skill lets an agent publish any file or directory to a live {slug}.here.now URL and store private files in cloud Drives with a single script call. ## Core Features & Use Cases - Site Publishing: Publish HTML sites, single files, or directories to a live URL via a three-step create-upload-finalize flow, with support for updates, SPA routing, custom TTLs, and forkable sites. - Private Drive Storage: Create, list, upload, download, import, export, and delete files in private cloud Drives, with scoped share tokens for agent-to-agent handoff. - Anonymous and Authenticated Modes: Publish anonymously with 24-hour expiry and claim URLs, or save an API key for permanent sites tied to an account. - Use Case: After generating a project report site, run publish.sh my-site/ --client hermes and immediately share the returned https://{slug}.here.now/ URL with the user. ## Quick Start Ask the agent to publish a local folder as a website, for example: "Publish my portfolio folder as a site on here.now and give me the live URL."

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

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

How to store private agent files in cloud storage with here.now?▼

Use drive.sh to manage private Drives: `drive.sh put "My Drive" notes/today.md --from ./notes/today.md` uploads a file, and `drive.sh cat` or `ls` reads it back. Drive contents stay private unless shared with a scoped token.

Does here.now publishing require an API key?▼

No, publishing works anonymously without a key, but anonymous sites expire in 24 hours. Saving an API key to ~/.herenow/credentials makes sites permanent and enables authenticated updates and Drive access.

Can I update an existing here.now site after publishing?▼

Yes, pass the --slug flag to publish.sh to update an existing site. For anonymous sites the script auto-loads the claim token from .herenow/state.json; authenticated updates require a saved API key.

What are the limitations of anonymous here.now sites?▼

Anonymous sites expire after 24 hours unless claimed via the claim URL returned at publish time. Claim tokens are returned only once and cannot be recovered, so they must be saved immediately.

What dependencies does the here-now skill need installed?▼

The scripts require the curl, file, and jq binaries and run on macOS or Linux. A bundled jq in the skill's bin directory is used when available, otherwise a system jq must be present.