Official Homebrew tap for GIK (Guided Indexing Kernel) — a local-first knowledge engine for software projects.
GIK tracks the evolution of knowledge in codebases, similar to how Git tracks files. It provides:
- RAG (Retrieval-Augmented Generation) – Semantic search over code and docs
- Knowledge Graph – Entities and relationships
- Memory – Events, decisions, and rationales
- Stack Inventory – Project structure analysis
brew tap platformrocks/gik
brew install gikOr install directly:
brew install platformrocks/gik/gikgik --version# Initialize GIK in your project
gik init
# Stage files for indexing
gik add src/
# Commit to create knowledge revision
gik commit -m "Initial knowledge index"
# Query your codebase
gik ask "How does authentication work?"This tap installs prebuilt binaries from GitHub Releases.
Each release artifact includes:
bin/gik– The GIK CLI binarymodels/– Embedding and reranker modelsconfig.default.yaml– Default configuration
The GIK CLI source code and releases are maintained at:
- Repository: platformrocks/osr.gik
- Documentation: README
- Issues: GitHub Issues
When a new version is released:
- Update
versioninFormula/gik.rb - Update all URLs to point to the new release tag (e.g.,
v0.2.0) - Download each artifact and compute SHA256:
shasum -a 256 gik-macos-aarch64.tar.gz shasum -a 256 gik-macos-x86_64.tar.gz shasum -a 256 gik-linux-x86_64.tar.gz
- Update the
sha256values in the formula - Test locally:
brew install --build-from-source Formula/gik.rb brew test gik brew audit --strict --online gik - Commit and push changes
MIT © 2025 PLATFORM ROCKS LTDA