You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+47-24Lines changed: 47 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,44 +1,56 @@
1
1
# Smart Tasker
2
2
3
-
Smart Tasker is a command-line task tracker built with Rust. It lets you add, list, complete, and delete tasks directly from the terminal. All tasks are stored in a local JSON file (`data/tasks.json`), so there is no need for a database or external setup.
Smart Tasker is a fast, lightweight command-line task tracker written in Rust. It lets you add, list, complete, and delete tasks directly from the terminal. All tasks are saved locally in a JSON file (`data/tasks.json`) — no database or external setup required.
6
+
7
+
---
8
+
9
+
## Install via Cargo
10
+
11
+
```bash
12
+
cargo install smart-tasker
13
+
```
14
+
15
+
Once installed, use it globally:
16
+
17
+
```bash
18
+
smart-tasker add "Write documentation"
19
+
smart-tasker list
20
+
smart-tasker complete 2
21
+
smart-tasker delete 1
22
+
```
23
+
24
+
---
4
25
5
26
## Features
6
27
7
28
- Add new tasks from the command line
8
29
- List all tasks with their completion status
9
30
- Mark tasks as completed
10
31
- Delete tasks by ID
11
-
- Simple and fast local storage using JSON
32
+
- Simple local JSON storage
33
+
34
+
---
12
35
13
36
## Requirements
14
37
15
-
- Rust and Cargo installed
16
-
(Install from https://www.rust-lang.org/tools/install)
38
+
-[Rust and Cargo](https://www.rust-lang.org/tools/install)
0 commit comments