ora-spinner-integration
Integrate ora spinners with consistent styling, promise handling, and status updates for CLI progress feedback.
npx skills add a5c-ai/babysitter --skill ora-spinner-integration --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Ora Spinner Integration Integrate ora spinners for consistent CLI progress feedback. ## Capabilities - Configure ora spinner styling - Create promise-based spinners - Set up spinner sequences - Implement status transitions - Create custom spinner types - Generate spinner utilities ## Usage Invoke this skill when you need to: - Add loading indicators to CLI - Show progress during async operations - Create consistent spinner styling - Implement status transitions ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | language | string | Yes | Target language (typescript, javascript) | | style | object | No | Spinner styling options | | spinners | array | No | Custom spinner definitions | ## Generated Patterns ### TypeScript Spinner Utilities ```typescript import ora, { Ora, Options } from 'ora'; import chalk from 'chalk'; // Spinner configuration const defaultOptions: Options = { color: 'cyan', spinner: 'dots', prefixText: '', }; // Create spinner with consistent styling export function createSpinner(text: string, options?: Partial<Options>): Ora { return ora({ ...defaultOptions, ...options, text, }); } // Spinner with promise export
- Capabilities
- Usage
- Inputs
- Generated Patterns
- TypeScript Spinner Utilities
- Usage Examples
- Dependencies
- Target Processes
What does the ora-spinner-integration skill do?
Integrate ora spinners with consistent styling, promise handling, and status updates for CLI progress feedback.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill ora-spinner-integration --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.
