Publish files and folders to the web instantly. Static hosting for HTML sites, images, PDFs, and any file type. Sites can connect to external APIs (LLMs, dat...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install here-now或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install here-now⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/here-now/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: here-now description: > Publish files and folders to the web instantly. Static hosting for HTML sites, images, PDFs, and any file type. Use when asked to "publish this", "host this", "deploy this", "share this on the web", "make a website", "put this online", "upload to the web", "create a webpage", "share a link", "serve this site", or "generate a URL". Outputs a live, shareable URL at {slug}.here.now. ---
Skill version: 1.9.1
Create a live URL from any file or folder. Static hosting only.
To install or update (recommended): npx skills add heredotnow/skill --skill here-now -g
For repo-pinned/project-local installs, run the same command without -g.
curl, file, jq$HERENOW_API_KEY~/.herenow/credentials./scripts/publish.sh {file-or-dir}
Outputs the live URL (e.g. https://bright-canvas-a7k2.here.now/).
Under the hood this is a three-step flow: create/update -> upload files -> finalize. A site is not live until finalize succeeds.
Without an API key this creates an anonymous site that expires in 24 hours. With a saved API key, the site is permanent.
File structure: For HTML sites, place index.html at the root of the directory you publish, not inside a subdirectory. The directory's contents become the site root. For example, publish my-site/ where my-site/index.html exists — don't publish a parent folder that contains my-site/.
You can also publish raw files without any HTML. Single files get a rich auto-viewer (images, PDF, video, audio). Multiple files get an auto-generated directory listing with folder navigation and an image gallery.
./scripts/publish.sh {file-or-dir} --slug {slug}
The script auto-loads the claimToken from .herenow/state.json when updating anonymous sites. Pass --claim-token {token} to override.
Authenticated updates require a saved API key.
Pass --client so here.now can track reliability by agent:
./scripts/publish.sh {file-or-dir} --client cursor
This sends X-HereNow-Client: cursor/publish-sh on publish API calls. If omitted, the script sends a fallback value.
The publish script reads the API key from these sources (first match wins):
--api-key {key} flag (CI/scripting only — avoid in interactive use)$HERENOW_API_KEY environment variable~/.herenow/credentials file (recommended for agents)To store a key, write it to the credentials file:
mkdir -p ~/.herenow && echo "{API_KEY}" > ~/.herenow/credentials && chmod 600 ~/.herenow/credentials
IMPORTANT: After receiving an API key, save it immediately — run the command above yourself. Do not ask the user to run it manually. Avoid passing the key via CLI flags (e.g. --api-key) in interactive sessions; the credentials file is the preferred storage method.
Never commit credentials or local state files (~/.herenow/credentials, .herenow/state.json) to source control.
After every site create/update, the script writes to .herenow/state.json in the working directory:
{
"publishes": {
"bright-canvas-a7k2": {
"siteUrl": "https://bright-canvas-a7k2.here.now/",
"claimToken": "abc123",
"claimUrl": "https://here.now/claim?slug=bright-canvas-a7k2&token=abc123",
"expiresAt": "2026-02-18T01:00:00.000Z"
}
}
}
Before creating or updating sites, you may check this file to find prior slugs. Treat .herenow/state.json as internal cache only. Never present this local file path as a URL, and never use it as source of truth for auth mode, expiry, or claim URL.
siteUrl from the current script run.publish_result.* lines from script stderr to determine auth mode.publish_result.auth_mode=authenticated: tell the user the site is permanent and saved to their account. No claim URL is needed.publish_result.auth_mode=anonymous: tell the user the site expires in 24 hours. Share the claim URL (if publish_result.claim_url is non-empty and starts with https://) so they can keep it permanently. Warn that claim tokens are only returned once and cannot be recovered..herenow/state.json for claim URLs or auth status.| | Anonymous | Authenticated | | -------------- | ------------------ | ---------------------------- | | Max file size | 250 MB | 5 GB | | Expiry | 24 hours | Permanent (or custom TTL) | | Rate limit | 5 / hour / IP | 60 / hour free, 200 / hour hobby | | Account needed | No | Yes (get key at here.now) |
To upgrade from anonymous (24h) to permanent sites:
curl -sS https://here.now/api/auth/agent/request-code \
-H "content-type: application/json" \
-d '{"email": "[email protected]"}'
curl -sS https://here.now/api/auth/agent/verify-code \
-H "content-type: application/json" \
-d '{"email":"[email protected]","code":"ABCD-2345"}'
apiKey yourself (do not ask the user to do this):mkdir -p ~/.herenow && echo "{API_KEY}" > ~/.herenow/credentials && chmod 600 ~/.herenow/credentials
| Flag | Description | | ---------------------- | -------------------------------------------- | | --slug {slug} | Update an existing site instead of creating | | --claim-token {token}| Override claim token for anonymous updates | | --title {text} | Viewer title (non-HTML sites) | | --description {text} | Viewer description | | --ttl {seconds} | Set expiry (authenticated only) | | --client {name} | Agent name for attribution (e.g. cursor) | | --base-url {url} | API base URL (default: https://here.now) | | --allow-nonherenow-base-url | Allow sending auth to non-default --base-url | | --api-key {key} | API key override (prefer credentials file) |
curl -sS -X POST https://here.now/api/v1/publish/{slug}/duplicate \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-d '{}'
Creates a full copy of the site under a new slug. All files are copied server-side — no upload needed. The new site is immediately live. Requires authentication and ownership of the source site.
Optionally override viewer metadata (shallow-merged with the source):
curl -sS -X POST https://here.now/api/v1/publish/{slug}/duplicate \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-d '{"viewer": {"title": "My Copy"}}'
For delete, metadata patch (including password protection and payment gating), duplicate, claim, list, and other operations, see references/REFERENCE.md.
Sites can require stablecoin payment on the Tempo network before granting access. Payments go directly from the visitor's wallet to the publisher's wallet.
To receive payments you need a Tempo wallet address. Get one at wallet.tempo.xyz or by running npx mppx account create.
CLI commands:
# Set your Tempo wallet address (once)
herenow wallet set 0xYOUR_ADDRESS --api-key $HERENOW_API_KEY
# Require payment on a site (or change an existing price)
herenow price set <slug> 0.50 --api-key $HERENOW_API_KEY
...安装 here.now 后,可以对 AI 说这些话来触发它
Help me get started with here.now
Explains what here.now does, walks through the setup, and runs a quick demo based on your current project
Use here.now to publish files and folders to the web instantly
Invokes here.now with the right parameters and returns the result directly in the conversation
What can I do with here.now in my design & creative workflow?
Lists the top use cases for here.now, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/here-now/ 目录(个人级,所有项目可用),或 .claude/skills/here-now/(项目级)。重启 AI 客户端后,用 /here-now 主动调用,或让 AI 根据上下文自动发现并使用。
here.now 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
here.now 可免费安装使用。请查阅仓库了解许可证信息。
Publish files and folders to the web instantly. Static hosting for HTML sites, images, PDFs, and any file type. Sites can connect to external APIs (LLMs, dat...
here.now 属于「Design & Creative」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my design & creative tasks using here.now
Identifies repetitive steps in your workflow and sets up here.now to handle them automatically