cli / mcp for bitbucket
1#!/usr/bin/env node
2import { Command } from 'commander';
3import { registerPrCommentCommand } from '../commands/pr-comment.command';
4import { registerPrCommentsCommand } from '../commands/pr-comments.command';
5import { registerPrCreateCommand } from '../commands/pr-create.command';
6import { registerPrListCommand } from '../commands/pr-list.command';
7import { registerPrUpdateCommand } from '../commands/pr-update.command';
8
9const program = new Command();
10
11program.name('bb').description('Bitbucket CLI for pull request management').version('1.0.0');
12
13registerPrListCommand(program);
14registerPrCreateCommand(program);
15registerPrUpdateCommand(program);
16registerPrCommentCommand(program);
17registerPrCommentsCommand(program);
18
19program.parse();