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

eugent

v0.1.4

Published

Terminal-based AI coding assistant powered by Mistral AI with file manipulation tools

Readme

Eugent Logo

Eugent - Terminal-based AI coding assistant powered by Mistral AI API.

Eugent Demo

CAUTION: This is an early-stage project. Use with caution and review all changes made by the AI. It may delete your filesystem and may burn a trillion tokens. Set the limits in the admin dashboard of Mistral AI.

Installation

npm install -g eugent

Prerequisites

Quick Start

  1. Install globally:

    npm install -g eugent
  2. Run in any project directory:

    eugent
  3. Set up your API key

  4. On first run, you'll be prompted to initialize the project. Press y to create a .eugent/ config folder.

Features

  • Built-in Tools - Read, write, edit files, search code, execute commands, fetch web content
  • Permission System - Configurable tool permissions with interactive prompts
  • Custom Prompts - TOML-based prompt customization without rebuilding
  • Per-Project Config - Project-specific settings in .eugent/config.json

Built-in Tools

  1. read_file - Read file contents with pagination
  2. list_files - List directory contents with pattern filtering
  3. find_files - Recursively search for files matching glob patterns
  4. grep - Search for text/regex patterns across files
  5. write_file - Create new files (fails if file exists)
  6. edit_file - Modify existing files (requires read-before-write)
  7. delete_file - Delete files with safety checks
  8. execute_command - Run shell commands with timeout
  9. web_fetch - Fetch and convert web content to markdown
  10. github_search - Search GitHub repositories and issues
  11. npm_search - Search npm packages

Additional project management tools: context_write, manage_todos

All tools respect .gitignore and have built-in safety checks.

Configuration

Global Config:

  • ~/.eugent/key.txt - Your Mistral API key (required)
  • ~/.eugent/github_token.txt - Optional GitHub token for higher rate limits

Per-Project Config (.eugent/ directory):

config.json - Project settings:

{
  "model": "devstral-medium-2507",
  "temperature": 0.7,
  "allowed_tools": ["read_file", "list_files", "find_files", "grep", "write_file"],
  "enable_logging": false
}

Tools in allowed_tools don't require permission prompts. edit_file and execute_command always ask.

.eugent/prompts.toml (optional) - Customize AI prompts and tool descriptions. Run /edit_prompts to generate a template with all defaults.

Usage

Start the app:

eugent

Ask questions or request changes. The AI will use tools automatically with permission prompts for risky operations.

Keyboard Shortcuts:

  • ESC - Stop current request
  • Ctrl+C - Exit application
  • Ctrl+Enter - New line in input
  • ESC ESC - Clear input

Slash Commands:

  • /help - Show available commands
  • /clear - Clear conversation history
  • /context - AI-powered project context building
  • /show_context - Display current project context
  • /remember <note> - Save a note to memory
  • /forget - Clear all memories
  • /compact - Summarize conversation to save tokens
  • /edit_prompts - Export customizable prompt template
  • /reprompt - Improve last AI response

Safety Features

Edit protection - Must read file with read_for_write=true before editing Path validation - All file operations restricted to current directory tree Size limits - 256KB max for file reads/edits Gitignore respect - Won't write to or read from gitignored paths Tool call limit - 10 iterations with option to continue

License

MIT