taskflow-agent 0.2.0__tar.gz → 0.2.1__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taskflow-agent
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Lightweight project and task manager with MCP tools for Claude Code
5
5
  Project-URL: Repository, https://github.com/henrysouchien/taskflow-agent
6
6
  Author: Henry Chien
@@ -27,14 +27,19 @@ Description-Content-Type: text/markdown
27
27
 
28
28
  Lightweight project and task manager with MCP tools for Claude Code.
29
29
 
30
- SQLite backend, 20 MCP tools, web UI with embedded AI chat, and a FastAPI REST API. Built as a self-hosted Asana replacement optimized for AI-assisted workflows.
30
+ SQLite backend, 23+ MCP tools, web UI with embedded AI chat, and a FastAPI REST API. Built as a self-hosted Asana replacement optimized for AI-assisted workflows.
31
31
 
32
32
  ## Features
33
33
 
34
- - **20 MCP tools** — full project/task CRUD, search, views, service lifecycle management
34
+ - **23+ MCP tools** — projects, tasks, sections, goals, daily focus, search, views, repo integration, service lifecycle
35
35
  - **Web UI** — dark-theme SPA with project boards, task details, inline editing
36
- - **AI chat** — embedded Claude chat with workspace awareness and tool access
36
+ - **AI chat** — embedded Claude chat with workspace awareness, tool access, and persistent memory
37
+ - **Daily focus** — Today view with goals, focus list, and AI-assisted daily planning
38
+ - **Goals** — timeframe-scoped goals (day/week/month/quarter) that guide daily prioritization
39
+ - **Agent memory** — persistent context across chat sessions (preferences, decisions, patterns)
40
+ - **Repo integration** — read-only git status, recent commits, and TODOs across connected repos
37
41
  - **FTS search** — full-text search across task names and notes
42
+ - **Server-side chat storage** — chat history persisted in SQLite with compaction
38
43
  - **Asana import** — bulk import from Asana CSV exports
39
44
  - **Service management** — start/stop the web server via MCP tools or Makefile
40
45
 
@@ -68,6 +73,7 @@ taskflow-web # via CLI
68
73
  | `tf_create_section` | Add a section to a project |
69
74
  | `tf_update_section` | Update section fields |
70
75
  | `tf_move_section` | Reorder a section |
76
+ | `tf_delete_section` | Delete a section (tasks moved to Ungrouped) |
71
77
 
72
78
  ### Tasks
73
79
  | Tool | Description |
@@ -81,12 +87,34 @@ taskflow-web # via CLI
81
87
  | `tf_move_task` | Move task between projects/sections |
82
88
  | `tf_delete_task` | Delete a task |
83
89
 
90
+ ### Goals & Daily Focus
91
+ | Tool | Description |
92
+ |------|-------------|
93
+ | `tf_create_goal` | Create a goal (day/week/month/quarter) |
94
+ | `tf_update_goal` | Update goal fields |
95
+ | `tf_goal_list` | List active goals |
96
+ | `tf_goal_complete` | Mark a goal complete |
97
+ | `tf_goal_reopen` | Reopen a goal |
98
+ | `tf_goal_remove` | Remove a goal |
99
+ | `tf_today` | Show today's focus list and goals |
100
+ | `tf_focus` | Pin a task to today's focus |
101
+ | `tf_unfocus` | Remove a task from today's focus |
102
+ | `tf_move_focus` | Reorder focus list |
103
+
84
104
  ### Search & Views
85
105
  | Tool | Description |
86
106
  |------|-------------|
87
107
  | `tf_search` | Full-text search across tasks |
88
108
  | `tf_due_soon` | Tasks due within N days |
89
109
  | `tf_overdue` | All overdue tasks |
110
+ | `tf_active` | Top tasks from each active project |
111
+ | `tf_backlog` | Open tasks in the general backlog |
112
+
113
+ ### Repo Integration
114
+ | Tool | Description |
115
+ |------|-------------|
116
+ | `tf_repo_list` | List connected git repos |
117
+ | `tf_repo_status` | Git status, commits, and TODOs for a repo |
90
118
 
91
119
  ### Service Lifecycle
92
120
  | Tool | Description |
@@ -127,7 +155,7 @@ Or manage via MCP tools from Claude Code — ask Claude to "start the taskflow s
127
155
 
128
156
  ## Database
129
157
 
130
- SQLite with WAL mode. Tables: `projects`, `sections`, `tasks`, `tags`, `task_tags`, `tasks_fts` (FTS5).
158
+ SQLite with WAL mode. Tables: `projects`, `sections`, `tasks`, `tags`, `task_tags`, `tasks_fts` (FTS5), `goals`, `today_focus`, `chat_messages`.
131
159
 
