kyntra
v1.1.3
Published
AI-assisted codebase graph visualizer and commit workflow CLI
Maintainers
Readme
Kyntra CLI
Kyntra helps you understand codebases faster by generating an interactive dependency graph using AI your repository.
Install
npm i -g kyntra
# or
pnpm add -g kyntra
# or
yarn global add kyntraRequirements
- Node.js 20+
- A Gemini API key
- A Git repository to analyze
Quick Start
kyntra api-key:set <your-gemini-api-key>
cd /path/to/your/repo
kyntra runThis starts a local server and opens the graph UI at http://localhost:6767.
Commands
kyntra run
Launch the local graph server and frontend.
kyntra commit
Generate an AI commit message for staged changes and commit interactively.
kyntra cache:list
List persisted graph cache entries.
kyntra cache:clear
Clear all persisted graph cache entries.
kyntra cache:delete <key>
Delete a single persisted cache entry by key.
kyntra api-key:set <key>
Store your Gemini API key locally.
kyntra api-key:show
Show stored API key in masked form.
kyntra api-key:clear
Delete stored API key.
How it Works
- Kyntra collects repository context.
- Gemini analyzes file summaries and dependencies.
- Kyntra renders the result as an interactive graph.
- The graph is cached for faster subsequent loads.
