Publish Alpha CLI tarball and public Node test CI - #6
Merged
Conversation
Why: Strangers could clone the repo and run Node tests, but there was no tagged artifact to download and no public CI badge. The README still said there was no GitHub Release. Changed: Added CHANGELOG.md and set the package version to 0.1.0-alpha.1. scripts/package_cli.sh builds a versioned CLI tarball without the macOS app. .github/workflows/ci.yml runs verify:public-surface, test:broker-core, test:client, and test:harness-adoption on ubuntu-latest and does not run test:app. .github/workflows/release.yml attaches the CLI tarball when a matching version tag is pushed. README, getting-started, SECURITY, and specs record the Alpha release surface. Verification: npm run agent:verify -- --profile spec-only --paths CHANGELOG.md,README.md,SECURITY.md,CONTRIBUTING.md,docs/getting-started.md,docs/status.md,docs/test/front-door.test.mjs,.agents/manifests/specs.yaml,.agents/verify/spec-only.yaml,.github/workflows/ci.yml,.github/workflows/release.yml,scripts/package_cli.sh,package.json,package-lock.json,spec/README.md,spec/build-and-test.md,spec/project-structure.md --session-dir task-sessions/20260818-alpha-release-ci node --test docs/test/front-door.test.mjs npm run verify:public-surface npm run test:broker-core npm run test:client npm run test:harness-adoption Affected: CHANGELOG.md scripts/package_cli.sh .github/workflows/ci.yml .github/workflows/release.yml package.json package-lock.json README.md SECURITY.md CONTRIBUTING.md docs/getting-started.md docs/status.md docs/test/front-door.test.mjs .agents/manifests/specs.yaml .agents/verify/spec-only.yaml spec/README.md spec/build-and-test.md spec/project-structure.md Refs: https://github.com/fiveonecode/simulator-broker spec/build-and-test.md Session: task-sessions/20260818-alpha-release-ci
Why: The Alpha CI job on ubuntu-latest failed four broker-core snapshot tests because they called host xcrun simctl. The same run spent 17 minutes in verify:public-surface spawning one git cat-file per tracked file, so the 20-minute job budget could not cover the remaining suites. Changed: The four app-snapshot tests now pass the fixture simctl adapter through runtimeOptions. The default public-surface scan reads index blobs only for dirty or missing worktree files. CI and release jobs use a 30-minute budget. Front-door tests require timeout-minutes of at least 30. Verification: npm run agent:verify -- --profile spec-only --paths broker-core/test/broker-core.test.mjs,client/public-surface.mjs,client/test/public-surface.test.mjs,.github/workflows/ci.yml,.github/workflows/release.yml,docs/test/front-door.test.mjs,spec/build-and-test.md,CHANGELOG.md --session-dir task-sessions/20260818-alpha-ci-ubuntu-fix npm run agent:verify -- --profile implementation --paths broker-core/test/broker-core.test.mjs,client/public-surface.mjs,client/test/public-surface.test.mjs,.github/workflows/ci.yml,.github/workflows/release.yml,docs/test/front-door.test.mjs,spec/build-and-test.md,CHANGELOG.md --session-dir task-sessions/20260818-alpha-ci-ubuntu-fix Affected: broker-core/test/broker-core.test.mjs client/public-surface.mjs client/test/public-surface.test.mjs .github/workflows/ci.yml .github/workflows/release.yml docs/test/front-door.test.mjs spec/build-and-test.md CHANGELOG.md Refs: #6 https://github.com/fiveonecode/simulator-broker/actions/runs/32114159922 spec/build-and-test.md Session: task-sessions/20260818-alpha-ci-ubuntu-fix
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.
Strangers could clone and run Node tests, but there was no tagged artifact to download and no public CI badge. The README still said there was no GitHub Release.
This is the Alpha release + Node CI slice only. It does not add Homebrew, a notarized app, npm, or issue templates.
What landed
CHANGELOG.mdand package version0.1.0-alpha.1.scripts/package_cli.sh/npm run package:clibuildssimulator-broker-0.1.0-alpha.1-cli.tar.gzplus a SHA-256 checksum. No XcodeGen or app build..github/workflows/ci.ymlrunsverify:public-surface,test:broker-core,test:client, andtest:harness-adoptionon GitHub-hosted Ubuntu. It does not runtest:appand does notnpm install(no runtime deps)..github/workflows/release.ymlattaches the CLI tarball when a matching version tag is pushed. Alpha tags are pre-releases.After merge
Push
v0.1.0-alpha.1onmainto publish the GitHub Release. Do not tag from this branch.Verification
npm run agent:verify -- --profile spec-only— passnode --test docs/test/front-door.test.mjs— 10/10 passnpm run verify:public-surface— passnpm run test:broker-core && npm run test:client && npm run test:harness-adoption— pass (exit 0)npm run agent:complete— passHead:
b114df30a814f5d61797d830943511e7ccfa4684Session:
task-sessions/20260818-alpha-release-ci