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

@angular-ai-kit/cli

v0.1.14

Published

CLI tool to add Angular AI Kit components to your project - similar to Shadcn UI

Readme

@angular-ai-kit/cli

npm version License: MIT

CLI tool to add Angular AI Kit components to your project - similar to Shadcn UI.

Requirements

  • Node.js >= 20.0.0
  • Angular v19+
  • Tailwind CSS v4 (recommended)

Usage

Initialize in your project

npx @angular-ai-kit/cli init

This will:

  • Detect your Angular version
  • Check for Tailwind CSS
  • Create angular-ai-kit.config.json
  • Set up the components directory
  • Add CSS variables for theming

Add components

# Add a single component
npx @angular-ai-kit/cli add ai-response

# Add multiple components
npx @angular-ai-kit/cli add chat-container message-list

# Skip confirmation prompts
npx @angular-ai-kit/cli add ai-response --yes

Components are copied to your project with all dependencies automatically resolved.

List available components

# List all components
npx @angular-ai-kit/cli list

# Filter by category
npx @angular-ai-kit/cli list --category chat

# Show installed components only
npx @angular-ai-kit/cli list --installed

Available Components

Chat Components

  • chat-container - Full chat layout with message list and input area
  • message-list - Scrollable list of chat messages with auto-scroll
  • user-message - Display user messages with edit and copy actions
  • message-actions - Copy and edit action buttons for messages
  • prompt-suggestions - Display clickable prompt suggestions
  • conversation-list - Sidebar list of conversations

Display Components

  • ai-response - Display AI assistant responses with markdown rendering
  • markdown-renderer - Render markdown content with syntax highlighting
  • code-block - Display code with syntax highlighting and copy button
  • feedback-buttons - Thumbs up/down feedback buttons
  • response-actions - Action buttons for AI responses

UI Components

  • icon-button - Reusable icon button primitive

Configuration

After running init, a config file is created:

{
  "$schema": "https://raw.githubusercontent.com/hassantayyab/angular-ai-kit/main/packages/cli/schema.json",
  "componentsPath": "src/app/components/ai-kit",
  "typescript": true,
  "tailwind": {
    "config": "tailwind.config.js",
    "css": "src/styles.css"
  },
  "aliases": {
    "components": "@/components/ai-kit",
    "utils": "@angular-ai-kit/utils"
  }
}

Commands

| Command | Description | | --------------------- | ----------------------------------------- | | init | Initialize Angular AI Kit in your project | | add <components...> | Add component(s) to your project | | list | List all available components |

Options

init

  • -y, --yes - Skip confirmation prompts
  • -c, --cwd <path> - Working directory

add

  • -y, --yes - Skip confirmation prompts
  • -o, --overwrite - Overwrite existing files
  • -c, --cwd <path> - Working directory

list

  • -i, --installed - Show only installed components
  • --category <category> - Filter by category (chat, display, ui)
  • -c, --cwd <path> - Working directory

Related Packages

License

MIT