Nexus-agents hotfix
install
source · Clone the upstream repo
git clone https://github.com/williamzujkowski/nexus-agents
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/williamzujkowski/nexus-agents "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/hotfix" ~/.claude/skills/williamzujkowski-nexus-agents-hotfix && rm -rf "$T"
manifest:
skills/hotfix/SKILL.mdsource content
Hotfix Skill
<!-- CANONICAL SOURCE: docs/development/CONTRIBUTION_GUIDE.md -->Hotfix Criteria (ALL must be true)
- Issue is in production (deployed, not development branch)
- Issue prevents core functionality (not feature degradation)
- Fix cannot wait for next release cycle
- Issue affects active users or critical systems
If criteria not met: Use the
bug-fix skill instead.
Workflow
-
Create branch from latest release tag:
git tag --sort=-v:refname | head -5 # Find latest tag git checkout -b hotfix/<issue>-description <latest-tag> -
Implement fix with minimal changes — no refactoring, no extras
-
Fast-track review: Security label + P1 = single-reviewer approval sufficient
-
Quality gates:
pnpm lint && pnpm typecheck && pnpm test -
Merge to main AND cherry-pick to release branch
-
Immediate release with patch version bump:
# Add changeset for patch bump pnpm changeset # select patch git add . && git commit -m "chore: changeset for hotfix" git push origin main --tags # CI handles npm publish via OIDC trusted publishing # Or trigger manually: gh workflow run publish.yml
Rollback (if needed)
npm unpublish nexus-agents@<version> # Within 72 hours only git tag -d v<version> && git push --delete origin v<version>