claude-task-tracker 1.0.0 → 1.0.9
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/README.md +16 -3
- package/dist/index.js +32 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -13,13 +13,26 @@ A CLI task tracker with dependency management designed to extend memory for agen
|
|
|
13
13
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
16
|
+
### Homebrew (macOS/Linux)
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
brew tap farisphp/tap
|
|
20
|
+
brew install ctt
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### npm
|
|
24
|
+
|
|
16
25
|
```bash
|
|
17
|
-
|
|
26
|
+
npm install -g claude-task-tracker
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### From Source
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
git clone https://github.com/farisphp/claude-task-tracker.git
|
|
18
33
|
cd claude-task-tracker
|
|
19
34
|
npm install
|
|
20
35
|
npm run build
|
|
21
|
-
|
|
22
|
-
# Link globally to use 'ctt' anywhere
|
|
23
36
|
npm link
|
|
24
37
|
```
|
|
25
38
|
|
package/dist/index.js
CHANGED
|
@@ -247,12 +247,39 @@ This project uses \`ctt\` (Claude Task Tracker) for task management with depende
|
|
|
247
247
|
3. When done, complete with overview: \`ctt complete <id> -o "summary of what was done"\`
|
|
248
248
|
4. Get context for a task (includes dependency overviews): \`ctt --compact context <id>\`
|
|
249
249
|
|
|
250
|
-
###
|
|
251
|
-
- \`ctt
|
|
252
|
-
- \`ctt
|
|
253
|
-
- \`ctt
|
|
250
|
+
### Commands
|
|
251
|
+
- \`ctt init\` - Initialize task store and setup CLAUDE.md
|
|
252
|
+
- \`ctt add "title"\` - Add a simple task
|
|
253
|
+
- \`ctt add "title" -d "description"\` - Add task with detailed description
|
|
254
254
|
- \`ctt add "title" -b <blocker-id>\` - Add task blocked by another
|
|
255
|
-
- \`ctt
|
|
255
|
+
- \`ctt add "title" -r <ref-id>\` - Add task with a reference to another
|
|
256
|
+
- \`ctt list\` - List all tasks
|
|
257
|
+
- \`ctt list -s <status>\` - List tasks by status (open, progress, completed)
|
|
258
|
+
- \`ctt show <id>\` - Show task details
|
|
259
|
+
- \`ctt next\` - Get next ready task (open + all blockers completed)
|
|
260
|
+
- \`ctt context <id>\` - Get task with dependency overviews
|
|
261
|
+
- \`ctt start <id>\` - Mark task as in progress
|
|
262
|
+
- \`ctt complete <id>\` - Mark task as completed
|
|
263
|
+
- \`ctt complete <id> -o "overview"\` - Complete with summary for dependent tasks
|
|
264
|
+
- \`ctt block <id> --by <blocker-id>\` - Add blocking dependency
|
|
265
|
+
- \`ctt unblock <id> --by <blocker-id>\` - Remove blocking dependency
|
|
266
|
+
- \`ctt ref <id> --to <ref-id>\` - Add soft reference to another task
|
|
267
|
+
- \`ctt unref <id> --to <ref-id>\` - Remove soft reference
|
|
268
|
+
- \`ctt overview <id> "text"\` - Set or update task overview
|
|
269
|
+
- \`ctt delete <id>\` - Delete a task
|
|
270
|
+
- \`ctt cleanup\` - Remove completed tasks older than 7 days
|
|
271
|
+
- \`ctt cleanup -d <days>\` - Remove completed tasks older than N days
|
|
272
|
+
|
|
273
|
+
Use \`--compact\` flag for token-efficient output (e.g., \`ctt --compact list\`)
|
|
274
|
+
|
|
275
|
+
### Examples
|
|
276
|
+
\`\`\`bash
|
|
277
|
+
# Add a task with a description
|
|
278
|
+
ctt add "Implement user authentication" -d "Add JWT-based auth with login/logout endpoints"
|
|
279
|
+
|
|
280
|
+
# Add a task blocked by another with description
|
|
281
|
+
ctt add "Add password reset" -d "Email-based password reset flow" -b t1
|
|
282
|
+
\`\`\`
|
|
256
283
|
|
|
257
284
|
### Compact Format
|
|
258
285
|
- \`[O]\`/\`[P]\`/\`[C]\` = open/progress/completed
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-task-tracker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "CLI task tracker with dependency management for agentic code workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"ctt": "
|
|
7
|
+
"ctt": "dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
14
|
-
"build:binary": "npm run build && pkg dist/index.js --targets node20-macos-arm64,node20-
|
|
14
|
+
"build:binary": "npm run build && pkg dist/index.js --targets node20-macos-arm64,node20-linux-x64,node20-win-x64 --output bin/ctt",
|
|
15
15
|
"dev": "tsx src/index.ts",
|
|
16
16
|
"start": "node dist/index.js",
|
|
17
17
|
"prepublishOnly": "npm run build"
|