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

  1. Create the prototype or artifact locally in a clean folder. Put index.html at the folder root for websites.
  2. Publish the folder with the installed here.now skill.
  3. Mount the resulting slug under agents.huntsyea.com/<name>/.
  4. 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 prototypefallow-ground-homepage
Internal demokanban-dashboard-v1
Design directionagency-landing-concept
Quick artifactpricing-table-draft

Notes