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.
التثبيت
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
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.