Builds, tests, versions, and publishes the HyperAgent-SDK package. Use when updating the shared agent interface, bumping versions, publishing to npm, or syncing SDK changes across the 5-repo ecosystem.
Instalação
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Builds, tests, versions, and publishes the HyperAgent-SDK package. Use when updating the shared agent interface, bumping versions, publishing to npm, or syncing SDK changes across the 5-repo ecosystem.
hyperagent-sdk-publish Skill
When to use
Adding new agent interfaces or shared utilities to the SDK.
Bumping the SDK version and publishing to npm.
Syncing SDK updates into HyperCode-V2.4 or Hyper-Vibe-Coding-Course.
Debugging SDK import errors across the ecosystem.
Development flow
Make changes in src/.
Run tests:
npm test
Build:
npm run build
Check exports are correct in dist/.
Version bump + publish
Bump version (patch/minor/major):
npm version patch # or minor / major
Publish to npm:
npm publish --access public
Update SDK version in dependent repos:
HyperCode-V2.4/package.json
Hyper-Vibe-Coding-Course/package.json
npm install @welshdog/hyperagent-sdk@latest
Agent interface rules
Every agent must implement the base HyperAgent interface.
Agents are write-once, deploy-anywhere across the ecosystem.
Never break existing interface contracts — add, don't remove.
Success criteria
All tests pass before publish.
New version visible on npm.
Dependent repos updated and building without errors.