Command Reference
noidea offers several commands to enhance your Git workflow. This page provides an overview of all available commands.
Available Commands
Command | Description |
---|---|
init |
Set up noidea in your Git repository |
suggest |
Generate commit message suggestions based on staged changes |
moai |
Display feedback about your most recent commit |
summary |
Generate a summary of your recent Git activity |
config |
Manage noidea configuration |
Getting Help
For any command, you can use the --help
flag to see available options:
Common Options
These options are available for most commands:
Option | Description |
---|---|
--version , -v |
Show version information |
--help , -h |
Show help for a command |
Detailed Command Documentation
Each command has its own detailed documentation page:
init
- Setup noidea in your repositorysuggest
- Generate commit message suggestionsmoai
- Get feedback on your commitssummary
- Analyze your Git historyconfig
- Configure noidea
Examples
Here are some common usage examples:
Setting up noidea
Getting commit suggestions
# Get a commit message suggestion
noidea suggest
# Pipe the suggestion directly to commit
noidea suggest | git commit -F-
Getting Moai feedback
# Get feedback on your last commit
noidea moai
# Use AI-powered feedback with a specific personality
noidea moai --ai --personality supportive_mentor