Add agent debugging quickcheck docs#4285
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR improves first-agent debugging discoverability by documenting a provider-free “quickcheck” path and by extending the 0→hero harness docs tests to ensure the guide and harness README stay aligned with the verified micro inspect / micro agent history commands.
Changes:
- Add a provider-free debugging quickcheck section to the agent debugging guide, including the exact
go testcommand. - Expose the same quickcheck command in the 0→hero harness README for local use.
- Extend the harness docs test to assert the quickcheck markers/commands are present in the debugging guide and harness README.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| internal/website/docs/guides/debugging-agents.md | Documents the provider-free quickcheck and the specific inspect/history commands the smoke test runs. |
| internal/harness/zero-to-hero-ci/README.md | Adds “wayfinding” to run the quickcheck locally via the exact go test invocation. |
| internal/harness/zero-to-hero-ci/docs_test.go | Adds assertions that the debugging guide and harness README include the quickcheck markers/commands. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+126
to
+129
| That test seeds a local `assistant` run history and memory transcript, then runs | ||
| `micro inspect agent assistant --limit 1`, `micro inspect agent --status done | ||
| --json assistant`, and `micro agent history assistant` with provider credentials | ||
| cleared. |
Comment on lines
+624
to
+630
| for _, want := range []string{ | ||
| "Provider-free quickcheck", | ||
| "go test ./internal/harness/zero-to-hero-ci -run TestNoSecretFirstAgentDebuggingSmoke -count=1", | ||
| "micro inspect agent assistant --limit 1", | ||
| "micro inspect agent --status done", | ||
| "micro agent history assistant", | ||
| } { |
This was referenced Jul 7, 2026
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:
Testing: