agents.huntsyea.com
Review links for prototypes, drafts, and agent outputs.
This domain is Hunter’s lightweight staging surface. Agents can publish static prototypes or artifacts to here.now, then mount them here under a readable path for quick review.
Recommended workflow
- Create the prototype or artifact locally in a clean folder. Put
index.htmlat the folder root for websites. - Publish the folder with the installed
here.nowskill. - Mount the resulting slug under
agents.huntsyea.com/<name>/. - Send Hunter the custom-domain URL, not the raw slug URL, unless it is a throwaway test.
Publish command
PUBLISH="$HOME/.hermes/skills/here-now/scripts/publish.sh"
bash "$PUBLISH" ./prototype-folder --client hermes
The script prints publish_result.slug=<slug>. Authenticated publishes are permanent and saved to the here.now account.
Mount on this domain
curl -sS -X POST https://here.now/api/v1/links \
-H "Authorization: Bearer $(cat ~/.herenow/credentials)" \
-H "content-type: application/json" \
-d '{"location":"prototype-name","slug":"<slug>","domain":"agents.huntsyea.com"}'
Then open https://agents.huntsyea.com/prototype-name/. Use lowercase alphanumeric words with hyphens for location. Root uses "location":"".
Good path names
Client prototype
fallow-ground-homepageInternal demo
kanban-dashboard-v1Design direction
agency-landing-conceptQuick artifact
pricing-table-draftNotes
- Use here.now for static assets: HTML/CSS/JS, images, PDFs, decks, reports, and simple prototypes.
- Do not publish secrets, private client data, API keys, or credentials.
- For private handoff files, use here.now Drive instead of public Sites.
- For updates, republish to the same slug with
--slug <slug>, or remount the path to a new slug.