ai-context-commit-tools
Version:
AI context builder with automated commit message generation and changelog maintenance for enhanced AI-assisted development
18 lines (13 loc) • 491 B
JavaScript
/**
* Standalone AI changelog command for direct usage
*/
const { program } = require('commander');
const { changelogCommand } = require('../lib/commands/changelog');
program
.description('Generate or preview changelog')
.option('-p, --preview', 'Preview changes without writing to file')
.option('-f, --from <commit>', 'Generate from specific commit')
.option('-d, --debug', 'Enable debug output')
.action(changelogCommand);
program.parse(process.argv);