feat: v1.9.0 adoption & ecosystem (#124, #123, #55)#196
Merged
JoshLuedeman merged 1 commit intomainfrom Mar 31, 2026
Merged
Conversation
…reports, examples, docs cleanup (#124, #123, #55) - installer: add CheckDrift / DriftReport for teamwork update --check - cmd/update: --check flag exits 1 if local files have drifted from upstream - internal/report: Build, RenderMarkdown, RenderHTML, RenderJSON for workflow reports - cmd/report: teamwork report <id> [--format md|json|html] - examples/minimal: feature workflow walkthrough with full handoff chain - examples/bugfix: off-by-one fix walkthrough with state + handoffs - docs/cli.md: document all new commands from PRs #194, #195, and this PR - docs/quick-reference.md: add CLI quick reference table - docs/state-machines.md: add Checkpointing section Co-authored-by: Copilot <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
This PR delivers the Adoption & Ecosystem milestone: drift detection, workflow reports, example projects, and comprehensive docs cleanup.
#124 —
teamwork update --checkdrift detectioninternal/installer: AddedCheckDriftfunction andDriftReporttype that compare the local install (via manifest) against upstream to identify files modified locally, added upstream, or deleted locallycmd/teamwork/cmd/update.go: Added--checkflag that runs drift detection without writing any files; exits1if drift is detected (CI-friendly)ModifiedLocally,AddedUpstream,DeletedLocally#123 —
teamwork report <workflow-id> [--format md|html|json]internal/report: New package withBuild(assembles state, handoffs, gate results, cost),RenderMarkdown,RenderHTML, andRenderJSONcmd/teamwork/cmd/report.go: Newreportcommand supporting--format md(default),json, andhtml#55 — Example projects
examples/minimal/: Feature workflow walkthrough — Go CLI project adding a--versionflag, with full state file, 6-step handoff chain, memory patterns, and READMEexamples/bugfix/: Bugfix workflow walkthrough — off-by-one counter bug, with state, 3-step handoffs (coder → tester → reviewer), and READMEDocs cleanup
Updated all three docs for every new command from PRs #194, #195, and this PR:
docs/cli.md: Addedscan,timeline,resume,report,search,context,handoff init,feedback list/resolve,analytics summary,metrics agents; updatedupdatewith--checkand--create-issueflagsdocs/quick-reference.md: Added a full CLI quick-reference table covering all 30+ commandsdocs/state-machines.md: Added Checkpointing section documenting when checkpoints are created, their schema, how to resume, and the checkpoint lifecycleCloses #124
Closes #123
Closes #55