CLI Reference
Install and requirements
Requires Node >= 18 on macOS and pnpm.
Install globally:
pnpm add -g @hungrimind/hungrimind-cli
Verify the install:
hungrimind --version
Basic usage
Get help:
hungrimind --helphungrimind flutter --help
Check the version:
hungrimind --version
Authentication
Log in with GitHub:
hungrimind login
This starts the GitHub device flow in your browser and stores the token at ~/.hungrimind/auth.json
.
Log out manually:
rm -f ~/.hungrimind/auth.json
Flutter
Create a new Flutter project:
hungrimind flutter create NAME
Use a lowercase, underscore-separated NAME
(for example, my_app
). Login is required. The command downloads and configures a Hungrimind Flutter Kit project.
Then run it:
cd NAMEflutter run
See the Flutter Kit Guided Tour for a walkthrough.