Skip to content

Commit 97a6d25

Browse files
Merge pull request #36 from chriscarrollsmith/35-change-name-of-cli-entrypoint-and-update-help-doc
Rename the CLI entrypoint to simply 'taskqueue'
2 parents f4d8222 + ec3c090 commit 97a6d25

17 files changed

+1310
-804
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Usually you will set the tool configuration in Claude Desktop, Cursor, or anothe
3030
To use the CLI utility, you can use the following command:
3131

3232
```bash
33-
npx task-manager-cli --help
33+
npx taskqueue --help
3434
```
3535

3636
This will show the available commands and options.
@@ -134,7 +134,7 @@ A typical workflow for an LLM using this task manager would be:
134134
Task approval is controlled exclusively by the human user through the CLI command:
135135

136136
```bash
137-
npx task-manager-cli approve-task -- <projectId> <taskId>
137+
npx taskqueue approve-task -- <projectId> <taskId>
138138
```
139139

140140
Options:
@@ -147,13 +147,13 @@ Note: Tasks must be marked as "done" with completed details before they can be a
147147
The CLI provides a command to list all projects and tasks:
148148

149149
```bash
150-
npx task-manager-cli list-tasks
150+
npx taskqueue list-tasks
151151
```
152152

153153
To view details of a specific project:
154154

155155
```bash
156-
npx task-manager-cli list-tasks -- -p <projectId>
156+
npx taskqueue list-tasks -- -p <projectId>
157157
```
158158

159159
This command displays information about all projects in the system or a specific project, including:

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ListToolsRequestSchema, CallToolRequestSchema } from "@modelcontextprot
1010
const server = new Server(
1111
{
1212
name: "task-manager-server",
13-
version: "1.2.0"
13+
version: "1.3.0"
1414
},
1515
{
1616
capabilities: {

0 commit comments

Comments
 (0)