feat(lathe): add __lathe verify for generated CLI contract validation#86
Merged
Conversation
Add a hidden __lathe verify --json command that checks root help, catalog schema, commands show parity, required flags, and auth status behavior without network calls. Support silent exit codes for verify failures. ## Considered and deferred - pkg/lathe/verify.go:54 [BOT-NIT]: --json flag is documented for agents but verify always emits JSON; flag exists for contract discoverability only. - pkg/lathe/verify.go:171 [BOT-TASTE]: isJSONBody treats empty media type as JSON, matching OpenAPI default body semantics. Signed-off-by: samzong <samzong.lu@gmail.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.
What's changed?
__lathe verify --jsoncommand that validates generated CLI contract locally without network callssilentExitErrorin runtime so verify can emit JSON to stdout and exit non-zero without duplicating error output on stderrWhy
Verification
go test ./pkg/lathe/... ./pkg/runtime/... -count=1 go vet ./pkg/lathe/... ./pkg/runtime/...Considered and deferred