Dev Workspace (dilberry) — Summary
Dev Workspace is a git-branch-scoped context management system for Claude Code that turns each feature branch into an isolated workspace with its own directory tree, conversation history, plans, research, tasks, and CLAUDE.md. The four pillars are: directory system (structured dev/workspace/ subtree), git branch management (each branch gets a fresh workspace, archives persist), slash commands (8 workspace commands for branch creation, discovery, merge preflight), and Ruby hooks (session_start injects tree + context, session_end captures and summarizes conversation transcripts, user_prompt_submit runs word-triggered behaviors). At 39 GitHub stars, it is a developer-centric workspace scaffold combining git isolation, context injection, and history capture into a coherent workflow.
differs_from_seeds: Closest to agent-os (Archetype 4 — markdown scaffold + commands that write the structure) but significantly more sophisticated: Dev Workspace adds git-branch isolation, Ruby-based hook system with the claude_hooks library, automated conversation capture with headless Claude summarization, and an archiving system that persists branch context after merge. Unlike ccmemory (global Neo4j graph), memory is file-based and branch-scoped, deliberately switching context when you switch branches.