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: docs/built-in-tools.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,19 +110,19 @@ Opens the browser to a pre-filled GitHub issue template to report chat issues, b
110
110
111
111
This tool has no configuration options.
112
112
113
-
## Knowledge Tool
113
+
## Knowledge Tool (experimental)
114
114
115
115
Store and retrieve information in a knowledge base across chat sessions. Provides semantic search capabilities for files, directories, and text content.
116
116
117
117
This tool has no configuration options.
118
118
119
-
## Thinking Tool
119
+
## Thinking Tool (experimental)
120
120
121
121
An internal reasoning mechanism that improves the quality of complex tasks by breaking them down into atomic actions.
122
122
123
123
This tool has no configuration options.
124
124
125
-
## Todo_list Tool
125
+
## TODO List Tool (experimental)
126
126
127
127
Create and manage TODO lists for tracking multi-step tasks. Lists are stored locally in `.amazonq/cli-todo-lists/`.
Copy file name to clipboardExpand all lines: docs/experiments.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,28 @@ Amazon Q CLI includes experimental features that can be toggled on/off using the
58
58
59
59
**When enabled:** Use `/tangent` or the keyboard shortcut to create a checkpoint and explore tangential topics. Use the same command to return to your main conversation.
60
60
61
+
### TODO Lists
62
+
**Tool name**: `todo_list`
63
+
**Command:**`/todos`
64
+
**Description:** Enables Q to create and modify TODO lists using the `todo_list` tool and the user to view and manage existing TODO lists using `/todos`.
65
+
66
+
**Features:**
67
+
- Q will automatically make TODO lists when appropriate or when asked
68
+
- View, manage, and delete TODOs using `/todos`
69
+
- Resume existing TODO lists stored in `.amazonq/cli-todo-lists`
70
+
71
+
**Usage:**
72
+
```
73
+
/todos clear-finished # Delete completed TODOs in your working directory
74
+
/todos resume # Select and resume an existing TODO list
75
+
/todos view # Select and view and existing TODO list
76
+
/todos delete # Select and delete an existing TODO list
77
+
```
78
+
79
+
**Settings:**
80
+
-`chat.enableTodoList` - Enable/disable TODO list functionality (boolean)
81
+
82
+
61
83
## Managing Experiments
62
84
63
85
Use the `/experiment` command to toggle experimental features:
@@ -84,11 +106,13 @@ These features are provided to gather feedback and test new capabilities. Please
84
106
All experimental commands are available in the fuzzy search (Ctrl+S):
85
107
-`/experiment` - Manage experimental features
86
108
-`/knowledge` - Knowledge base commands (when enabled)
109
+
-`/todos` - User-controlled TODO list commands (when enabled)
87
110
88
111
## Settings Integration
89
112
90
113
Experiments are stored as settings and persist across sessions:
91
114
-`EnabledKnowledge` - Knowledge experiment state
92
115
-`EnabledThinking` - Thinking experiment state
116
+
-`EnabledTodoList` - TODO list experiment state
93
117
94
118
You can also manage these through the settings system if needed.
0 commit comments