Claude-skill-registry-data man-config
Reads man pages to find configuration options. Use when the user asks to configure an application, needs to find a config option, or asks "how do I make X do Y" for a CLI tool or system program.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/man-config" ~/.claude/skills/majiayu000-claude-skill-registry-data-man-config && rm -rf "$T"
manifest:
data/man-config/SKILL.mdsource content
Man Page Configuration Helper
Instructions
- Identify the program or system being configured
- Read the relevant man page(s) using
orman <program>man <section> <program> - Search for the specific feature or option requested
- Find configuration file location and syntax
- Apply the configuration
Common man page sections
- User commandsman 1 <cmd>
- File formats and config files (e.g.,man 5 <config>
)man 5 sway
- Miscellaneous (conventions, protocols)man 7 <topic>
- System administration commandsman 8 <cmd>
Tips
- Many programs have both a command man page and a config file man page (e.g.,
andsway(1)
)sway(5) - Use
to search for relevant man pagesman -k <keyword> - Pipe man output through
to find specific optionsgrep - Check "SEE ALSO" section for related documentation