depth-first-thinking 1.0.2 → 1.0.3

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 (3) hide show
  1. package/README.md +21 -8
  2. package/dist/dft +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,14 +10,27 @@ bun add -g depth-first-thinking
10
10
 
11
11
  ## Commands
12
12
 
13
- | Command | Description |
14
- |---------|-------------|
15
- | `dft new <name>` | Create a new project |
16
- | `dft list` | List all projects |
17
- | `dft open <name>` | Open project in TUI |
18
- | `dft <name>` | Shorthand for `dft open <name>` |
19
- | `dft tree <name>` | Print tree structure |
20
- | `dft delete <name>` | Delete a project |
13
+ | Command | Aliases | Description |
14
+ |---------|---------|-------------|
15
+ | `dft new <name>` | `create`, `init`, `add` | Create a new project |
16
+ | `dft list` | `ls`, `show`, `projects` | List all projects sorted by creation date |
17
+ | `dft open <name>` | `use`, `start`, `run` | Launch the interactive TUI session |
18
+ | `dft <name>` | - | Shorthand for `dft open <name>` |
19
+ | `dft tree <name>` | `view` | Print the tree structure to stdout |
20
+ | `dft delete <name>` | `rm`, `remove` | Delete an existing project |
21
+ | `dft update` | `upgrade`, `check-update` | Check for updates to dft |
22
+
23
+ ### Options
24
+
25
+ - `dft delete <name> --yes` - Skip confirmation prompt when deleting
26
+ - `dft tree <name> --show-status` - Show status markers (default: true)
27
+ - `dft tree <name> --no-status` - Hide status markers
28
+
29
+ ### Default Behavior
30
+
31
+ Running `dft` without any arguments will:
32
+ - Open the most frequently opened project if one exists
33
+ - Otherwise, list all projects
21
34
 
22
35
  ## Navigation
23
36
 
package/dist/dft CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "depth-first-thinking",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A terminal-based task manager with depth-first navigation. Break down tasks into subtasks, navigate recursively, and track progress.",
5
5
  "keywords": [
6
6
  "cli",