Skip to content

docs(SUP-1648): add v0.1 release process - #36

Merged
levineam merged 2 commits into
mainfrom
SUP-1648-jarvos-release-process
May 13, 2026
Merged

docs(SUP-1648): add v0.1 release process#36
levineam merged 2 commits into
mainfrom
SUP-1648-jarvos-release-process

Conversation

@levineam

@levineam levineam commented May 13, 2026

Copy link
Copy Markdown
Owner

Summary

  • add the jarvOS v0.1.0 release process, GitHub release template, and release notes draft
  • add a release readiness check with candidate and strict modes
  • seed the changelog with the v0.1.0 public preview section

Verification

  • npm run release:check:candidate
  • git diff --check

Part of SUP-1648.

Summary by CodeRabbit

  • Documentation

    • Added release process documentation and standardized release templates for future releases
    • Published v0.1.0 release notes including features, known limitations, and installation instructions
  • Chores

    • Added release verification tools to validate release readiness

Review Change Stack

@coderabbitai

coderabbitai Bot commented May 13, 2026

Copy link
Copy Markdown

Warning

Rate limit exceeded

@levineam has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 56 minutes and 1 second before requesting another review.

You’ve run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 5472fea2-29ca-40c7-a541-458df5cb240b

📥 Commits

Reviewing files that changed from the base of the PR and between 5ded73f and d047fd3.

📒 Files selected for processing (2)
  • docs/release-process.md
  • scripts/release-readiness-check.js
📝 Walkthrough

Walkthrough

The PR establishes jarvOS's release infrastructure by introducing standardized release documentation (template, process guide, and v0.1.0 notes), updating the changelog, and implementing an automated release-readiness validation script that checks version format, required documentation, git state, and smoke tests.

Changes

Release Infrastructure Setup

Layer / File(s) Summary
Release Documentation and Structure
.github/release-template.md, docs/release-process.md, docs/releases/v0.1.0.md, CHANGELOG.md
Release template, process documentation, v0.1.0 release notes, and changelog establish the structure and content required for jarvOS releases.
Release Readiness Check Script
package.json, scripts/release-readiness-check.js
Node.js CLI script validates release readiness by checking semver format, changelog/release-notes presence and content, git state, tracked artifacts, and smoke tests, integrated via npm scripts.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Suggested labels

jarvis-managed

Poem

🐰 A rabbit's hop to release day—
with templates and checks along the way,
v0.1.0 hops with glee,
readiness scripts ensure all's free!
From docs to gates, the path is clear,
jarvOS bounces into the stratosphere. 🚀

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'docs(SUP-1648): add v0.1 release process' clearly and concisely summarizes the main changes: adding documentation for the v0.1 release process, which aligns perfectly with the changeset's core purpose.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch SUP-1648-jarvos-release-process

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@levineam
levineam marked this pull request as ready for review May 13, 2026 20:00
@levineam

Copy link
Copy Markdown
Owner Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented May 13, 2026

Copy link
Copy Markdown
✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
docs/release-process.md (1)

18-19: ⚡ Quick win

Generalize version-specific checklist commands.

Line 18/19 and Line 35/39 hardcode v0.1.0; this process doc will age quickly after the first release. Use <version> placeholders (and one concrete example) so future releases don’t copy stale commands/paths.

♻️ Proposed doc update
-5. Prepare the GitHub Release notes at `docs/releases/v0.1.0.md` using `.github/release-template.md`.
+5. Prepare the GitHub Release notes at `docs/releases/v<version>.md` using `.github/release-template.md`.

-   git tag v0.1.0
-   git push origin v0.1.0
+   git tag v<version>
+   git push origin v<version>

-9. Publish a GitHub Release using `docs/releases/v0.1.0.md`.
+9. Publish a GitHub Release using `docs/releases/v<version>.md`.

Also applies to: 35-39

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@docs/release-process.md` around lines 18 - 19, Replace all hardcoded "v0.1.0"
occurrences in the release process steps with a generic "<version>" placeholder
and add a single concrete example command showing how to substitute it (e.g.,
example: "<version> = v0.1.0") so maintainers know how to use it; update the two
places that mention the release notes path and commands (the reference to
docs/releases/v0.1.0.md and any commands that use that path) to use
docs/releases/<version>.md and similarly parameterize any CLI commands or paths
in the later block (the second block around lines 35-39) so future releases
don't require editing the doc text.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@scripts/release-readiness-check.js`:
- Around line 97-105: The script calls readText('CHANGELOG.md') unguarded which
will throw if the file is missing; wrap the read and parsing logic (the readText
call that sets the changelog variable and the subsequent changelog.match into
changelogHeading) in a try/catch or pre-check for file existence and on error
call fail('CHANGELOG.md missing or unreadable', `Could not read CHANGELOG.md:
${error.message}`) (or similar) instead of letting the process crash, then
return/exit so later calls to pass/fail for changelogHeading aren't executed;
ensure you reference readText, changelog, changelogHeading, tag and
opts.allowUnreleased when adding the guard.
- Around line 132-148: The git command results (tagCheck, status, tracked from
run(...)) currently only inspect .status and treat null status as success;
update each block to first check for a non-null result.error (e.g., if
(tagCheck.error) fail('git tag preflight', `git not found:
${tagCheck.error.message}`)) and return/fail early, then proceed to check
tagCheck.status === 0, status.error, tracked.error similarly; ensure messages
include the underlying error.message so missing Git (ENOENT) is reported instead
of incorrectly passing (apply this change to the tagCheck, status, and tracked
handling).

---

Nitpick comments:
In `@docs/release-process.md`:
- Around line 18-19: Replace all hardcoded "v0.1.0" occurrences in the release
process steps with a generic "<version>" placeholder and add a single concrete
example command showing how to substitute it (e.g., example: "<version> =
v0.1.0") so maintainers know how to use it; update the two places that mention
the release notes path and commands (the reference to docs/releases/v0.1.0.md
and any commands that use that path) to use docs/releases/<version>.md and
similarly parameterize any CLI commands or paths in the later block (the second
block around lines 35-39) so future releases don't require editing the doc text.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: d3554f5f-c11a-44d5-baa8-d572203b4adf

📥 Commits

Reviewing files that changed from the base of the PR and between 54c6a4f and 5ded73f.

📒 Files selected for processing (6)
  • .github/release-template.md
  • CHANGELOG.md
  • docs/release-process.md
  • docs/releases/v0.1.0.md
  • package.json
  • scripts/release-readiness-check.js

Comment thread scripts/release-readiness-check.js Outdated
Comment thread scripts/release-readiness-check.js Outdated
@levineam
levineam merged commit 96cef6b into main May 13, 2026
6 checks passed
@levineam
levineam deleted the SUP-1648-jarvos-release-process branch May 13, 2026 20:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant