Frontmatter
| id | 9048 |
| title | Feat: DevRank CLI Interactive Prompts (Inquirer) |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Feb 7, 2026, 11:34 PM |
| updatedAt | Feb 7, 2026, 11:39 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9048 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8930 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 7, 2026, 11:39 PM |
Feat: DevRank CLI Interactive Prompts (Inquirer)
tobiu added parent issue #8930 on Feb 7, 2026, 11:35 PM
tobiu assigned to @tobiu on Feb 7, 2026, 11:37 PM

tobiu
Feb 7, 2026, 11:39 PM
Input from Gemini 3 Pro:
✦ Enhanced the CLI with interactive prompts using
inquirer.Changes
- Updated
apps/devrank/services/Manager.mjs:
- Changed
.command('add <username>')to.command('add [username]')to make the argument optional.- Added logic to prompt for
usernameif it's missing when running the command.Verification
- Running
npm run devrank:addwithout arguments now prompts:? Enter GitHub username to add:instead of failing.Code committed to
devbranch.
tobiu closed this issue on Feb 7, 2026, 11:39 PM
Enhance the DevRank CLI to support interactive prompts when mandatory arguments are missing.
Current Behavior: Running
npm run devrank:addfails immediately because theusernameargument is mandatory in the CLI definition (add <username>).Desired Behavior: Running
npm run devrank:addwithout arguments should trigger an interactive prompt:? Enter GitHub username to add:Changes:
apps/devrank/services/Manager.mjs:.command('add <username>')to.command('add [username]')to make the argument optional.inquirer.usernameis undefined.inquirer.promptto ask the user for it.runAdd.Reference: This pattern is already used in
buildScripts/build/all.mjs.