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! :)

Register issue command in CLI

- Import and register createIssueCommand in main CLI index
- Makes 'tangled issue create' command available to users

The issue command is now fully functional and ready for testing.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>

markbennett.ca 9cb935b9 d9492c15

verified
+2
+2
src/index.ts
··· 6 6 import { createAuthCommand } from './commands/auth.js'; 7 7 import { createConfigCommand } from './commands/config.js'; 8 8 import { createContextCommand } from './commands/context.js'; 9 + import { createIssueCommand } from './commands/issue.js'; 9 10 import { createSshKeyCommand } from './commands/ssh-key.js'; 10 11 11 12 // Get package.json for version ··· 25 26 program.addCommand(createSshKeyCommand()); 26 27 program.addCommand(createConfigCommand()); 27 28 program.addCommand(createContextCommand()); 29 + program.addCommand(createIssueCommand()); 28 30 29 31 program.parse(process.argv);