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

@opentusk/cli

v0.6.3

Published

CLI for [OpenTusk](https://opentusk.ai) decentralized storage. Upload, download, and manage files from the terminal. Includes a built-in MCP server for AI agent integration.

Readme

@opentusk/cli

CLI for OpenTusk decentralized storage. Upload, download, and manage files from the terminal. Includes a built-in MCP server for AI agent integration.

Install

npm install -g @opentusk/cli

Authentication

# Login with email/password
opentusk auth login

# Or use an API key
opentusk auth set-key otk_...

Usage

# Vaults
opentusk vault list
opentusk vault create my-vault --visibility public

# Files
opentusk upload ./photo.jpg --vault my-vault
opentusk download <fileId> -o ./photo.jpg
opentusk file list --vault my-vault

# Folders
opentusk folder create --vault my-vault --name docs
opentusk folder list --vault my-vault

# Trash
opentusk trash list
opentusk trash restore <itemId>

# Webhooks
opentusk webhook create https://example.com/hook --events file.uploaded file.synced
opentusk webhook list

# Account
opentusk account info

Shared Vaults

Shared vaults use SEAL on-chain encryption. Members are managed by Sui address:

# Link your Sui wallet
opentusk sui setup suiprivkey1...

# Create a shared vault (requires connected wallet)
opentusk vault create team-docs --visibility shared

# Grant/revoke access
opentusk vault grant <vaultId> --address 0x...
opentusk vault revoke <vaultId> --member <memberId>
opentusk vault members <vaultId>

MCP Server (AI Agent Integration)

The CLI includes a built-in MCP server that lets AI agents (Claude Code, Claude Desktop, Cursor) interact with OpenTusk storage directly.

# Start the MCP server
opentusk mcp serve

# Install config for your agent
opentusk mcp install-config                  # Claude Code (.mcp.json)
opentusk mcp install-config --target desktop # Claude Desktop
opentusk mcp install-config --target cursor  # Cursor

The MCP server exposes 29 tools covering vaults, files, folders, trash, shared vault membership, and account management. AI agents can upload, download, read, and organize files without filesystem access.

Agent Configuration

{
  "mcpServers": {
    "opentusk": {
      "command": "opentusk",
      "args": ["mcp", "serve"],
      "env": {
        "OPENTUSK_API_KEY": "otk_...",
        "OPENTUSK_SUI_PRIVATE_KEY": "suiprivkey1..."
      }
    }
  }
}

Disaster Recovery

Export file metadata and encryption keys for offline recovery:

# Export manifest with Walrus blob IDs and wrapped keys
opentusk export -o backup.json

# Decrypt files offline (no API needed)
opentusk decrypt file.enc --export backup.json -o file.txt

Files can be recovered directly from the Walrus network using the blob IDs in the export manifest, without any dependency on the OpenTusk API.

Global Options

| Option | Description | |--------|-------------| | --api-key <key> | Override API key | | --api-url <url> | Override API URL | | --format <fmt> | Output format: table, json, plain | | --quiet | Suppress non-essential output | | --verbose | Show debug output | | --no-color | Disable colored output |

Links