mirror of
https://github.com/saymrwulf/KnowledgeRefinery.git
synced 2026-05-14 20:47:51 +00:00
macOS app for corpus ingestion, semantic search, and concept universe visualization powered by local LLMs via LM Studio. Architecture: - Go daemon (17MB single binary, zero dependencies) - chi router, pure-Go SQLite, tiktoken tokenizer - 6-stage pipeline: scan → extract → chunk → embed → annotate → conceptualize - Brute-force cosine vector search in memory - 89 tests across 8 packages - SwiftUI app (macOS 15+) - Multi-workspace management with auto-start daemons - Live pipeline progress, search, concept browser - WebGPU 3D universe renderer with Canvas2D fallback - Custom crystal app icon
49 lines
461 B
Text
49 lines
461 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
*.egg
|
|
|
|
# Go
|
|
daemon-go/knowledge-refinery-daemon
|
|
|
|
# Swift / SPM
|
|
.build/
|
|
.swiftpm/
|
|
Package.resolved
|
|
|
|
# macOS
|
|
.DS_Store
|
|
*.xcuserdata
|
|
xcuserdata/
|
|
DerivedData/
|
|
*.xcworkspace
|
|
!*.xcodeproj/project.pbxproj
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# Knowledge Refinery data
|
|
data/
|
|
*.lance/
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Secrets
|
|
.env
|
|
*.pem
|
|
*.key
|
|
|
|
# Test artifacts
|
|
test_output/
|
|
|
|
# Dist / build artifacts
|
|
dist/
|