Skip to content

Instantly share code, notes, and snippets.

View actXc's full-sized avatar

Guido Hornig actXc

View GitHub Profile
@actXc
actXc / aider-convention-scraper
Created March 9, 2025 09:45 — forked from chr15m/aider-convention-scraper
Convert documentation URLs to Markdown "convention" files to be used by aider and other LLMs
#!/bin/sh
# Scrapes documentation from a URL and converts it to Markdown suitable for aider convention files
# to provide context to the LLM.
if [ $# -eq 0 ]; then
echo "Usage: $(basename "$0") <URL> [URL...]"
echo
echo "Generate aider 'convention' Markdown context from documentation URLs."
echo "suitable for providing LLM context about a project's conventions and style."