{{ message }}
Add human-readable reports to Allure agent output#715
Merged
Conversation
pratushnyi
approved these changes
Jun 15, 2026
Allure Report Summary |
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.

Allure agent runs can now produce a human-readable report alongside the agent-focused artifacts. By default,
allure agentandallure agent inspectuse--report auto, which generates a single-file Awesome report for small result sets and skips it for larger runs to avoid excessive output.Users can also explicitly disable report generation with
--report off, force the single-file Awesome report with--report awesome, or run configured non-agent report plugins with--report config. Report status is recorded in the agent output so users and automation can tell whether a report was generated, skipped, disabled, or failed.The CLI help, capabilities output, generated agent guidance, and docs now explain where to find the report from the most recent run. When a user asks for the report later, agents can recover the latest output directory and use
manifest/human-report.jsonto open the existing report instead of regenerating it unnecessarily.