npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

eckra

v1.4.3

Published

AI-powered Git management CLI with multi-provider support (OpenAI, Anthropic, OpenRouter, Gemini, Ollama, LM Studio)

Downloads

1,013

Readme

Eckra

AI-powered Git assistant that analyzes your code changes and generates meaningful commit messages using OpenAI, Anthropic, Gemini, OpenRouter, Ollama, or LM Studio


Overview

eckra is an interactive Git management tool designed for developers who value both speed and clarity. It integrates with multiple AI providers to analyze your staged changes and suggest context-aware commit messages, ensuring your project history remains professional and descriptive without the manual overhead.

Key Features

  • AI-Powered Suggestions: Automatically generates commit messages based on actual code diffs. Supports LM Studio, OpenAI, Anthropic, Ollama, OpenRouter, and Google Gemini.
  • Select & Edit: Pick an AI suggestion and refine it instantly to match your specific needs.
  • Staged Diff Review: Inspect your changes in a beautiful, syntax-highlighted format directly before committing.
  • Interactive Dashboard: A comprehensive menu system for staging files, managing branches, stashing changes, and syncing with remotes.
  • Built for Speed: Zero-config required for standard Git operations. Fast, responsive, and intuitive.

Installation

Install eckra globally using npm:

npm install -g eckra

Usage

Just type eckra in any Git repository to launch the interactive dashboard:

eckra

Quick Commands

Skip the menu and jump straight into action:

| Command | Alias | Action | | :--------------- | :---- | :-------------------------------------------- | | eckra commit | c | Start the AI-assisted commit flow | | eckra status | st | Check repository status and staged files | | eckra push | p | Sync local commits with the remote repository | | eckra easy | e | Full workflow: Stage all, AI commit, and push | | eckra start | s | Start the interactive dashboard |

Pro tip: Use eckra e as a shortcut for the full automated workflow — it stages all changes, generates an AI commit message, and pushes in one go.

AI Configuration

eckra supports multiple AI providers. You can switch between them using the built-in settings menu (Settings > Change Provider).

Supported Providers

| Provider | Type | Default Model | | :---------------- | :-------------- | :--------------------------- | | LM Studio | Local | — (user-configured) | | Ollama | Local | — (user-configured) | | OpenAI | Cloud (API Key) | gpt-5-mini | | Anthropic | Cloud (API Key) | claude-sonnet-4-6 | | OpenRouter | Cloud (API Key) | openai/gpt-5-mini | | Google Gemini | Cloud (API Key) | gemini-3.1-flash-lite |

Default Setup (LM Studio)

By default, eckra connects to LM Studio's local server:

  • URL: http://localhost:1234
  • Requirement: Ensure LM Studio is running and the "Local Server" is started with a loaded model.

Configuration

You can configure your provider in two ways:

  1. Interactive: Run eckra, go to More > Settings, and select your provider and enter your credentials.
  2. Config file: Edit ~/.eckra/config.json directly:
{
  "aiProvider": "openrouter",
  "openrouterApiKey": "sk-or-...",
  "openrouterModel": "anthropic/claude-3.5-sonnet"
}

You can also create a .eckrarc file in your project root to override global settings per-repository. .eckrarc is ignored by default because it may contain API keys; avoid committing provider secrets to your repository.

Troubleshooting

| Problem | Likely Cause | Solution | | :------ | :----------- | :------- | | "This folder is not a Git repository!" | Not inside a git repo | Run git init or cd into a repo | | "Not connected" (LM Studio / Ollama) | Local server not running | Start LM Studio server on :1234 or Ollama on :11434 | | "AI Provider Error: 401" | Wrong or missing API key | Check ~/.eckra/config.json or re-enter key via Settings menu | | "AI returned no choices" | Invalid model name | Verify the model name in settings matches your provider | | "AI returned empty or too short response" | Local model not loaded | Load a model in LM Studio / Ollama before using eckra | | "Malformed config file" | Bad JSON in config | Fix or delete ~/.eckra/config.json — defaults will be used | | Push fails: "no upstream" | First push on a new branch | eckra auto-detects this and offers to set upstream for you | | Rebase / cherry-pick failed | Merge conflicts | Resolve conflicts manually, then continue from the rebase menu | | Timeout / "ECONNABORTED" | Provider slow or unreachable | Check your network, firewall, or provider status page |

Contributing

Contributions make the open-source community an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

Please see CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.

Uninstall

You can uninstall Eckra either from the app or manually:

In-App Uninstall (Recommended)

  1. Run eckra and go to More > Settings
  2. Select "Uninstall Eckra"
  3. Confirm by typing uninstall

This will remove all configuration files (~/.eckra/) and the global npm package.

Manual Uninstall

npm uninstall -g eckra
rm -rf ~/.eckra

License

Distributed under the MIT License. See LICENSE for more information.