Feat: JSON Output Support (-format=json)#71
Merged
Merged
Conversation
This PR adds structured JSON output for both diff and inspect modes. - New -format enum flag (text|json). - Structured JSON document includes tool version, mode, findings/layouts, and summary. - Populated Package field in Finding and Layout DTOs. - Golden file tests for JSON output in internal/ui. - Integration tests in internal/app. - Documentation updated in README.md and AGENTS.md.
Make -tags a single global "include tags in output" toggle: previously inspect JSON always emitted the per-field `tag`, regardless of -tags (text inspect already gated it). Plumb keepTags into RenderJSON and clear the field when off; STRUCTALIGN_TAGS=true and `tags = true` in .structalignrc work via the existing config layer. Closes #73. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.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.
Implemented structured JSON output for both diff and inspect modes as per the v0.7.0 roadmap.
Features
Technical Details
Follow-up fix (commit 7cd23a4)
-tagsa single global "include tags in output" toggle: inspect JSON now honors the flag instead of always emitting the per-fieldtag.STRUCTALIGN_TAGS=trueandtags = truein.structalignrcwork via the existing config layer.Verified with:
inspect_notags_tagged.json.golden+inspect_tags_tagged.json.golden).Closes #73.