feat(agent): integrate ScoreKit 0.6 arrangement contract - #41
Merged
Conversation
Add Settings → scorekit binary: an absolute-path pin that beats PATH and well-known prefixes (SCOREBENCH_SCOREKIT still overrides), so machines with several scorekit versions can choose one without env-var gymnastics. The startup handshake reports which discovery channel won, the tested range widens to >=0.3.0, <0.5.0, and the pin is re-seeded on every settings save. Docs and acceptance matrix updated. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
- set-version.mjs writes all five version sources (tauri.conf.json, package.json, package-lock.json, Cargo.toml, Cargo.lock); synced the lagging manifests to 0.3.3 - check-tag-version.mjs fails on cross-source version drift before comparing the release tag - esbuild declared as a devDependency for the demo:* scripts - roadmap: personal_instructions parsing scheduled for removal in 0.5.0; shared weather-helper extraction marked a hard prerequisite for the next M9 imagery - verification.md dated entry with gate evidence Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Migrate project configuration, agent tools, observations, fixtures, and UI to scorekit 0.5 track IDs and orchestration profiles. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
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.
Summary
default-run = "scorebench"Why
ScoreKit 0.6 adds machine-readable instrument and structured texture discovery contracts. Scorebench needs to consume those contracts directly, keep invalid or incompatible scene edits from being reported as complete, and incorporate the repository's composing doctrine without duplicating ScoreKit's audio/rendering responsibilities.
The Cargo package also gained a second binary for offline capability evaluation, which made Tauri's unqualified
cargo runambiguous. The explicit default binary fixes that startup regression.Validation
cargo fmt --all -- --checkcargo clippy --all-targets --all-features -- -D warningscargo test --all-features: 151 unit tests plus Tauri boundarynpm run check: 0 errors, 0 warningsnpm test: 149 testsnpm run buildnpm run check:bundle: passedactionlint .github/workflows/*.ymlmdbook build docs-siteRemaining manual coverage
A live LLM quality run and native macOS GUI interaction smoke were not performed in this pass.