You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,15 +95,16 @@ Install locally and test manually in your agent harness. Ask the agent to perfor
95
95
96
96
## Version Bumps
97
97
98
-
Update VERSION, run the bump script, and tag:
98
+
Set the target version with the bump script, then tag:
99
99
100
100
```bash
101
-
echo X.Y.Z > VERSION
102
101
scripts/bump-version.sh X.Y.Z
103
102
git commit -am "chore: release vX.Y.Z"
104
103
git tag vX.Y.Z && git push --tags
105
104
```
106
105
106
+
For opencode packages, use `scripts/bump-version.sh --group opencode X.Y.Z` to bump or `scripts/bump-version.sh --group opencode` to re-sync from `OPENCODE_VERSION`.
107
+
107
108
## Prose Style
108
109
109
110
Keep skills and docs terse and imperative. Lead with what the agent should do, not marketing:
-**opencode npm packages** (`@xberg-io/opencode-*`) track `OPENCODE_VERSION` and publish to npm.
185
185
186
-
`bump-version.sh` writes the version file and every manifest in that group;`validate-manifests.sh` checks both groups.
186
+
`bump-version.sh` writes the version file and every manifest in that group when given a version. Without a version, it syncs the group's manifests from its source-of-truth version file.`validate-manifests.sh` checks both groups.
0 commit comments