docs+ui: adaptive loops pillar, homepage redesign, PAE-replan examples, UI nav fixes#296
Merged
Merged
Conversation
- Capitalize "Conductor Agent SDK" consistently in README.md and docs/sdk.md - Replace "Conductor agent/runtime" with "Agentspan" in Python ADK + OpenAI example READMEs - Add three-pillar SVG diagram (assets/three-pillars.svg) to why-agentspan page - Enable pymdownx.emoji in mkdocs.yml so :material-*: icons render - Move three-pillar grid cards to top of why-agentspan page
- Add docs/css/custom.css — Inter + IBM Plex Mono, zinc palette, indigo accent, dark/light mode; mirrors conductor-oss.org typography exactly - Update mkdocs.yml — wire extra_css, disable Material default fonts, add dark/light palette toggle, keep pymdownx.emoji - Rewrite plan-execute.md opening: hero statement, two-phase boundary SVG diagram, core-insight tip callout, LLM-loop vs Plan-Execute comparison table - Add docs/assets/plan-execute-boundary.svg — LLM zone / Conductor zone split diagram with deterministic boundary line
- Error.tsx: window.location.href = "/" → navigate("/") (respects basename)
- ErrorPage.tsx: window.location.replace("/") → replace("/ui/") ×2
- Forbidden.tsx: window.location.replace("/") → replace("/ui/")
- SidebarItem.tsx: hotkey handler window.location.href → navigate() via useNavigate
- ResultsTable.tsx: remove buggy show/hide sub-agent executions toggle
- Rebuild UI static assets into server/static
…xamples Docs: - Add 4th pillar "Adaptive loops" to SVG diagram, homepage, why-agentspan - New concept page: docs/concepts/adaptive-loops.md - Homepage: tabbed install (Python/TS/Java/C#/Rust/Ruby), four production patterns, five go-deeper cards, Java + C# first-agent examples - Typography: Inter × IBM Plex Mono + zinc palette (docs/css/custom.css) - Enable pymdownx.tabbed + pymdownx.emoji in mkdocs.yml Examples: - 118: travel planner adaptive loop — single agent execution, validates budget + evening-most-expensive constraint, converges in 1-3 iterations - 119: research report PAE-replan — DO_WHILE + PAC inside one Conductor workflow; planner writes only failing sections; FORK_JOIN parallel writes
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
Docs
docs/concepts/adaptive-loops.mddocs/css/custom.css), dark/light mode toggleExamples
118_adaptive_loop_showcase.py— single-execution travel planner; agent loops on budget constraints inside one Conductor workflow119_research_report_pae_replan.py— PAE-replan loop as one Conductor workflow (DO_WHILE + PAC); planner writes only failing sections per iteration; FORK_JOIN parallel writes; verified working in 2 iterationsUI bug fixes
Error.tsx,ErrorPage.tsx,Forbidden.tsx—window.location.href/replace("/")→ proper/ui/redirects (was causing 404)SidebarItem.tsx— keyboard shortcut handlerwindow.location.href→navigate()via useNavigateResultsTable.tsx— remove buggy show/hide sub-agent executions toggle