feat: ship log — persistent record of /ship runs#632
Open
sternryan wants to merge 1 commit intogarrytan:mainfrom
Open
feat: ship log — persistent record of /ship runs#632sternryan wants to merge 1 commit intogarrytan:mainfrom
sternryan wants to merge 1 commit intogarrytan:mainfrom
Conversation
Adds Step 8.8 to the /ship workflow that appends a structured JSON entry to ~/.gstack/ship-log.json after every ship completes. Tracks version, branch, PR URL, review findings, and test results so /retro can report shipping velocity over time. Addresses P2 TODO: "Ship log — persistent record of /ship runs"
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
/shipworkflow template (ship/SKILL.md.tmpl)/shiprun completes, appends a structured JSON entry to~/.gstack/ship-log.jsonwith version, date, branch, base branch, PR URL, review findings count, and test pass/fail status/retroto track shipping velocity, review finding rates, and test health over timeEntry format
{ "version": "0.x.y.z", "date": "2026-03-29T...", "branch": "feat/foo", "baseBranch": "main", "prUrl": "https://github.com/...", "reviewFindings": 3, "testsRan": true, "testsPassed": true }Test plan
bun run gen:skill-docsregeneratesship/SKILL.mdand.factory/skills/gstack-ship/SKILL.mdsuccessfullybun test test/skill-validation.test.ts test/gen-skill-docs.test.tspasses (601 pass, 0 fail)/shipon a feature branch and verify~/.gstack/ship-log.jsonis created with correct entry/shipagain and verify the entry is appended (array grows)/retroand verify it can read the ship log data