taskman-mcp 0.1.1 → 0.1.2

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 +63 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,63 @@
1
+ # Taskman
2
+
3
+ AI-powered task and project manager by Agentics.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g @agentics/taskman
9
+ npm install -g @agentics/taskman-mcp
10
+ ```
11
+
12
+ Or with yarn:
13
+
14
+ ```bash
15
+ yarn global add @agentics/taskman
16
+ yarn global add @agentics/taskman-mcp
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ taskman
23
+ ```
24
+
25
+ On first launch, you'll be prompted to login or register an Agentics account.
26
+
27
+ ## Features
28
+
29
+ - **Task Management** - Create, edit, and track tasks with due dates and reminders
30
+ - **IdeaDB** - Capture and organize ideas before they escape
31
+ - **Subtasks** - Break down tasks into smaller actionable items
32
+ - **AI Integration** - Get AI assistance to expand, reword, or analyze your content
33
+ - **Notifications** - Background daemon for reminder notifications
34
+ - **Cross-Platform** - Works on macOS, Linux, and Windows
35
+
36
+ ## Keyboard Shortcuts
37
+
38
+ ### Navigation
39
+ - `j/k` or `↑/↓` - Navigate up/down
40
+ - `Enter` or `Space` - Select/toggle
41
+ - `Esc` - Go back
42
+ - `q` - Quit
43
+
44
+ ### Tasks
45
+ - `n` - New task
46
+ - `e` - Edit task
47
+ - `d` - Delete task
48
+ - `s` - View subtasks
49
+ - `p` - Cycle status (pending → in progress → completed)
50
+
51
+ ### Editing
52
+ - `Tab` - Next field
53
+ - `Ctrl+S` - Save
54
+ - `Ctrl+E` - Open in external editor
55
+ - `Ctrl+A` - AI assistant
56
+
57
+ ## Authentication
58
+
59
+ Taskman uses your Agentics account for AI features. Credentials are stored securely in `~/.agentics/credentials.json`.
60
+
61
+ ## License
62
+
63
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskman-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server for taskman task and idea management",
5
5
  "type": "module",
6
6
  "main": "app.js",