docs: add web dashboard section to README with screenshot#48
Merged
Conversation
- Add a dedicated "Web Dashboard" section to README highlighting the real-time DAG visualization, live streaming, in-browser human gates, and background mode - Add screenshot of the dashboard running the parallel-research workflow - Update Features bullet with a richer description and anchor link Also fix two bugs in example workflows: - Fix parallel-research.yaml: flatten planner output schema from nested object properties to top-level fields (questions, areas, sources) for more reliable LLM output, and update all downstream references - Fix context.iteration route conditions in parallel-research.yaml and research-assistant.yaml: wrap in Jinja2 delimiters so the router uses the Jinja2 engine instead of simpleeval, which can't handle dotted attribute access Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The test mock for parallel-research.yaml still used the old nested plan object structure. Update it to match the flattened top-level fields (questions, areas, sources). Co-Authored-By: Claude Opus 4.6 <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.
Summary
parallel-research.yaml: flattens the planner's nested object output schema (plan.questions/areas/sources) to top-level fields for more reliable LLM output generation, and updates all downstream template referencesparallel-research.yamlandresearch-assistant.yaml: wrapscontext.iterationroute conditions in Jinja2 delimiters ({{ }}) so the router uses the Jinja2 engine instead of simpleeval, which can't handle dotted attribute accessTest plan
make validate-examplespassesconductor run examples/parallel-research.yaml --web --input topic="AI in healthcare"and verify it completes without errors🤖 Generated with Claude Code