help-text-formatter

Solid

Generate formatted help text with examples, descriptions, sections, and consistent styling for CLI applications.

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Help Text Formatter Generate formatted, user-friendly help text for CLI applications. ## Capabilities - Generate structured help text layouts - Create command examples with descriptions - Format options and arguments sections - Implement custom help formatters - Add color and styling support - Generate man page compatible output ## Usage Invoke this skill when you need to: - Create consistent help text formatting - Add examples to command help - Implement custom help renderers - Generate documentation from help text ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | language | string | Yes | Target language (typescript, python, go) | | commands | array | Yes | Command definitions with help text | | styling | object | No | Color and formatting options | ### Command Structure ```json { "commands": [ { "name": "deploy", "description": "Deploy application to target environment", "longDescription": "Deploy the application with optional configuration...", "arguments": [ { "name": "service", "description": "Service to deploy" } ], "options": [ { "flags": "-e, --env", "description": "Target environment" } ], "examples": [ { "command": "deploy api -e production", "description": "Deploy API to production" } ] } ] } ``` ## Generated Patterns ### TypeScript Help Formatter ```typescript import chalk from 'chalk'; interface HelpSectio...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills