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

local-task-master

v0.12.3

Published

A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.

Readme

LOCAL Task Master - Enhanced AI Client Fork GitHub stars

CI npm version Discord Follow License: MIT with Commons Clause

This is an enhanced fork of the original Task Master project by @eyaltoledano & @RalphEcom. We extend our sincere thanks to the original authors for their excellent work in creating the foundation for this project.

What's New in This Fork?

This fork enhances Task Master with a robust, OpenAI-compatible AI client system that supports both cloud providers and local LLM endpoints. Key improvements include:

  • Flexible AI Provider Support: Works with OpenAI, local endpoints (Ollama, LocalAI), and other OpenAI-compatible APIs
  • Advanced Configuration Management: Environment-based configuration with support for multiple providers
  • Robust Error Handling: Implements retry mechanisms, circuit breakers, and detailed error reporting
  • Token Usage Tracking: Built-in monitoring and reporting of token usage across providers
  • Streaming Support: Efficient handling of streaming responses with cancellation capabilities
  • Provider-Agnostic Interface: Unified API for seamless switching between different AI providers

Requirements

  • Ollama installed locally (for running Qwen and other models)
  • Optional: API keys for cloud providers (Anthropic, OpenAI, etc.)
  • Node.js 18 or higher

Quick Start

Option 1 | MCP (Recommended):

MCP (Model Control Protocol) provides the easiest way to get started with Local Task Master directly in your editor.

  1. Install and Start Ollama
# Install Ollama (if not already installed)
# Visit https://ollama.ai for installation instructions

# Pull the Qwen model
ollama pull qwen3

# Start Ollama in a separate terminal
ollama serve
  1. Add the MCP config to your editor (Cursor recommended, but it works with other text editors):
{
	"mcpServers": {
		"taskmaster": {
			"command": "npx",
			"args": ["-y", "--package=local-task-master", "local-task-master"],
			"env": {
				"AI_PROVIDER": "ollama",
				"AI_BASE_URL": "http://localhost:11434",
				"MODEL": "qwen3",
				"MAX_TOKENS": "40960",
				"TEMPERATURE": "0.7",
				"DEFAULT_SUBTASKS": "5",
				"DEFAULT_PRIORITY": "medium",
				"DEBUG": "false",
				"LOG_LEVEL": "info",
				"TRACK_USAGE": "true",
				"MAX_RETRIES": "3",
				"RETRY_DELAY": "1000",
				"MAX_CONCURRENT": "4"
			}
		}
	}
}
  1. Enable the MCP in your editor

  2. Prompt the AI to initialize Local Task Master:

Can you please initialize taskmaster into my project?
  1. Use common commands directly through your AI assistant:
Can you parse my PRD at scripts/prd.txt?
What's the next task I should work on?
Can you help me implement task 3?
Can you help me expand task 4?

Option 2: Using Command Line

Installation

# Install globally
npm install -g local-task-master

# OR install locally within your project
npm install local-task-master

Initialize a new project

# If installed globally
task-master init

# If installed locally
npx task-master-init

This will prompt you for project details and set up a new project with the necessary files and structure.

Common Commands

# Initialize a new project
task-master init

# Parse a PRD and generate tasks
task-master parse-prd your-prd.txt

# List all tasks
task-master list

# Show the next task to work on
task-master next

# Generate task files
task-master generate

Environment Variables

In addition to the standard Local Task Master environment variables, this fork supports the following AI-related configurations:

  • AI Provider Configuration:

    • ANTHROPIC_API_KEY: Your Anthropic API key
    • OPENAI_API_KEY: Your OpenAI API key
    • AI_BASE_URL: Base URL for custom OpenAI-compatible endpoints
    • OPENAI_MODEL: Default model for OpenAI requests
    • LOCAL_MODEL: Model name for local LLM endpoints
  • Performance Settings:

    • MAX_RETRIES: Maximum retry attempts for failed API calls
    • RETRY_DELAY: Initial delay between retries (ms)
    • MAX_CONCURRENT: Maximum concurrent API requests
    • CIRCUIT_BREAKER_THRESHOLD: Failure threshold for circuit breaker
  • Monitoring:

    • TRACK_USAGE: Enable/disable token usage tracking
    • USAGE_LOG_PATH: Path for token usage logs
    • DEBUG: Enable detailed debug logging
    • LOG_LEVEL: Set logging verbosity

Documentation

For more detailed information, check out the documentation in the docs directory:

Troubleshooting

If task-master init doesn't respond:

Try running it with Node directly:

node node_modules/local-task-master/scripts/init.js

Or clone the repository and run:

git clone https://github.com/eyaltoledano/claude-task-master.git
cd claude-task-master
node scripts/init.js

Licensing

Local Task Master is licensed under the MIT License with Commons Clause. This means you can:

Allowed:

  • Use Local Task Master for any purpose (personal, commercial, academic)
  • Modify the code
  • Distribute copies
  • Create and sell products built using Local Task Master

Not Allowed:

  • Sell Local Task Master itself
  • Offer Local Task Master as a hosted service
  • Create competing products based on Local Task Master

See the LICENSE file for the complete license text and licensing details for more information.