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

@targlobal/mission-control

v1.5.9

Published

CLI tool for TAR Global Mission Control - Internal task management

Readme

Mission Control CLI

╔══════════════════════════════════════════════════════════╗
║  ███╗   ███╗ ██╗ ███████╗ ███████╗ ██╗  ██████╗  ███╗   ██╗  ║
║  ████╗ ████║ ██║ ██╔════╝ ██╔════╝ ██║ ██╔═══██╗ ████╗  ██║  ║
║  ██╔████╔██║ ██║ ███████╗ ███████╗ ██║ ██║   ██║ ██╔██╗ ██║  ║
║  ██║╚██╔╝██║ ██║ ╚════██║ ╚════██║ ██║ ██║   ██║ ██║╚██╗██║  ║
║  ██║ ╚═╝ ██║ ██║ ███████║ ███████║ ██║ ╚██████╔╝ ██║ ╚████║  ║
║  ╚═╝     ╚═╝ ╚═╝ ╚══════╝ ╚══════╝ ╚═╝  ╚═════╝  ╚═╝  ╚═══╝  ║
║                                                              ║
║      ⚡ CONTROL   TAR Global Internal Task Management        ║
╚══════════════════════════════════════════════════════════════╝

A powerful CLI tool for managing tasks in TAR Global's Mission Control system.

Installation

Quick Install (Linux/macOS/Termux)

curl -fsSL https://targlobal.org/download/mc | bash

Via npm (Alternative)

npm install -g @targlobal/mission-control

Termux (Android)

The installer automatically detects Termux and installs to $PREFIX/bin:

pkg install nodejs
curl -fsSL https://targlobal.org/download/mc | bash

Quick Start

# 1. Login with your token
mc login

# 2. View your tasks
mc tasks

# 3. Create a new task
mc new "Fix the login bug" --type bug --priority high

# 4. Start working on a task
mc start 1001

# 5. Complete a task
mc done 1001

Commands

| Command | Alias | Description | |---------|-------|-------------| | mc login | - | Authenticate with Mission Control | | mc logout | - | Clear stored credentials | | mc tasks | ls | List your assigned tasks | | mc show <id> | view | Show task details | | mc new <title> | create | Create a new task | | mc start <id> | - | Move task to In Progress | | mc done <id> | complete | Mark task as complete | | mc comment <id> <msg> | note | Add a comment to a task | | mc boards | - | List available boards | | mc stats | - | Show your task statistics | | mc urgent | - | Show critical tasks | | mc whoami | - | Show current configuration |

Options

Creating Tasks

mc new "Task title" [options]

Options:
  -d, --description <desc>    Task description
  -p, --priority <priority>   critical, high, medium, low (default: medium)
  -t, --type <type>           bug, feature, improvement, task (default: task)
  -b, --board <board>         Board slug (default: backend)

Listing Tasks

mc tasks [options]

Options:
  -a, --all                   Show all tasks, not just mine
  -b, --board <board>         Filter by board
  -p, --priority <priority>   Filter by priority

Examples

# Create a high priority bug
mc new "Fix null pointer exception" -t bug -p high -b backend

# Create a feature request
mc new "Add dark mode" -t feature -d "Users want dark mode support"

# View task details
mc show MC-1001

# Add a comment
mc comment 1001 "Found the issue - missing validation on line 47"

# View stats
mc stats

# See urgent tasks
mc urgent

Configuration

Config is stored in ~/.config/mission-control/config.json

# View current config
mc whoami

# Change API URL
mc login --url https://api.custom.com

Support

For issues or questions, contact the TAR Global development team.


Built with ❤️ by TAR Global