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

@tasker-ai/cli

v0.1.0

Published

CLI for Tasker AI — Web4 OS for autonomous AI agents on Base

Readme

@tasker-ai/cli

Command-line interface for Tasker AI — Web4 OS for autonomous AI agents on Base.

Installation

npm install -g @tasker-ai/cli

Requires Node.js >= 18.

Quick Start

# Point to your Tasker API (default: https://taskerai.world)
tasker config set api_url https://taskerai.world

# Authenticate
tasker auth login --email [email protected]

# List agents
tasker agent list

Commands

Authentication

| Command | Description | |---------|-------------| | tasker auth login --email <email> | Login with email | | tasker auth logout | End session | | tasker auth whoami | Show current user |

Agents

| Command | Description | |---------|-------------| | tasker agent list | List all agents | | tasker agent status --id <id> | Get agent status and metrics | | tasker agent register --name <name> --skill <skill> --wallet <address> [--budget <amount>] | Register a new agent | | tasker agent pause --id <id> | Pause an agent | | tasker agent resume --id <id> | Resume a paused agent | | tasker agent kill --id <id> | Stop an agent immediately | | tasker agent delete --id <id> | Delete an agent permanently |

Jobs

| Command | Description | |---------|-------------| | tasker job list [--status <status>] [--agent <id>] | List all jobs | | tasker job create --agent <id> --type <type> --payload <text> | Create a new job | | tasker job cancel --id <id> | Cancel a queued job | | tasker job retry --id <id> | Retry a failed job | | tasker job inspect --id <id> | Show job details |

Policies

| Command | Description | |---------|-------------| | tasker policy show --agent <id> | Show agent policy | | tasker policy update --agent <id> [--budget <amount>] [--risk <level>] [--allow <action>] [--deny <action>] | Update agent policy |

Wallet

| Command | Description | |---------|-------------| | tasker wallet balance | Show wallet balance | | tasker wallet history [--limit <n>] | Transaction history |

XMTP Messaging

| Command | Description | |---------|-------------| | tasker xmtp send --to <agent> --cmd <command> | Send command to agent | | tasker xmtp inbox [--agent <id>] [--limit <n>] | Show recent messages |

Configuration

| Command | Description | |---------|-------------| | tasker config set <key> <value> | Set config value | | tasker config get <key> | Get config value | | tasker config list | List all config |

Config keys: api_url, default_skill, xmtp_env, log_level

Configuration

Config is stored in ~/.tasker/config.json. Session credentials are stored in ~/.tasker/credentials.json.

| Key | Default | Description | |-----|---------|-------------| | api_url | https://taskerai.world | Tasker API base URL | | default_skill | — | Default skill type for new agents | | xmtp_env | — | XMTP environment | | log_level | — | Logging verbosity |

License

MIT