help-text-formatter
SolidGenerate formatted help text with examples, descriptions, sections, and consistent styling for CLI applications.
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
chalk-styling-system
Create consistent chalk-based color and styling system for CLI output with themes, semantic colors, and formatting utilities.
1,160 Updated today
a5c-ai AI & Automation Solid
cli-table-formatter
Generate table formatters for structured CLI output with column alignment, borders, and responsive sizing.
1,160 Updated today
a5c-ai AI & Automation Listed
simple-formatter
Formats text according to specified style guidelines. A clean example skill with no security issues.
0 Updated today
shrav89 Code & Development Solid
simple-formatter
Formats text according to specified style guidelines. A clean example skill with no security issues.
183 Updated 1 months ago
majiayu000 Code & Development Listed
simple-formatter
Formats text according to specified style guidelines. A clean example skill with no security issues.
2,105 Updated 1 months ago
cisco-ai-defense