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

gemi-task

v0.1.0

Published

A CLI task manager with AI-powered task details generation using Google's Gemini AI

Readme

gemiTask

A CLI task manager with AI-powered task details generation using Google's Gemini AI

npm version License: MIT

Features

  • 🧠 AI-Powered Task Breakdown: Automatically generate subtasks, estimates, and priorities
  • 📅 Smart Deadline Management: Intelligent deadline suggestions
  • 🎯 Priority Scoring: AI-driven priority assessment (1-5 scale)
  • 🔗 Dependency Tracking: Identify task dependencies automatically
  • 💡 Next Task Suggestions: Get AI recommendations for what to work on next
  • 🎨 Beautiful CLI Interface: Rich terminal output with colors and emojis

Installation

npm install -g gemi-task

Prerequisites

Usage

Set Your API Key

First, set your Gemini API key:

gemiTask set-api-key

Or provide it directly:

gemiTask set-api-key --key YOUR_API_KEY

Adding Tasks

Add a new task with AI-powered breakdown:

gemiTask add "Build a REST API for user management"

With custom priority (1-5, where 1 is highest):

gemiTask add "Deploy to production" --priority 1

With a deadline:

gemiTask add "Finish documentation" --deadline 2023-12-31

Managing Tasks

List all tasks:

gemiTask list

Include completed tasks:

gemiTask list --done

Get detailed breakdown of a task:

gemiTask breakdown 1

Mark a task as done:

gemiTask done 1

Get AI suggestions for what to work on next:

gemiTask suggest

API Usage

You can also use gemiTask programmatically in your Node.js applications:

const gemiTask = require('gemi-task');

// Set API key
gemiTask.config.set('geminiApiKey', 'YOUR_API_KEY');

// Add a task
const task = await gemiTask.addTask('Create user authentication system');
console.log(task);

// List tasks
const tasks = gemiTask.listTasks();
console.log(tasks);

// Mark task as done
const updatedTask = gemiTask.markTaskDone(0); // Task ID (0-based index)
console.log(updatedTask);

// Get AI suggestion for next task
const suggestedTask = gemiTask.suggestNextTask();
console.log(suggestedTask);

Configuration

gemiTask stores configuration in your user's home directory:

  • Windows: %USERPROFILE%\.config\gemiTask\config.json
  • macOS/Linux: ~/.config/gemiTask/config.json

License

MIT