clickup-agent-cli 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +5 -5
- package/dist/clickup.js +470 -291
- package/package.json +11 -3
- package/skills/clickup-fields/SKILL.md +3 -3
- package/skills/clickup-time/SKILL.md +3 -2
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clickup-agent-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "CLI covering the entire ClickUp API v2 surface",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"clickup": "
|
|
7
|
+
"clickup": "dist/clickup.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
@@ -46,5 +46,13 @@
|
|
|
46
46
|
"tsx": "^4.0.0",
|
|
47
47
|
"typescript": "^5.9.0",
|
|
48
48
|
"vitest": "^3.0.0"
|
|
49
|
-
}
|
|
49
|
+
},
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://github.com/henryreith/clickup-cli"
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/henryreith/clickup-cli/issues"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/henryreith/clickup-cli#readme"
|
|
50
58
|
}
|
|
@@ -13,7 +13,7 @@ Custom fields are defined at the list level and set on individual tasks.
|
|
|
13
13
|
```bash
|
|
14
14
|
clickup field list --list-id <id> # List field definitions
|
|
15
15
|
clickup field set --task-id <id> --field-id <fid> --value <v> # Set a field value
|
|
16
|
-
clickup field remove --task-id <id> --field-id <fid>
|
|
16
|
+
clickup field remove --task-id <id> --field-id <fid> --confirm # Clear a field value
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
### Value formats by field type
|
|
@@ -74,10 +74,10 @@ clickup field list --list-id 998877 --format md
|
|
|
74
74
|
```bash
|
|
75
75
|
clickup attachment upload --task-id <id> --file <path> [--filename <name>]
|
|
76
76
|
clickup attachment list --task-id <id>
|
|
77
|
-
clickup attachment download --task-id <id> --attachment-id <id> [--output <path>]
|
|
77
|
+
clickup attachment download --task-id <id> --attachment-id <id> [--output <path>] [--force]
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
`attachment download` fetches the file with the auth header and writes to `--output` (default: `./attachment-<id>-<title>`). Shows a spinner during download.
|
|
80
|
+
`attachment download` fetches the file with the auth header and writes to `--output` (default: `./attachment-<id>-<title>`). Refuses to overwrite an existing file unless `--force` is passed. Shows a spinner during download.
|
|
81
81
|
|
|
82
82
|
## Discovery
|
|
83
83
|
|
|
@@ -25,7 +25,7 @@ clickup time update <timer-id> --workspace-id <id>
|
|
|
25
25
|
[--description <text>] [--duration <ms>] [--start <ts>]
|
|
26
26
|
[--tag-action <add|remove>] [--tag <name>...] [--billable <bool>]
|
|
27
27
|
|
|
28
|
-
clickup time delete <timer-id> --workspace-id <id>
|
|
28
|
+
clickup time delete <timer-id> --workspace-id <id> --confirm
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
### Get / History
|
|
@@ -77,7 +77,8 @@ clickup time list --workspace-id 9876543 --format md
|
|
|
77
77
|
|
|
78
78
|
- Duration is always in **milliseconds** (1 hour = 3600000, 1 minute = 60000)
|
|
79
79
|
- Start timestamps are Unix milliseconds
|
|
80
|
-
- `time delete`
|
|
80
|
+
- `time delete` requires `--confirm` in non-interactive mode (like all delete commands)
|
|
81
|
+
- `--billable` accepts only `true` or `false`; anything else errors (exit 2)
|
|
81
82
|
|
|
82
83
|
## Discovery
|
|
83
84
|
|