fix: replace todo with mime-todo in all CLI references

This commit is contained in:
Tiara Rodney 2026-03-22 01:42:32 +01:00
parent e1da550c0a
commit f002922ab8
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
2 changed files with 34 additions and 34 deletions

View file

@ -50,35 +50,35 @@ transition commits manually.
```sh
# Create an issue (must be on develop)
todo create --type feature --title "Title" --plan "Description"
mime-todo create --type feature --title "Title" --plan "Description"
# Start work (must be on develop)
todo start <id> --acceptance-criteria "What must be true for this to be done"
mime-todo start <id> --acceptance-criteria "What must be true for this to be done"
# Then create the branch: git checkout -b <type>/<id>
# Complete work (must be on <type>/<id>)
todo done <id> --acceptance "What was delivered against the criteria"
mime-todo done <id> --acceptance "What was delivered against the criteria"
# Hold or cancel
todo hold <id> --reason "Why"
todo cancel <id> --reason "Why"
mime-todo hold <id> --reason "Why"
mime-todo cancel <id> --reason "Why"
```
### Querying
```sh
todo list # list all issues
todo show <id> # show issue details
todo sprints # list sprints
todo issues-in-sprint <name> # issues in a sprint
mime-todo list # list all issues
mime-todo show <id> # show issue details
mime-todo sprints # list sprints
mime-todo issues-in-sprint <name> # issues in a sprint
```
### Bugzilla Integration
```sh
todo init # check products/components exist
todo push # push commits to Bugzilla
todo push --dry-run # preview
mime-todo init # check products/components exist
mime-todo push # push commits to Bugzilla
mime-todo push --dry-run # preview
```
### What Agents MUST NOT Do
@ -86,7 +86,7 @@ todo push --dry-run # preview
- Edit the `TODO` file directly.
- Construct `todo(<ID>): <status>` commits manually.
- Modify issue fields other than `Status` (and only via the CLI).
- Push to Bugzilla outside of `todo push`.
- Push to Bugzilla outside of `mime-todo push`.
- Modify the specification files.
## Rules for Agents