Cole Medin
AI educator and developer. Runs the Dynamis community. Focuses on practical Claude Code skill development, RAG architecture, and agentic engineering. Previously worked extensively on Archon (AI coding assistant with RAG).
Channels
- YouTube: Cole Medin — Claude Code skills, RAG, agentic engineering
- Community: Dynamis community (referenced in videos)
- GitHub: Excalidraw diagram skill repo (linked from YouTube)
Content in This Wiki
- Build Beautiful Diagrams with Claude Code — Excalidraw diagram skill with visual validation loop: generate → render PNG → agent reviews screenshot → iterate. “Argue visually” design philosophy.
- Why the Best AI Coding Tools Abandoned RAG — RAG is dead for code (structured data → agentic search) but essential for unstructured data. Bridge approach: give agents both tools, let them choose per-query.
- This One Command Makes Coding Agents Find All Their Mistakes — Self-healing AI coding workflow: 6-step E2E testing with parallel sub-agents, browser automation, DB validation, screenshot review, and PIV loop (Plan→Implement→Validate).
Key Ideas
- “Argue visually”: Diagrams should convey concepts through structure and labels alone — even with all explanatory text stripped
- Visual validation loops are essential for any visual AI output: the agent must check its own work by rendering and reviewing
- RAG is dead for code because of exact identifiers + file structure + terminal tools — but very much alive for unstructured knowledge bases
- The “RAG is dead” narrative is a mind virus that causes overengineering by avoiding semantic search where it’s still essential
- Bridge approach: smart agents should have both semantic search and agentic search tools and choose per-query
- PIV loop (Plan→Implement→Validate): Structure AI coding around a validation-first mindset; E2E testing as the V
- Self-healing coding workflow: agent fixes blocking issues during testing, reports moderate/minor for human decision — not vibe coding, but delegated validation
See Also
- Claude Code
- RAG vs Wiki
- AutoResearch and Evals — related skill improvement methodology
- Source: Excalidraw Diagrams
- Source: RAG for Code
- Source: E2E Testing