Use this skill when the user needs to search manual page names and descriptions for keywords.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-76eb3377)More formats (shields.io, HTML) on the badges page.
---
name: apropos
description: Use this skill when the user needs to search manual page names and descriptions for keywords.
---
# apropos Plugin
Search the manual page names and descriptions for keywords. Essential for finding the right command when you can't remember its name.
## Commands
### Search
- `apropos search keyword <keyword>` — Search man pages for a keyword
- `apropos self version` — Show apropos version info
- `apropos _ _ <args>` — Passthrough to apropos CLI
## Usage Examples
- "Find all commands related to compression"
- "Search for commands that deal with encryption"
- "List all commands in section 8 (system administration)"
## Installation
```bash
# Pre-installed on most Linux systems
# If missing:
apt-get install man-db
supercli plugins install ./plugins/apropos --on-conflict replace --json
```
## Examples
```bash
# Basic keyword search
apropos compression
# Exact match
apropos --exact compression
# Regex search
apropos --regex "^git.*"
# Search only section 1 (user commands)
apropos --section 1 compression
# Search with shell wildcards
apropos --wildcard "git-*"
# Show full output without trimming
apropos --long compression
```
## Key Features
- Search man page names and descriptions by keyword
- Regex and wildcard support for flexible matching
- Filter by manual section
- Exact match mode for precise lookups
- Long output mode to see full descriptions
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!