docs(openspec): archive add-vale-binary-packages and land the cli pin - #91
Open
thecodedrift wants to merge 1 commit into
Conversation
This was referenced Aug 7, 2026
thecodedrift
marked this pull request as ready for review
August 7, 2026 01:07
Contributor
There was a problem hiding this comment.
Pull request overview
Archives the add-vale-binary-packages OpenSpec change by moving its artifacts into openspec/changes/archive/2026-08-07-add-vale-binary-packages/ and promoting the change’s spec deltas into openspec/specs/ (including a new vale-binary-packages capability).
Changes:
- Added the new
vale-binary-packagescapability spec describing per-platform Vale binary npm packages and their release/verification constraints. - Promoted new/updated requirements into existing
cliandinfrastructurespecs to reflect Vale platform-package pinning (viaoptionalDependencies) and changesets exclusion for script-versioned packages. - Added archived change artifacts (proposal, design, tasks, and delta specs) under the dated archive directory.
Reviewed changes
Copilot reviewed 3 out of 10 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| openspec/specs/vale-binary-packages/spec.md | New capability spec defining requirements for Vale per-platform binary packages. |
| openspec/specs/infrastructure/spec.md | Adds a requirement about excluding workflow-versioned packages from changesets. |
| openspec/specs/cli/spec.md | Adds a requirement describing the CLI’s Vale platform packages as exact-version optionalDependencies. |
| openspec/changes/archive/2026-08-07-add-vale-binary-packages/tasks.md | Archived task checklist for the change (including remaining unchecked items). |
| openspec/changes/archive/2026-08-07-add-vale-binary-packages/specs/vale-binary-packages/spec.md | Delta spec capturing added requirements for the new capability. |
| openspec/changes/archive/2026-08-07-add-vale-binary-packages/specs/infrastructure/spec.md | Delta spec capturing added infrastructure requirements (changesets ignore). |
| openspec/changes/archive/2026-08-07-add-vale-binary-packages/specs/cli/spec.md | Delta spec capturing added CLI requirements (Vale optionalDependencies pin). |
| openspec/changes/archive/2026-08-07-add-vale-binary-packages/proposal.md | Archived proposal describing scope, impact, and delivery shape. |
| openspec/changes/archive/2026-08-07-add-vale-binary-packages/design.md | Archived design rationale and decisions for packaging/versioning/release approach. |
| openspec/changes/archive/2026-08-07-add-vale-binary-packages/.openspec.yaml | Archive metadata for the change directory. |
Comment on lines
+250
to
+252
| ## Requirements | ||
|
|
||
| ### Requirement: Script-versioned packages are excluded from changesets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stack (root → tip):
Unit 3 of
add-vale-binary-packages, stacked on #86.What is here today
Only the archive:
openspec/changes/add-vale-binary-packages/moves toopenspec/changes/archive/2026-08-07-add-vale-binary-packages/, and its deltas are promoted intoopenspec/specs/(cli,infrastructure, and a newvale-binary-packagescapability).Splitting the archive out of #86 is what makes the stack legible. #86 was the tip while still carrying an unarchived change directory, so
stack: openspec-archivedfailed there. With this branch on top, #86 is no longer the tip and its gate skips, while this PR carries the archive and satisfies it.What is still missing
Tasks 6.1, 6.2, 6.3 and 7.3 are unchecked, and they stay unchecked until the work lands here:
packages/cligains the six@taskless/vale-*packages inoptionalDependencies, pinned at literal exact stamped versions. Notworkspace:*, which would silently re-point at the newest stamp, and notdevDependencies, which consumers never install.That pin cannot be written yet. An exact version can only name something that exists on npm, and none of the six names are published. Publishing them the first time needs a manual bootstrap, because a trusted publisher cannot be registered for a package that does not exist.
Sequence to green
@taskless/vale-*names on npm by hand.phase: publishto exercise OIDC end to end and produce a real stamped version set.optionalDependenciespin on this branch against those stamped versions, check off tasks 6.x and 7.3, and mark this PR ready.Why this is a draft
Archiving the change before the CLI pin exists would record the work as finished while the piece that makes it useful to consumers is still unwritten. The draft state is the guard: it keeps this branch unmergeable until step 6 above is done. A draft still counts for stack-tip detection, so #86's gate flips regardless.
Fixes OSS-22