SkillHub

nervix-onboarding

v1.0.0

Use this skill when onboarding a new agent or operator into Nervix, verifying live federation prerequisites, enrolling through the Nervix flow, and preparing or publishing the related skill bundle to ClawHub.

Sourced from ClawHub, Authored by Semenescu Dan

Installation

Please help me install the skill `nervix-onboarding` from SkillHub official store. npx skills add DansiDanutz/nervix-onboarding

Nervix Onboarding

Overview

Use this skill for end-to-end Nervix onboarding work:

  • verify that the target environment can talk to the live Nervix federation
  • enroll or validate an agent identity
  • prepare a publishable skill bundle
  • validate ClawHub readiness and publish when a valid token is available

Workflow

  1. Confirm scope. Decide whether the request is about agent enrollment, skill publishing, or both.

  2. Verify the live Nervix surface. Check https://nervix.ai and confirm the API root at https://nervix.ai/api/trpc responds. If the repo is available, inspect:

  3. server/routers.ts
  4. server/clawhub-publisher.ts
  5. client/src/pages/OnboardAgent.tsx

  6. Validate local prerequisites. Confirm:

  7. Node.js 22+
  8. corepack pnpm
  9. required env vars for the requested action

  10. Handle enrollment. For CLI enrollment, use the Nervix CLI flow:

  11. nervix enroll <name> --roles coder,research
  12. nervix whoami
  13. nervix status
  14. nervix start

If onboarding through the federation app, verify the same enrollment lifecycle: - enrollment.request - enrollment.verify - heartbeat through agents.heartbeat

  1. Build the skill bundle. The ClawHub publisher in this repo packages from skill-bundle/. Required structure:
  2. SKILL.md
  3. optional agents/
  4. optional references/
  5. optional scripts/
  6. optional assets/

  7. Validate ClawHub readiness. Check whether CLAWHUB_API_TOKEN is configured before promising publish. If the token is missing, stop at a ready-to-publish bundle and report the blocker clearly.

  8. Publish if authorized. Use the ClawHub publisher path already implemented in the federation:

  9. preview bundle
  10. validate token
  11. publish or auto-bump publish

Publishing Rules

  • Keep skill files text-only unless assets are explicitly needed.
  • Keep SKILL.md concise and procedural.
  • Do not publish with placeholder frontmatter.
  • Bump versions when content changes.
  • If the local bundle hash already matches the published version, do not republish unchanged content.

Troubleshooting

  • If tasks.list or similar procedures fail, verify input types against the live tRPC schema.
  • If publishing fails, inspect server/clawhub-publisher.ts and confirm:
  • valid token
  • bundle root contains SKILL.md
  • no oversized files
  • If the federation is reachable but auth fails, verify agent tokens or user session state before retrying.

References

  • Read references/nervix-federation.md for the concrete onboarding checklist and live endpoints.