@targlobal/mission-control
v1.5.9
Published
CLI tool for TAR Global Mission Control - Internal task management
Maintainers
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 | bashVia npm (Alternative)
npm install -g @targlobal/mission-controlTermux (Android)
The installer automatically detects Termux and installs to $PREFIX/bin:
pkg install nodejs
curl -fsSL https://targlobal.org/download/mc | bashQuick 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 1001Commands
| 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 priorityExamples
# 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 urgentConfiguration
Config is stored in ~/.config/mission-control/config.json
# View current config
mc whoami
# Change API URL
mc login --url https://api.custom.comSupport
For issues or questions, contact the TAR Global development team.
Built with ❤️ by TAR Global
