WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)

Update `README.md` with lessons from dogfooding.

markbennett.ca d432b773 091f5f95

verified
+5 -1
+5 -1
README.md
··· 182 182 183 183 ## Task Management 184 184 185 - 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. 185 + 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. 186 186 187 187 ## Development 188 188 ··· 213 213 214 214 ### Running Locally 215 215 216 + When running commands against the development version, use `npm run dev` with the `--` separator to pass arguments to the CLI: 217 + 216 218 ```bash 217 219 # Run the CLI in development mode 218 220 npm run dev -- --version 219 221 npm run dev -- --help 222 + npm run dev -- issue list 223 + npm run dev -- issue create "My issue title" --body "Issue body" 220 224 221 225 # Build and run the production version 222 226 npm run build