Add lite mode for faster persona-based exploration#15
Open
kevinngo1304 wants to merge 8 commits into
Open
Conversation
Introduces --lite flag that skips test generation, judge, and reports. Builds a compact persona plan directly from the goal or analysis and runs a lighter browser-agent prompt returning structured flaws, improvements, fixes, and other_feedback. Also ignores .claude/ directory.
Agent Task Evaluation Results: 2/2 (100%)View detailed results
Check the evaluate-tasks job for detailed task execution logs. |
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
Adds a faster, simpler Murphy run mode (
--liteCLI flag /lite: truein the REST API) for quick product feedback.flaws,improvements,fixes, andother_feedback.LiteResult(grade1-10 plus the feedback fields above) with a dedicated terminal summary.LITE_MODE.mddocs and README notes.write_filetool in Murphy runs.Changes
murphy/api/cli.py,murphy/api/request_models.py,murphy/api/rest.py,murphy/api/templates.py: thread--lite/litethrough the entrypoints.murphy/core/generation.py:make_lite_planfor building persona plans directly.murphy/core/execution.py: lighter lite execution path andLiteResulthandling.murphy/core/summary.py,murphy/io/report_markdown.py,murphy/models.py,murphy/prompts.py: lite summaries, models, and prompts.LITE_MODE.md,README.md: documentation.Test plan
uv run murphy --url https://example.com --goal "test the checkout flow" --litePOST /generate-plan|/evaluate|/executewithlite: truetests/murphy/