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

@hunghg255/maicli

v0.0.3

Published

CLI tool for dev teams to manage tasks and documentation

Readme


TL;DR: MAICLI is a CLI-first knowledge layer that lets AI reliably read and reuse your project context — instead of asking the same questions every session.

The Problem

AI assistants are stateless — they forget your architecture, patterns, and decisions every session.

Session 1: "Implement feature X" → AI: "How does your auth work?" → You explain

Session 2: "Implement feature Y" → AI: "How does your auth work?" → You explain AGAIN

Session 100: Still explaining the same thing...

The Solution

# Document once
maicli doc create "Auth Pattern" -d "JWT with guards" -f patterns

# Reference everywhere
maicli task create "Add login" -d "Follow @doc/patterns/auth-pattern"

# AI reads context automatically — never forgets

How it works:

  1. You plan — Create tasks with acceptance criteria in Web UI or CLI
  2. You link — Reference docs like @doc/patterns/auth in task descriptions
  3. AI executes — Tell AI "Work on task 42", it reads the task, follows the refs, and implements

MAICLI resolves @doc/... and @task-... into real files. AI reads them via MCP or --plain output — no copy-paste needed.

Install

# using npm
npm install -g maicli

# using bun
bun install -g maicli


maicli init
maicli browser  # Open Web UI

Why MAICLI over Notion / Jira / Obsidian?

| | MAICLI | Notion/Jira | Obsidian | |---|--------|-------------|----------| | AI-readable | --plain output, MCP server | Copy-paste manually | Plugins needed | | File-based | Git-friendly .maicli/ folder | Cloud-locked | Local files | | CLI-first | Full CLI + Web UI | Web only | GUI only | | Context linking | @doc/... @task-42 refs | Manual links | Wiki links | | Source of truth | Local files (Git-versioned) | Remote database | Local vault | | Minimal setup | maicli init and done | Complex setup | Many plugins |

Best for: Dev teams who pair with AI and want persistent project memory.

Features

| Feature | Description | |---------|-------------| | Task Management | Create, track tasks with acceptance criteria | | Documentation | Nested folders with markdown support | | Time Tracking | Built-in timers and reports | | Context Linking | @task-42 and @doc/patterns/auth references | | AI Integration | MCP Server for Claude, --plain output | | Web UI | Kanban board, doc browser, dark mode |


Quick Reference

# Tasks
maicli task create "Title" -d "Description" --ac "Criterion"
maicli task list --plain
maicli task <id> --plain                    # View task (shorthand)
maicli task edit <id> -s in-progress -a @me

# Documentation
maicli doc create "Title" -d "Description" -f "folder"
maicli doc "doc-name" --plain               # View doc (shorthand)

# Time & Search
maicli time start <id> && maicli time stop
maicli search "query" --plain

Documentation

| Guide | Description | |-------|-------------| | Command Reference | All CLI commands with examples | | Workflow Guide | Task lifecycle from creation to completion | | Reference System | How @doc/ and @task- linking works | | Web UI | Kanban board and document browser | | MCP Integration | Claude Desktop setup | | Configuration | Project structure and options | | AI Workflow | Guide for AI agents |


Roadmap

Self-Hosted Team Sync 🚧 (Planned)

MAICLI will optionally support a self-hosted sync server — for teams that want shared visibility without giving up local-first workflows.

  • Real-time visibility — See who is working on what
  • Shared knowledge — Sync tasks and documentation across the team
  • Progress tracking — Track activity over time
  • Full data control — Self-hosted, no cloud dependency

The CLI and local .maicli/ folder remain the source of truth. The server acts only as a sync and visibility layer.


Development

npm install
npm run dev      # Dev mode
npm run build    # Build
npm run test     # Test

Links

For design principles and long-term direction, see Philosophy.

For technical details, see Architecture and Contributing.