Loading...
Loading...
Deploy a previously rendered Hyperscribe HTML file to Vercel and return a live shareable URL. Use whenever the user asks to "share", "publish", "deploy", or "send" a Hyperscribe output. Requires the `vercel` CLI (`npm i -g vercel`, then `vercel login`) and the `hyperscribe` skill for the share script.
npx skill4agent add atipico1/hyperscribe hyperscribe-share.html~/.hyperscribe/out/hyperscribescripts/share.shhyperscribehyperscribe-slidesvercelnpm i -g vercel && vercel login.htmlvercel loginHTML=$(ls -1t ~/.hyperscribe/out/*.html 2>/dev/null | head -1)hyperscribehyperscribe-slideshyperscribe-diff# Locate the share script (installed alongside the hyperscribe skill).
SHARE=$(for p in \
./.claude/skills/hyperscribe ~/.claude/skills/hyperscribe \
./.codex/skills/hyperscribe ~/.codex/skills/hyperscribe \
./.cursor/skills/hyperscribe ~/.cursor/skills/hyperscribe \
./.opencode/skills/hyperscribe ~/.opencode/skills/hyperscribe \
~/.claude/plugins/cache/hyperscribe-marketplace/*/plugins/hyperscribe
do [ -f "$p/scripts/share.sh" ] && { echo "$p/scripts/share.sh"; break; }; done)
if [ -z "$SHARE" ]; then
echo "hyperscribe share script not found. Install with: npx skills add Atipico1/hyperscribe" >&2
exit 1
fi
bash "$SHARE" "$HTML"Deployed: https://<id>.vercel.appcleanUrls: true| Exit | Cause | Fix |
|---|---|---|
| 127 | | |
| 2 | path missing/invalid | Check |
| 1 | deploy ran but no URL parsed | Read the full deploy log (path printed in stderr) |
vercel login~/.hyperscribe/out/