···182182183183## Task Management
184184185185-We're bootstrapping task tracking with TODO.md, but will migrate all tasks into Tangled issues and dog food the product as soon as we have basic issue creation and listing working.
185185+Tasks are tracked in the [Tangled issue tracker](https://tangled.org/markbennett.ca/tangled-cli/issues). Use `tangled issue list` or `tangled issue view <n>` to browse tasks.
186186187187## Development
188188···213213214214### Running Locally
215215216216+When running commands against the development version, use `npm run dev` with the `--` separator to pass arguments to the CLI:
217217+216218```bash
217219# Run the CLI in development mode
218220npm run dev -- --version
219221npm run dev -- --help
222222+npm run dev -- issue list
223223+npm run dev -- issue create "My issue title" --body "Issue body"
220224221225# Build and run the production version
222226npm run build