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: .opencode/command/release.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ To ensure releases are built, tested, and deployed reliably, coordinating multip
17
17
18
18
## Dependencies
19
19
- Cargo toolchain.
20
-
- Agents: CI Agent, Storage Agent, Docs Agent, Git Handler, Hive Mind Orchestrator.
20
+
- Agents: CI Agent, Storage Agent, Docs Agent, Git Handler, GitHub, Hive Mind Orchestrator.
21
21
22
22
## Usage Examples
23
23
- Standard release: `/release`
@@ -38,8 +38,8 @@ To ensure releases are built, tested, and deployed reliably, coordinating multip
38
38
-**Network/Permission Issues**: For pushing tags, ensure auth and connectivity.
39
39
40
40
## Integration Notes
41
-
-**Handoff Protocols**: Sequential handoffs: checks -> version bump -> CI -> storage update -> docs -> git. Confirm each step before proceeding.
42
-
-**Collaboration**: Uses CI Agent for pipelines, Storage for versions, Docs for updates, Git for commits/tags. For complex releases, hand off to Hive Mind Orchestrator.
41
+
-**Handoff Protocols**: Sequential handoffs: checks -> version bump -> CI -> storage update -> docs -> git -> github (PR creation and merge). Confirm each step before proceeding.
42
+
-**Collaboration**: Uses CI Agent for pipelines, Storage for versions, Docs for updates, Git for commits/tags, GitHub for PR creation and merging. For complex releases, hand off to Hive Mind Orchestrator.
43
43
-**Best Practices**: Always run checks first; log all actions. Confirm completion with user.
44
44
-**Edge Cases**: Handle pre-releases differently; for hotfixes, skip some checks if urgent (with caution).
45
45
@@ -65,6 +65,11 @@ If all checks pass:
65
65
3. Update version in Cargo.toml using @storage-agent.
66
66
4.@docs-agent to update changelog/docs.
67
67
5.@git-handler for tagging and pushing.
68
-
6. If needed, @hive-mind-orchestrator for complex releases.
68
+
6.@github agent to create a pull request from the current branch (e.g., develop) to main.
69
+
7.@github agent to merge the pull request.
70
+
8. Switch to develop branch and merge main back into it to sync changes.
71
+
9. If needed, @hive-mind-orchestrator for complex releases.
72
+
73
+
10.@github agent to monitor the GitHub Actions workflows (especially the release workflow) to ensure they complete successfully.
0 commit comments