Git workflow commands for kodrdriv.
npm install @grunnverk/commands-gitimport * as Git from '@grunnverk/commands-git';
// Commit with AI-generated message
await Git.commit(config);
// Run precommit checks
await Git.precommit(config);
// Clean output directory
await Git.clean(config);
// Review changes and create issues
await Git.review(config);Creates AI-generated commit messages with optional agentic workflow:
- Analyzes staged changes (diff, log, file content)
- Generates conventional commit messages
- Supports commit splitting for large changes
- Interactive mode for editing
Runs precommit validation checks:
- Lint
- Build
- Test
- Smart caching to skip unchanged tests
Removes output/generated files.
Reviews code changes and creates GitHub issues:
- Analyzes diffs and commit history
- Creates structured issues from review notes
- Supports batch processing of review files
For AI agents and developers:
- Agentic Guide - Start here for AI-assisted development
Apache-2.0
TEST
TEST