A modular toolkit for LLM-powered codebase understanding.
Project description
kit 🛠️ Code Intelligence Toolkit
kit is a production-ready Python toolkit for codebase mapping, symbol extraction, code search, and building LLM-powered developer tools, agents, and workflows.
Use kit to build things like code reviewers, code generators, even IDEs, all enriched with the right code context.
Quick Installation
Install from PyPI
pip install cased-kit
Install from Source
git clone https://github.com/cased/kit.git
cd kit
uv venv .venv
source .venv/bin/activate
uv pip install -e .
Basic Usage
from kit import Repository
# Load a local repository
repo = Repository("/path/to/your/local/codebase")
# Load a remote public GitHub repo
# repo = Repository("https://github.com/owner/repo")
# Explore the repo
print(repo.get_file_tree())
# Output: [{"path": "src/main.py", "is_dir": False, ...}, ...]
print(repo.extract_symbols('src/main.py'))
# Output: [{"name": "main", "type": "function", "file": "src/main.py", ...}, ...]
Key Features & Capabilities
kit helps your apps and agents understand and interact with codebases, with components to build your own AI-powered developer tools.
-
Explore Code Structure:
- High-level view with
repo.get_file_tree()to list all files and directories. - Dive down with
repo.extract_symbols()to identify functions, classes, and other code constructs, either across the entire repository or within a single file.
- High-level view with
-
Pinpoint Information:
- Run regular expression searches across your codebase using
repo.search_text(). - Track specific symbols (like a function or class) with
repo.find_symbol_usages().
- Run regular expression searches across your codebase using
-
Prepare Code for LLMs & Analysis:
- Break down large files into manageable pieces for LLM context windows using
repo.chunk_file_by_lines()orrepo.chunk_file_by_symbols(). - Get the full definition of a function or class off a line number within it using
repo.extract_context_around_line().
- Break down large files into manageable pieces for LLM context windows using
-
Generate Code Summaries:
- Use LLMs to create natural language summaries for files, functions, or classes using the
Summarizer(e.g.,summarizer.summarize_file(),summarizer.summarize_function()). - Build a searchable semantic index of these AI-generated docstrings with
DocstringIndexerand query it withSummarySearcherto find code based on intent and meaning.
- Use LLMs to create natural language summaries for files, functions, or classes using the
-
Analyze Code Dependencies:
- Map import relationships between modules using
repo.get_dependency_analyzer()to understand your codebase structure. - Generate dependency reports and LLM-friendly context with
analyzer.generate_dependency_report()andanalyzer.generate_llm_context().
- Map import relationships between modules using
-
And much more...
kitalso offers capabilities for semantic search on raw code, building custom context for LLMs, and more.
Explore the Full Documentation for detailed usage, advanced features, and practical examples.
License
MIT License
Contributing
Please see our Roadmap for project directions.
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 cased_kit-0.1.4.tar.gz.
File metadata
- Download URL: cased_kit-0.1.4.tar.gz
- Upload date:
- Size: 68.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11da254b9eb89314f19c7cf82667b5023d2332a2ba3ed8b26882509e8a138848
|
|
| MD5 |
873ff27c46e2c532d53c1052069eedac
|
|
| BLAKE2b-256 |
a4eecc4756e1c4aac98eb09b9e197f062e59b97ddf6f2b1cf1938f7290b28d54
|
File details
Details for the file cased_kit-0.1.4-py3-none-any.whl.
File metadata
- Download URL: cased_kit-0.1.4-py3-none-any.whl
- Upload date:
- Size: 51.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3aed3707443b4b86c0994ad1e3975b166d0d641983752a37942e784790ae989
|
|
| MD5 |
de27207c3e34bcb7e61f151e50ca5d60
|
|
| BLAKE2b-256 |
62c8f6dc0080f73923f84474668be8f4594866c60ca3ce5a58f2427fa239bcd8
|