# Release

> Release workflow for agent-vault. Follow these steps when publishing a new version. Use when this capability is needed.

- Skill: `tomevault-io/release-71` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/release-71`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/release-71/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/release-71

---


# Release

## Steps

```bash
# 1. Commit all changes first

# 2. Bump version (patch / minor / major)
npm version <patch|minor|major> -m "chore: bump version to %s"

# 3. Push commit and tag
git push && git push --tags
```

CI will automatically run tests, publish to npm, and create a GitHub Release.

## Rules

- Always pass `-m "chore: bump version to %s"` to `npm version`
- Tag format: `v*` (e.g. `v0.2.0`), this is npm's default
- Do NOT manually edit `version` in `package.json` — always use `npm version`
- Do NOT manually create tags — `npm version` creates them
- Ensure all changes are committed before running `npm version`
- CI requires the GitHub repo to be public (for `--provenance`)
- npm trusted publishing via OIDC — no `NPM_TOKEN` secret needed, configured on npmjs.com

---
> Source: [botiverse/agent-vault](https://github.com/botiverse/agent-vault) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-24 -->

