A collection of powerful AI Agent skills to enhance your workflow.
automates the "Factory Reset" process for Google Cloud Platform accounts.
- Location:
skills/gcp_factory_reset - Features:
- Wipes all cloud projects
- Checks billing status
- Cleans local credentials
- Usage: Load the
SKILL.mdfile or install via marketplace:/plugin install gcp-factory-reset@sunbo-agent-skills
Convert HTML files to clean Markdown format with intelligent preprocessing.
- Location:
skills/html2md
Convert HTML files to clean Markdown format with intelligent preprocessing.
- Dual Engine Support: Uses markdownify or html2text (auto-fallback)
- Incremental Conversion: Only converts files that have changed
- Batch Processing: Recursively process entire directories
- HTML Cleaning: Removes scripts, styles, comments automatically
- Auto Title Extraction: Extracts
<title>as H1 heading - Encoding Detection: Handles CJK and other encodings
- Multiple Presets: default, compact, strict modes
- Dry Run Mode: Preview conversions before executing
# Add plugin marketplace
/plugin marketplace add sunbos/sunbo-skills
# Install plugin
/plugin install html2md@sunbo-agent-skillsThen restart Claude Code.
Install at least one conversion engine before using:
pip3.13 install markdownify html2text --break-system-packagesxcrun python3 -m pip install markdownify html2text --userpip install markdownify html2textAfter installation, ask Claude Code to convert HTML files:
- "Convert the HTML files in ./docs to Markdown"
- "Batch convert this website folder to Markdown"
- "Convert my SingleFile saved pages to Markdown"
Or use the script directly:
# Basic usage
python3 "${PLUGIN_DIR}/skills/html2md/scripts/html2md.py" ./docs
# With options
python3 "${PLUGIN_DIR}/skills/html2md/scripts/html2md.py" ./website -r -o ./output --preset compact| Option | Description |
|---|---|
-o, --output |
Output directory |
-r, --recursive |
Process subdirectories |
-f, --force |
Force reconversion |
--engine |
auto, markdownify, or html2text |
--preset |
default, compact, or strict |
--aggressive |
Remove more HTML elements |
--dry-run |
Preview only |
MIT