docs: surface htmlbin-publish skills.sh install across all agent surfaces - #40
Merged
Conversation
…aces Adds the one-command install for the new `htmlbin-publish` agent skill (shipped in utsengar/htmlbin-cli#11) to every place an agent or human might look for setup instructions: - Landing: third "skill" tab in the prompt block alongside agent/cli - /api/onboard: skill block in the JSON descriptor + a new "Install as an agent skill" section in the markdown variant - Worker-served reference skill (src/skill.ts + skills/htmlbin mirror): an "Installable companion" section right after Source of truth - agent-card.json + llms.txt: skill install field + paragraph - README.md: top-of-file install callout - CLAUDE.md: new "Two skills, one contract" section listing every cross-reference so future edits keep both skills aligned The skills.sh install: npx skills add https://github.com/utsengar/htmlbin-cli --skill htmlbin-publish Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
🚀 Cloudflare previewURL: https://19dd8d6f-htmlbin.utkarsh2012.workers.dev Built from commit
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Threads the one-command
htmlbin-publishinstall (shipped inutsengar/htmlbin-cli#11)
through every public surface an agent or human might check first.
Surfaces touched
src/views/landing.ts) — third "skill" tab in the prompt block alongside agent / cli. Prompt-cue updated.src/onboard.ts) — newskill:block in the JSON descriptor and an "Install as an agent skill" section in the markdown variant.buildOnboardJson()andbuildOnboardText()stay in sync per the existing convention.src/skill.ts+skills/htmlbin/SKILL.mdmirror) — "Installable companion" section right after Source of truth: /api/onboard, framing the two skills as complementary (this one = comprehensive reference; htmlbin-publish = focused workflow).agent-card.json+llms.txt(src/discoverability.ts) — addsskill:field with install command, repo, supported runtimes; install paragraph in llms.txt.No runtime behavior changes — pure docs / copy surfaces. Typecheck passes (
node node_modules/typescript/bin/tsc --noEmitclean).Test plan
curl -s <preview>/api/onboard | jq .skillreturns the install command and supported runtimes.curl -s -H "Accept: text/markdown" <preview>/api/onboard | grep -A2 "Install as an agent skill"returns the new section.curl -s <preview>/.well-known/agent-card.json | jq .skillreturns the new block.curl -s <preview>/.well-known/agent-skills/htmlbin/SKILL.md | grep -A2 "Installable companion"returns the new section.curl -s <preview>/llms.txt | grep -A3 "Install as an agent skill"shows the install command.🤖 Generated with Claude Code