Symbol lookup / search engine CLI
Project description
Pluk
Git-commit–aware symbol lookup & impact analysis engine
What is a "symbol"?
In Pluk, a symbol is any named entity in your codebase that can be referenced, defined, or impacted by changes. This includes functions, classes, methods, variables, and other identifiers that appear in your source code. Pluk tracks symbols across commits and repositories to enable powerful queries like "go to definition", "find all references", and "impact analysis".
Pluk gives developers “go-to-definition”, “find-all-references”, and “blast-radius” impact queries across one or more Git repositories. Heavy lifting (indexing, querying, storage) runs in Docker containers; a lightweight host shim (pluk) boots the stack and delegates commands into a thin CLI container (plukd) that talks to an internal API.
Key Features
- Fuzzy symbol search (
pluk search) for finding symbols in the current commit - Definition lookup (
pluk define) - Impact analysis (
pluk impact) to trace downstream dependents - Commit-aware indexing (
pluk diff) across Git history - Containerized backend: PostgreSQL (graph) + Redis (broker/cache)
- Strict lifecycle:
pluk start(host shim) is required before any containerized commands; use the shim on the host to manage services (start,status,cleanup). - Host controls:
pluk statusto check,pluk cleanupto stop services
Quickstart
- Install
pip install pluk
- Start services (required)
pluk start
This creates/updates ~/.pluk/docker-compose.yml, pulls latest images, and brings up: postgres, redis, api (FastAPI), worker (Celery), and cli (idle exec target). The API stays internal to the Docker network. Note: service lifecycle commands (start, status, cleanup) are implemented in the host shim; run them on your host shell using the pluk command.
- Index and query
pluk init /path/to/repo # queue full index (host shim extracts repo's origin URL and commit and forwards them into the containerized CLI)
pluk search MyClass # fuzzy lookup; symbol matches branch-wide (cached)
pluk define my_function # show definition (file:line@commit)
pluk impact computeFoo # direct dependents; blast radius (cached)
pluk diff symbol abc123 def456 # symbol changes between commits abc123 → def456
Important: the repository you index must be public (or otherwise directly reachable by the worker container). The worker clones repositories inside the container environment using the repository URL; private repositories that require credentials are not supported by the host shim workflow.
Note: CLI commands that poll for job status (like pluk init) now display real-time output, thanks to unbuffered Python output in the CLI container.
- Check / stop (host-side)
pluk status # tells you if services are running
pluk cleanup # stops services (containers stay; fast restart)
If you want a full teardown (remove containers/network), use:
docker compose -f ~/.pluk/docker-compose.yml down -v
Data Flow
How it works
- Host shim (
pluk) writes the Compose file, pulls images, and runsdocker compose up. - CLI container (
plukd) is the exec target; it calls the API athttp://api:8000. - API (FastAPI) serves read endpoints (
/search,/define,/impact,/diff) and enqueues write jobs (/reindex) to Redis. - Worker (Celery) consumes jobs from Redis, clones/pulls repos into a volume (
/var/pluk/repos), parses deltas, and writes to Postgres. - Reads never block on indexing; write progress can be polled via job status endpoints (planned).
Architecture (current)
- Single image, multiple roles: Compose selects per-service
commandapi→uvicorn pluk.api:app --host 0.0.0.0 --port 8000worker→celery -A pluk.worker worker -l infocli→sleep infinity(keeps container up fordocker compose exec)
- Internal networking: API is not exposed to the host; CLI calls it over Docker DNS (
PLUK_API_URL=http://api:8000). - Config:
PLUK_DATABASE_URL,PLUK_REDIS_URLinjected via Compose; worker usesPLUK_REPOS_DIR=/var/pluk/repos. - Images: by default the shim uses
jorstors/pluk:latest,postgres:16-alpine, andredis-alpine
Development
- Project layout (
src/pluk):shim.py— host shim entrypoint (pluk)cli.py— container CLI (plukd)api.py— FastAPI app (internal API)worker.py— Celery app & tasks
- Entry points (
pyproject.toml):
[project.scripts]
pluk = "pluk.shim:main"
plukd = "pluk.cli:main"
Testing
pytest
Docker must be running; services must be started via pluk start for integration tests.
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pluk-0.4.3.tar.gz.
File metadata
- Download URL: pluk-0.4.3.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3ce283ccb2ac80d0dbe24055f23ef54d67f5c501353a35c07397ac1bd4520d0
|
|
| MD5 |
dc87b46620c0ec7d44fd0de609462a03
|
|
| BLAKE2b-256 |
5d5c67e68b39311e143c2122628aca7b31d7ae17b4eefd3538d7bbb4cbb2d304
|
File details
Details for the file pluk-0.4.3-py3-none-any.whl.
File metadata
- Download URL: pluk-0.4.3-py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b4ab68f33254cd16fa408c6485b7ae4a8fe45e75c3ae475bf5903ec44c7d609
|
|
| MD5 |
de69c34ea8b9e9dd16f9032e7df3d825
|
|
| BLAKE2b-256 |
cb541862d6aa1ac0e651fe9710ef2beabdacd7a2c0767f7f5381c096adbee7fc
|