@sunerpy/opencode-kiro-auth 0.1.0 → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -225,6 +225,20 @@ make build # tsc + fix-esm-imports -> dist/
225
225
  Agent contributors: see [AGENTS.md](AGENTS.md) for the codebase architecture
226
226
  map, invariants that must not break, and the CodeGraph-assisted workflow.
227
227
 
228
+ ### Releasing
229
+
230
+ Releases are automated with
231
+ [release-please](https://github.com/googleapis/release-please):
232
+
233
+ - Use [Conventional Commits](https://www.conventionalcommits.org/) for commit
234
+ messages and pull request titles (`feat:`, `fix:`, `chore:`, …) — these drive
235
+ the next version bump automatically.
236
+ - release-please opens and maintains a release pull request on `main`.
237
+ **Merging that PR** cuts the git tag + GitHub Release and triggers the
238
+ workflow that runs typecheck/test/build and then publishes to npm.
239
+ - Contributors never hand-edit the version in `package.json` or the files under
240
+ [`changelog/`](changelog/) — release-please maintains both.
241
+
228
242
  ## Storage
229
243
 
230
244
  **Linux/macOS:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunerpy/opencode-kiro-auth",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "OpenCode plugin for AWS Kiro (CodeWhisperer) providing access to Claude models",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",