HN 표시: 주변 지능을 사용한 AI 코딩 세션에 대한 공유 팀 컨텍스트

hackernews | | 📦 오픈소스
#ai #claude #hn #knowledge #review #team
원문 출처: hackernews · Genesis Park에서 요약 및 분석

요약

Distillery는 회의록, 대화, 북마크 등의 원시 정보를 Claude Code 슬래시 명령어를 통해 검색 가능한 팀 지식 베이스로 변환하는 도구입니다. 이 도구는 DuckDB에 벡터 임베딩 형태로 데이터를 저장하며, 자연어를 통한 의미론적 검색, 지식 분류, 피드 모니터링 등 10가지 핵심 스킬을 제공합니다. 사용자는 즉시 사용할 수 있는 호스팅 데모 서버를 이용하거나, 민감한 데이터 보호를 위해 uvx를 이용해 로컬 환경에 프라이빗 서버를 구축할 수 있습니다.

본문

Team Knowledge, Distilled Capture, classify, connect, and surface team knowledge through conversational commands. Documentation · Skills · Quick Start · Roadmap · Slides Distillery is a team knowledge base accessed through Claude Code skills. It refines raw information from working sessions, meetings, bookmarks, and conversations into concentrated, searchable knowledge — stored as vector embeddings in DuckDB and retrieved through natural language. Runs locally over stdio or as a hosted HTTP service with GitHub OAuth for team access. Distillery captures the highest-value transformation — from noise to signal — and makes it a tool the whole team can use. Full documentation: norrietaylor.github.io/distillery Distillery provides 10 Claude Code slash commands: | Skill | Purpose | Example | |---|---|---| /distill | Capture session knowledge with dedup detection | /distill "We decided to use DuckDB for local storage" | /recall | Semantic search with provenance | /recall distributed caching strategies | /pour | Multi-entry synthesis with citations | /pour how does our auth system work? | /bookmark | Store URLs with auto-generated summaries | /bookmark https://example.com/article #caching | /minutes | Meeting notes with append updates | /minutes --update standup-2026-03-22 | /classify | Classify entries and triage review queue | /classify --inbox | /watch | Manage monitored feed sources | /watch add github:duckdb/duckdb | /radar | Ambient feed digest with source suggestions | /radar --days 7 | /tune | Adjust feed relevance thresholds | /tune relevance 0.4 | /setup | Onboarding wizard for MCP connectivity and config | /setup | claude plugin marketplace add norrietaylor/distillery claude plugin install distillery This installs all 10 skills. The plugin defaults to a hosted demo server — you can start using Distillery immediately. Demo Server: distillery-mcp.fly.dev is for evaluation only. Do not store sensitive or confidential data. For a private knowledge base, run the MCP server locally with uvx — no persistent install needed: # Get a free API key from jina.ai, then: export JINA_API_KEY=jina_... Add to ~/.claude/settings.json (overrides the plugin's demo server): { "mcpServers": { "distillery": { "command": "uvx", "args": ["distillery-mcp"], "env": { "JINA_API_KEY": "${JINA_API_KEY}" } } } } Restart Claude Code and run the onboarding wizard: /setup See the Local Setup Guide for full configuration options, or deploy your own instance for team use. uv pip install -e ".[dev]" # or pip install -e ".[dev]" pytest # run tests mypy --strict src/distillery/ # type check ruff check src/ tests/ # lint See Contributing for the full guide. Apache 2.0 — see LICENSE for details.

Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.

공유

관련 저널 읽기

전체 보기 →