Documentation
Use this page as the fast path to start using the `issue.md` CLI in your repository.
1) Initialize your repository
npm install
npm run build2) Create and update issues
npm run cli -- issue create --title "My first issue" --repo issues
npm run cli -- issue update --id 0001 --status in-progress --repo issues
npm run cli -- issue list --repo issues3) Add comments
npm run cli -- comment add --issue-id 0001 --body "Starting implementation" --repo issues
npm run cli -- comment list --issue-id 0001 --repo issues