@grid-is/agent-tools 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -71,3 +71,15 @@ npm test # smoke test against test/fixtures/sample.xlsx
71
71
  npm run typecheck
72
72
  npm run gen:docs # regenerate the per-tool reference under docs/src/content/docs/tools/
73
73
  ```
74
+
75
+ ## Releasing
76
+
77
+ Releases are managed with [changesets](https://github.com/changesets/changesets).
78
+
79
+ 1. In each PR with a user-facing change, run `npx changeset`, pick the bump type,
80
+ and commit the generated file. Tooling-only PRs use `npx changeset add --empty`.
81
+ 2. The Release workflow opens a "Version Packages" PR that bumps `package.json`,
82
+ writes `CHANGELOG.md`, and deletes the consumed changesets.
83
+ 3. Merging that PR publishes to npm, tags the release, and creates a GitHub Release.
84
+
85
+ See [`.changeset/README.md`](.changeset/README.md) for the changeset file format.