Agent skill · AI & Agents

inquirer-prompt-generator

Generate interactive command-line prompts using Inquirer.js with validation, conditional logic, and custom renderers. Creates user-friendly input collection flows for CLI applications.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill inquirer-prompt-generator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBashGlobGrep
Path: library/specializations/cli-mcp-development/skills/inquirer-prompt-generator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Inquirer Prompt Generator Generate interactive CLI prompts using Inquirer.js with comprehensive validation, conditional flows, and custom formatting. ## Capabilities - Generate Inquirer.js prompt definitions - Create multi-step wizard flows - Implement input validation - Support conditional prompts - Generate TypeScript interfaces for answers - Create custom prompt formatters ## Usage Invoke this skill when you need to: - Create interactive CLI input collection - Build configuration wizards - Implement user confirmation flows - Generate form-like CLI interfaces ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | flowName | string | Yes | Name of the prompt flow | | prompts | array | Yes | List of prompt definitions | | typescript | boolean | No | Generate TypeScript types (default: true) | | validation | boolean | No | Include validation helpers (default: true) | ### Prompt Definition Structure ```json { "prompts": [ { "type": "input", "name": "projectName", "message": "What is your project name?", "default": "my-project", "validate": { "required": true, "pattern": "^[a-z][a-z0-9-]*$", "message": "Project name must be lowercase

What's inside
Steps it walks through
  1. Capabilities
  2. Usage
  3. Inputs
  4. Prompt Definition Structure
  5. Output Structure
  6. Generated Code Patterns
  7. Prompt Flow (index.ts)
  8. TypeScript Types (types.ts)
  9. Validators (validators.ts)
  10. Custom Formatters (formatters.ts)
  11. Prompt Types
  12. Validation Patterns
  13. Required Field
  14. Pattern Matching
Ships with 1 file
  • README.md
More from babysitter
All skills →
About this skill
What does the inquirer-prompt-generator skill do?

Generate interactive command-line prompts using Inquirer.js with validation, conditional logic, and custom renderers. Creates user-friendly input collection flows for CLI applications.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill inquirer-prompt-generator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going