Distillery: A Claude Code Plugin for Persistent Team Context

Distillery is a plugin for Claude Code that creates shared, persistent context for development teams. It addresses the problem of teams losing knowledge when debugging sessions end or when decisions made months ago become difficult to find.
Core Commands
/distill— Capture decisions and reasoning mid-session. The whole team can search these later./recall— Find anything anyone on the team has captured using natural language search./pour— Synthesize coherent answers from scattered context across people and sessions. For example, asking "How does our auth system work?" pulls from multiple people's captured decisions and produces a narrative with citations.
Ambient Intelligence Features
The plugin includes ambient intelligence capabilities:
/watch— Point at GitHub repos, RSS feeds, or subreddits. It polls on a schedule and scores every item for relevance against your team's existing context using embedding similarity./radar— Provides a synthesized digest of what matters based on what the system learns your team cares about from captured context.
Team Deployment
Distillery uses a shared server with GitHub OAuth, allowing everyone to connect their Claude Code to the same knowledge base. Context captured by one person becomes searchable by everyone, creating compounding knowledge where each team member's captures improve everyone else's searches and syntheses.
Version 0.2.0 Updates
The latest release includes:
- Hybrid search (BM25 + vector with Reciprocal Rank Fusion)
- Auth audit logging
- UV support
The project is available on GitHub with a blog post explaining the development process.
📖 Read the full source: r/ClaudeAI
👀 See Also

PageAgent: Browser AI Agent That Runs Inside Web Pages with Ollama Support
PageAgent is a JavaScript library that runs AI agents directly inside web pages, reading live DOM as text instead of using screenshots. It works with any OpenAI-compatible endpoint including Ollama, enabling local LLM calls directly from the browser.

Agent Kernel: Three Markdown Files for Stateful AI Agents
Agent Kernel provides three markdown files that enable stateful behavior in AI coding agents without databases or custom frameworks. It works with OpenCode, Claude Code, Codex, Cursor, Windsurf, and similar tools.

MCP Context Bloat: Real Costs and a Practical Fix for Claude Code Users
Running 9 MCP servers in Claude Code leads to 38k token cold starts, ~$700/month in tool definition overhead, and degraded model performance. A gateway pattern with BM25 ranking cuts context to 4k.
MTP + Unified Memory Boosts llama.cpp Inference 30% on RTX 5090
Enabling MTP speculation alongside GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 pushes Qwen3.6-27B Q8_0 from 49 to 64 tok/sec on an RTX 5090 with 128GB system RAM.