@getdonetoday/gdt 0.1.0-alpha.3 → 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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -64,7 +64,7 @@ export ANTHROPIC_API_KEY=sk-ant-your-key-here
64
64
  ### Launch
65
65
 
66
66
  ```bash
67
- gdt
67
+ getdone
68
68
  ```
69
69
 
70
70
  ## Usage
@@ -72,7 +72,7 @@ gdt
72
72
  ### Interactive Mode
73
73
 
74
74
  ```bash
75
- gdt
75
+ getdone
76
76
  ```
77
77
 
78
78
  Then just talk to GDT:
@@ -99,13 +99,13 @@ GDT: Here's a preparation plan:
99
99
 
100
100
  ```bash
101
101
  # Add a task
102
- gdt -p "Add task: finish report by Friday"
102
+ getdone -p "Add task: finish report by Friday"
103
103
 
104
104
  # View today's tasks
105
- gdt -p "What do I need to do today"
105
+ getdone -p "What do I need to do today"
106
106
 
107
107
  # Break down a task
108
- gdt -p "Help me break down 'learn Rust programming'"
108
+ getdone -p "Help me break down 'learn Rust programming'"
109
109
  ```
110
110
 
111
111
  ### Commands
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@getdonetoday/gdt",
3
- "version": "0.1.0-alpha.3",
3
+ "version": "0.1.0-alpha.4",
4
4
  "description": "GDT - Get Done Today - LLM-Native time management agent",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",
7
7
  "bin": {
8
- "gdt": "dist/cli.js"
8
+ "getdone": "dist/cli.js"
9
9
  },
10
10
  "files": [
11
11
  "dist/cli.js",