Conversation
Prove gameplay changes by recording a Play session as a PolySpatial .qrec, driving the game with simulated input, and answering from the recorded per-frame scene state. Resolves annotation references (<recording>#<id>) left on recordings. The recording-analyst sub-agent measures strictly from the recording; the Codex equivalent ships as a toml under references/.
The polyspatial_record_* and polyspatial_playback_* commands are not shipping; the skill calls RecordingPlaybackScene through unity command eval and leaves Play mode with editor_stop.
…ands com.unity.polyspatial.annotation keeps only polyspatial_annotation_list and polyspatial_annotation_show. Listing, header, scene state, changes and timelines are SceneStateQuery chains run with eval_file against the public scene-state API (polyspatial #4964), following the Muse play-session-recording skill templates (polyspatial #4963).
…off and scene notes
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.
What
skills/polyspatial-playtest: record a Play session as a PolySpatial.qrec, drive the game with simulated input, then answer from the recorded per-frame scene state instead of a screenshot. Also resolves annotation references (<recording>#<id>) that people leave on recordings from the Editor.agents/recording-analyst.md: a Claude Code sub-agent the skill delegates measuring to. It only runs the annotation commands and read-onlySceneStateQueryscripts througheval_file, and never reads project source, so its answer is a measurement.references/codex-recording-analyst.tomlis the Codex equivalent, since Codex plugins cannot ship agents.Why
A screenshot shows what one frame looked like; the recording shows what every entity was on every frame and can be queried after Play mode ends. The skill makes the agent measure from the recording first and read code second.
Requirements
A running Editor with com.unity.pipeline and com.unity.polyspatial.annotation (
polyspatial_annotation_list/_show, polyspatial #4985, in review). Recording queries go throughunity command eval_fileagainst the public scene-state API and need polyspatial #4964; the query templates follow the Muse play-session-recording skills (polyspatial #4963). When the annotation commands are missing the skill says so and falls back toeditor_playpluscapture_game_view.Verified
Installed as a project-scoped plugin against a Feel sample scene. Given an annotation reference and "how many turns did this cupcake rotate", the agent resolved the reference, pulled the rotation timelines, and reported 0.15 turns in the annotated frame, 6.94 in the surrounding burst and 13.89 over the recording, noting that the spin lives on the parent entity.
Same skill content as Unity-Technologies/skills#72.