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

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
  • The PLANNING.md + TASK.md + workspace-global-rules pattern lets user prompts stay short because all the discipline is encoded outside the prompt itself — see ai-coding-workflow
  • Never trust the LLM with env vars, DB security, or API keys — these belong to the human, period
  • Archon has pivoted twice: from AI agent builder → AI OS → workflow engine for AI coding. The current version defines development processes as YAML DAGs with deterministic + AI nodes, git worktree isolation per run, and approval gates. Framing: “Like what Dockerfiles did for infrastructure and GitHub Actions did for CI/CD — Archon does for AI coding workflows.” See archon-os.

See Also