clack-prompts

Installation
SKILL.md

@clack/prompts

Build beautiful, minimal interactive CLI apps. Pre-styled, tree-shakeable, 80% smaller than alternatives.

Quick Start

npm install @clack/prompts
import { intro, outro, text, isCancel, cancel } from '@clack/prompts';

intro('create-my-app');

const name = await text({ message: 'Project name?' });
if (isCancel(name)) { cancel('Cancelled.'); process.exit(0); }
Installs
3
Repository
openlark/skills
GitHub Stars
4
First Seen
Aug 8, 2026
clack-prompts — openlark/skills