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

aikutty

v1.0.23

Published

Aikutty AI Code Development CLI - Chat-based code assistant powered by AWS Bedrock

Readme

Aikutty CLI

AI-powered code development assistant for the terminal. Chat with Aikutty to generate code, get explanations, review code, and more.

Installation

npm install -g aikutty

Quick Start

  1. Configure your credentials:
aikutty config

You'll be prompted for:

  • API Endpoint (default: https://api.aikutty.com)
  • Tenant ID (your unique identifier)
  1. Start chatting:
aikutty chat

Commands

aikutty config

Configure your Aikutty CLI settings (API endpoint and tenant ID)

aikutty chat

Start an interactive chat session with Aikutty

Options:

  • -m, --message <message> - Send a single message
  • -s, --stream - Enable streaming responses

Examples:

# Interactive mode
aikutty chat

# Single message
aikutty chat -m "How do I create a React component?"

# With streaming
aikutty chat -s -m "Explain async/await in JavaScript"

aikutty code <prompt>

Generate code from a natural language prompt

Options:

  • -l, --language <lang> - Programming language (default: javascript)

Examples:

aikutty code "function to sort array of objects by date"
aikutty code "REST API endpoint with Express" -l javascript
aikutty code "binary search algorithm" -l python

aikutty explain <code>

Get an explanation of code

Example:

aikutty explain "const [state, setState] = useState(0)"

aikutty review <code>

Review code for bugs, security issues, and improvements

Example:

aikutty review "function validateEmail(email) { return email.includes('@') }"

aikutty status

Check your account status and credits

aikutty credits

Check your remaining credits

Interactive Chat Commands

While in interactive chat mode, you can use these commands:

  • exit or quit - Exit the chat
  • clear - Clear conversation history
  • history - Show conversation history

Free Credits

New users receive 22 free credits to try Aikutty. Each chat request consumes 1 credit.

When you run out of credits, you'll see:

❌ Credits Exhausted
You have run out of credits. Please upgrade your plan.
Visit: https://aikutty.com/pricing

API Integration

Aikutty uses:

  • API Endpoint: https://api.aikutty.com
  • Model: Qwen3 Coder 30B (via AWS Bedrock)
  • Multi-tenant: Each user has a unique tenant ID

Configuration File

Configuration is stored in ~/.aikutty/config.json

Environment Variables

You can also configure using environment variables:

export AIKUTTY_API_ENDPOINT=https://api.aikutty.com
export AIKUTTY_TENANT_ID=your-tenant-id

Support

  • Website: https://aikutty.com
  • Email: [email protected]
  • GitHub: https://github.com/aikutty/aikutty-cli

License

MIT