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

@keruru-amuri/task-master

v0.1.2

Published

Task-Master MCP - Project Planning and Task Management System for Augment Code

Readme

Task-Master MCP

Task-Master MCP is a Master Control Program for Augment Code that provides project planning and task management capabilities. It generates and manages project plans in a standardized format (TASK.mdc), tracks task progress, and helps resume work on projects efficiently.

Installation

# Install globally
npm install -g @keruru-amuri/task-master

# Or run directly with npx
npx -y @keruru-amuri/task-master

Usage

Command Line Interface

Task-Master MCP provides a command-line interface for managing projects:

# Start the MCP server
task-master start

# Initialize a new project
task-master init --name "My Project" --description "A description of my project"

# Initialize a project from a requirements file
task-master init --requirements requirements.txt

# Mark a task as completed
task-master complete "Setup project structure"

# Get project status
task-master status

API Server

Task-Master MCP also provides an API server that can be used by Augment Code:

# Start the API server
task-master start --port 3000

The API server provides the following endpoints:

  • POST /api/projects - Initialize a new project
  • POST /api/tasks/complete - Mark a task as completed
  • GET /api/projects/status - Get project status
  • GET /api/projects/resume - Resume a project

Integration with Augment Code

To integrate Task-Master MCP with Augment Code, add it to your MCP list in the settings:

npx -y @keruru-amuri/task-master

Features

  • Project Initialization: Automatically generate a structured project plan based on requirements
  • Task Management: Track task status, add new tasks, and update existing ones
  • Progress Tracking: Monitor project progress and task completion
  • Project Resumption: Easily resume work on a project by identifying the next tasks to tackle
  • Markdown-based: Uses a simple TASK.mdc file format that's both human and machine-readable

TASK.mdc File Format

The TASK.mdc file uses a simple markdown format:

# Project Name - Project Plan

## Project Overview
Project description goes here

## Environment Setup
```bash
# Setup instructions

Implementation Tasks

HIGH Priority Tasks

  • [ ] Task 1
    • Description of task 1
    • [ ] Subtask 1.1
    • [ ] Subtask 1.2

MEDIUM Priority Tasks

  • [ ] Task 2
    • Description of task 2

LOW Priority Tasks

  • [ ] Task 3
    • Description of task 3

Progress Tracking

  • Started: 2023-01-01 12:00:00
  • Last Updated: 2023-01-02 15:30:00
  • Status: IN PROGRESS

Next Steps

  • Next step 1
  • Next step 2

Notes

Additional notes go here


## License

MIT