132
160
  Database is created automatically on first run via `db.init_db()`.
133
161
 
@@ -2,14 +2,19 @@
2
2
 
3
3
  Lightweight project and task manager with MCP tools for Claude Code.
4
4
 
5
- SQLite backend, 20 MCP tools, web UI with embedded AI chat, and a FastAPI REST API. Built as a self-hosted Asana replacement optimized for AI-assisted workflows.
5
+ SQLite backend, 23+ MCP tools, web UI with embedded AI chat, and a FastAPI REST API. Built as a self-hosted Asana replacement optimized for AI-assisted workflows.
6
6
 
7
7
  ## Features
8
8
 
9
- - **20 MCP tools** — full project/task CRUD, search, views, service lifecycle management
9
+ - **23+ MCP tools** — projects, tasks, sections, goals, daily focus, search, views, repo integration, service lifecycle
10
10
  - **Web UI** — dark-theme SPA with project boards, task details, inline editing
11
- - **AI chat** — embedded Claude chat with workspace awareness and tool access
11
+ - **AI chat** — embedded Claude chat with workspace awareness, tool access, and persistent memory
12
+ - **Daily focus** — Today view with goals, focus list, and AI-assisted daily planning
13
+ - **Goals** — timeframe-scoped goals (day/week/month/quarter) that guide daily prioritization
14
+ - **Agent memory** — persistent context across chat sessions (preferences, decisions, patterns)
15
+ - **Repo integration** — read-only git status, recent commits, and TODOs across connected repos
12
16
  - **FTS search** — full-text search across task names and notes
17
+ - **Server-side chat storage** — chat history persisted in SQLite with compaction
13
18
  - **Asana import** — bulk import from Asana CSV exports
14
19
  - **Service management** — start/stop the web server via MCP tools or Makefile
15
20
 
@@ -43,6 +48,7 @@ taskflow-web # via CLI
43
48
  | `tf_create_section` | Add a section to a project |
44
49
  | `tf_update_section` | Update section fields |
45
50
  | `tf_move_section` | Reorder a section |
51
+ | `tf_delete_section` | Delete a section (tasks moved to Ungrouped) |
46
52
 
47
53
  ### Tasks
48
54
  | Tool | Description |
@@ -56,12 +62,34 @@ taskflow-web # via CLI
56
62
  | `tf_move_task` | Move task between projects/sections |
57
63
  | `tf_delete_task` | Delete a task |
58
64
 
65
+ ### Goals & Daily Focus
66
+ | Tool | Description |
67
+ |------|-------------|
68
+ | `tf_create_goal` | Create a goal (day/week/month/quarter) |
69
+ | `tf_update_goal` | Update goal fields |
70
+ | `tf_goal_list` | List active goals |
71
+ | `tf_goal_complete` | Mark a goal complete |
72
+ | `tf_goal_reopen` | Reopen a goal |
73
+ | `tf_goal_remove` | Remove a goal |
74
+ | `tf_today` | Show today's focus list and goals |
75
+ | `tf_focus` | Pin a task to today's focus |
76
+ | `tf_unfocus` | Remove a task from today's focus |
77
+ | `tf_move_focus` | Reorder focus list |
78
+
59
79
  ### Search & Views
60
80
  | Tool | Description |
61
81
  |------|-------------|
62
82
  | `tf_search` | Full-text search across tasks |
63
83
  | `tf_due_soon` | Tasks due within N days |
64
84
  | `tf_overdue` | All overdue tasks |
85
+ | `tf_active` | Top tasks from each active project |
86
+ | `tf_backlog` | Open tasks in the general backlog |
87
+
88
+ ### Repo Integration
89
+ | Tool | Description |
90
+ |------|-------------|
91
+ | `tf_repo_list` | List connected git repos |
92
+ | `tf_repo_status` | Git status, commits, and TODOs for a repo |
65
93
 
66
94
  ### Service Lifecycle
67
95
  | Tool | Description |
@@ -102,7 +130,7 @@ Or manage via MCP tools from Claude Code — ask Claude to "start the taskflow s
102
130
 
103
131
  ## Database
104
132
 
105
- SQLite with WAL mode. Tables: `projects`, `sections`, `tasks`, `tags`, `task_tags`, `tasks_fts` (FTS5).
133
+ SQLite with WAL mode. Tables: `projects`, `sections`, `tasks`, `tags`, `task_tags`, `tasks_fts` (FTS5), `goals`, `today_focus`, `chat_messages`.
106
134
 
107
135
  Database is created automatically on first run via `db.init_db()`.
108
136
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "taskflow-agent"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Lightweight project and task manager with MCP tools for Claude Code"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes
File without changes