@getdonetoday/gdt 0.1.0-alpha.2 → 0.1.0-alpha.4
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 +20 -6
- package/dist/cli.js +765 -761
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -9,9 +9,23 @@ GDT is an **LLM-Native time management agent** that helps you manage tasks throu
|
|
|
9
9
|
- **Conversational Interface** - Describe tasks naturally, GDT understands your intent
|
|
10
10
|
- **Smart Task Decomposition** - Break down complex tasks into actionable steps with time estimates
|
|
11
11
|
- **Built-in GTD Workflow** - Capture, clarify, organize, reflect, engage - naturally practiced
|
|
12
|
+
- **Personalized Learning** - GDT learns your preferences and adapts over time
|
|
12
13
|
- **Local Data Storage** - Tasks stored via TaskWarrior, conversation history stays on your machine
|
|
13
14
|
- **Privacy First** - Disable or clear history anytime with `/privacy` commands
|
|
14
15
|
|
|
16
|
+
### Personalized Learning
|
|
17
|
+
|
|
18
|
+
GDT automatically learns from your actions to provide a more personalized experience:
|
|
19
|
+
|
|
20
|
+
| What GDT Learns | How It Learns | How It Helps |
|
|
21
|
+
|-----------------|---------------|--------------|
|
|
22
|
+
| **Time Estimation** | Tracks estimated vs actual task completion time | Adjusts future time estimates based on your patterns |
|
|
23
|
+
| **Task Granularity** | Detects feedback like "too detailed" or "too coarse" | Adapts task decomposition to your preferred level |
|
|
24
|
+
| **Frequent Projects** | Observes which projects you use most | Suggests relevant projects when creating tasks |
|
|
25
|
+
| **Common Tags** | Tracks tags you frequently apply | Auto-suggests tags based on your habits |
|
|
26
|
+
|
|
27
|
+
All learning happens locally and improves GDT's suggestions without sending data externally.
|
|
28
|
+
|
|
15
29
|
## Quick Start
|
|
16
30
|
|
|
17
31
|
### Prerequisites
|
|
@@ -38,7 +52,7 @@ sudo pacman -S task
|
|
|
38
52
|
### Install GDT
|
|
39
53
|
|
|
40
54
|
```bash
|
|
41
|
-
npm install -g gdt
|
|
55
|
+
npm install -g @getdonetoday/gdt
|
|
42
56
|
```
|
|
43
57
|
|
|
44
58
|
### Configure API Key
|
|
@@ -50,7 +64,7 @@ export ANTHROPIC_API_KEY=sk-ant-your-key-here
|
|
|
50
64
|
### Launch
|
|
51
65
|
|
|
52
66
|
```bash
|
|
53
|
-
|
|
67
|
+
getdone
|
|
54
68
|
```
|
|
55
69
|
|
|
56
70
|
## Usage
|
|
@@ -58,7 +72,7 @@ gdt
|
|
|
58
72
|
### Interactive Mode
|
|
59
73
|
|
|
60
74
|
```bash
|
|
61
|
-
|
|
75
|
+
getdone
|
|
62
76
|
```
|
|
63
77
|
|
|
64
78
|
Then just talk to GDT:
|
|
@@ -85,13 +99,13 @@ GDT: Here's a preparation plan:
|
|
|
85
99
|
|
|
86
100
|
```bash
|
|
87
101
|
# Add a task
|
|
88
|
-
|
|
102
|
+
getdone -p "Add task: finish report by Friday"
|
|
89
103
|
|
|
90
104
|
# View today's tasks
|
|
91
|
-
|
|
105
|
+
getdone -p "What do I need to do today"
|
|
92
106
|
|
|
93
107
|
# Break down a task
|
|
94
|
-
|
|
108
|
+
getdone -p "Help me break down 'learn Rust programming'"
|
|
95
109
|
```
|
|
96
110
|
|
|
97
111
|
### Commands
|