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

@discountry/clickup-cli

v1.0.2

Published

A globally installable ClickUp CLI for tasks, comments, and docs.

Readme

@discountry/clickup-cli

中文说明

Global ClickUp CLI for tasks, comments, and docs.

Install

npm install -g @discountry/clickup-cli
clickup --help

Install the Codex skill from this repo:

npx skills add discountry/clickup-cli --skill clickup
# or
npx skills add https://github.com/discountry/clickup-cli --skill clickup

Skill docs: skills/clickup/README.md

Local package install:

npm install -g .

Configure

Set shell environment variables:

export CLICKUP_API_TOKEN=pk_your_token_here
export CLICKUP_WORKSPACE_ID=123456
export CLICKUP_USER_ID=7890
export CLICKUP_DEFAULT_LIST_ID=901111220963

Variables:

  • CLICKUP_API_TOKEN: required. ClickUp Personal API Token.
  • CLICKUP_WORKSPACE_ID: optional. Workspace ID.
  • CLICKUP_TEAM_ID: optional. Alias for CLICKUP_WORKSPACE_ID.
  • CLICKUP_USER_ID: optional. Current user ID.
  • CLICKUP_DEFAULT_LIST_ID: optional. Default list for clickup create "Task title".

Commands

clickup me
clickup get 86a1b2c3d --subtasks
clickup comments 86a1b2c3d
clickup comment 86a1b2c3d "Starting work"
clickup status 86a1b2c3d "in progress"
clickup create "Quick task"
clickup create 901111220963 "New feature" --assignee me --due tomorrow --description "## Scope"
clickup my-tasks
clickup search "authentication"
clickup assign 86a1b2c3d jane
clickup due 86a1b2c3d "+3d"
clickup priority 86a1b2c3d high
clickup subtask 86a1b2c3d "Write tests"
clickup move 86a1b2c3d 901111220964
clickup link 86a1b2c3d "https://github.com/org/repo/pull/123" "PR #123"
clickup checklist 86a1b2c3d "Review code"
clickup delete-comment 90110200841741
clickup watch 86a1b2c3d alex
clickup tag 86a1b2c3d "DevOps"
clickup description 86a1b2c3d "# Summary"
clickup docs
clickup docs "API"
clickup docs "Sprint1" --parent-type FOLDER --limit 100
clickup doc abc123
clickup create-doc "Project Notes" --content "# Notes"
clickup page abc123 page456 --content-format text/plain
clickup create-page abc123 "New Section" --content "Hello" --sub-title "Summary"
clickup edit-page abc123 page456 --name "Renamed" --sub-title "Updated" --content "# Updated" --content-edit-mode append

Add --json for structured command output.

Docs and pages:

  • docs supports --id, --creator, --deleted, --archived, --parent-id, --parent-type, --limit.
  • doc supports --max-page-depth.
  • page supports --content-format text/md|text/plain.
  • create-page supports --sub-title, --parent-page-id, --content-format.
  • edit-page supports --name, --sub-title, --content, --content-edit-mode, --content-format.

Development

pnpm install
pnpm test
npm run pack:check

Paths:

  • bin/clickup.js: CLI entry.
  • src/cli/: argument parsing, command registration, help text.
  • src/services/: task, comment, doc, and user services.
  • src/http/: ClickUp HTTP client.
  • src/utils/: ID parsing, date parsing, Markdown conversion, output formatting.
  • tests/: automated tests.