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

taskfoundry

v0.4.2

Published

Generate task content and commit messages from your Git diffs — in Markdown or JSON — powered by Groq, OpenAI, or your own local model.

Readme

TaskFoundry 🛠️

TaskFoundry is a powerful CLI tool designed to streamline your development workflow by generating high-quality task descriptions and conventional commit messages directly from your Git diffs. Powered by AI engines like Groq, OpenAI, or even your local models, TaskFoundry turns raw code changes into meaningful documentation in seconds.

✨ Features

  • 🤖 AI-Powered Analysis: Automatically understands your code changes and summarizes them.
  • 📝 Task Generation: Create detailed task descriptions in Markdown or JSON format.
  • 💬 Commit Messages: Generate conventional commit messages from staged changes.
  • 🚀 Multiple Engines: Support for Groq, OpenAI, Hugging Face, Free Tier, and Local models.
  • 🔄 Automatic Fallback: Smart engine selection that tries available services if one fails or hits a rate limit.
  • ⚙️ Flexible Configuration: System-wide preferences, project-level settings, and environment variable support.
  • 📋 Clipboard Support: Quick-copy commit messages to your clipboard (macOS).

🚀 Installation

npm install -g taskfoundry
# or
pnpm add -g taskfoundry

🛠️ Quick Start

1. Setup API Keys (Optional)

TaskFoundry comes with a free tier, but for unlimited access, it's recommended to set up your own API keys:

create-task setup

2. Generate a Task

Create a task description from your last commit:

create-task

Generate from staged changes in JSON format:

create-task --staged --output json

3. Generate a Commit Message

Stage your changes first, then run:

create-commit

Or specify a type and scope:

create-commit --type feat --scope core --copy

📖 Commands & Aliases

| Command | Alias | Description | | :--- | :--- | :--- | | create-task | ct | Generate task content from Git diff | | create-commit | cm | Generate conventional commit message |

create-task Options

  • --staged: Use staged changes (git diff --cached).
  • --commit <hash>: Compare against a specific commit hash.
  • --output <format>: Output as markdown (default) or json.
  • --detailed: Generate more exhaustive task descriptions.
  • --engine <engine>: Choose from auto, groq, openai, freetier, or local.
  • --file <path>: Save output directly to a file.
  • --retry: Enable automatic engine fallback on failure.

create-commit Options

  • --type <type>: Specify commit type (feat, fix, docs, etc.).
  • --scope <scope>: Add an optional scope to the commit message.
  • --breaking: Mark as a breaking change.
  • --copy: Copy the result to clipboard (macOS only).

⚙️ Configuration

TaskFoundry looks for configuration in the following order (highest priority first):

  1. CLI Arguments: --engine groq --detailed
  2. Project Config: .taskfoundry.json in your project root.
  3. System Config: ~/.taskfoundry/config.json (Managed via create-task setup).
  4. Environment Variables: GROQ_API_KEY, OPENAI_API_KEY, etc.

Initialize Project Config

create-task init

Supported Engines

  • auto (Default): Tries engines in order: Groq → OpenAI → Hugging Face → Free Tier.
  • groq: Blazing fast inference using Groq LPU.
  • openai: Industry-standard models like GPT-4o.
  • freetier: No setup required! (Limited to 50 requests/day).
  • local: Connect to your own local LLM endpoint (e.g., Ollama).

📄 License

Apache-2.0 © Faith S. Appoh