Add Parallelization, Tree of Thoughts, and Agentic RAG (16-18 of 18)#7
Merged
Conversation
Sectioning/ensemble-voting workflow per Anthropic's "Building Effective Agents" taxonomy: fixed subtasks decided in advance, run concurrently by a single model, then merged or majority-voted — distinct from Orchestrator-worker's dynamically delegated specialist agents. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LLtTG22WSrRfurHKzaMc8h
Tree of Thoughts (Single-agent — agentic): branch-evaluate-backtrack search loop, per Yao et al.'s ToT framework. Initially modeled the branching step as a kind:"branch" cluster, but that combined with loop:true caused the loop-back arc to visually collide with the cluster box (the renderer's loop code assumes a plain node's height, not a cluster's) — reworked to a plain 4-node loop to keep the diagram correct. Agentic RAG (Single-agent — memory): adds iterative query decomposition and a sufficiency check around the retrieve step, distinguishing it from the single-pass RAG pattern already in the deck. Verified schema validity (18/18) and visually confirmed section placement, pill styling, and flow diagrams for both, across the live page and the standalone SVG export. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LLtTG22WSrRfurHKzaMc8h
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
CLAUDE.mdandREADME.mdpattern counts/lists to match.kind:"branch"flow cluster, but combined withloop:truethat made the loop-back arc visually collide with the cluster box (the shared renderer's loop code assumes a plain node's height, not a cluster's — no existing pattern combined the two). Reworked to a plain 4-node loop to keep the diagram correct rather than patching the shared renderer for a one-off case.Test plan
npm run validate— schema OK, 18/18 patternsexport:images,export:pptx,export:pdf,export:svg) — all 18 patterns export cleanly in every formattheme-oceanvariant on the new cards — no hardcoded colors were introduced, all three reuse existingcattoken classesGenerated by Claude Code