You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@discountry/clickup-cli

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@discountry/clickup-cli

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

Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
16
-93.44%
Maintainers
1
Weekly downloads
 
Created
Source

@discountry/clickup-cli

中文说明

Global ClickUp CLI for tasks, comments, and docs.

Install

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

Install the Codex skill:

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 doc abc123
clickup create-doc "Project Notes" --content "# Notes"
clickup page abc123 page456
clickup create-page abc123 "New Section" --content "Hello"
clickup edit-page abc123 page456 --name "Renamed" --content "# Updated"

Add --json for raw API output.

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.

Keywords

clickup

FAQs

Package last updated on 13 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts