Skip to content

Rename the CLI entrypoint to simply 'taskqueue' #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Usually you will set the tool configuration in Claude Desktop, Cursor, or anothe
To use the CLI utility, you can use the following command:

```bash
npx task-manager-cli --help
npx taskqueue --help
```

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

```bash
npx task-manager-cli approve-task -- <projectId> <taskId>
npx taskqueue approve-task -- <projectId> <taskId>
```

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

```bash
npx task-manager-cli list-tasks
npx taskqueue list-tasks
```

To view details of a specific project:

```bash
npx task-manager-cli list-tasks -- -p <projectId>
npx taskqueue list-tasks -- -p <projectId>
```

This command displays information about all projects in the system or a specific project, including:
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ListToolsRequestSchema, CallToolRequestSchema } from "@modelcontextprot
const server = new Server(
{
name: "task-manager-server",
version: "1.2.0"
version: "1.3.0"
},
{
capabilities: {
Expand Down
Loading