From ff148cf98fb46a77f45a47ea2aa3e85b1db4447f Mon Sep 17 00:00:00 2001 From: yusyus Date: Wed, 22 Oct 2025 21:51:45 +0300 Subject: [PATCH] Update documentation for new Ansible config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added ansible-core.json config to available presets list in: - README.md: Added to preset table and usage examples - CLAUDE.md: Added to production configs list with details Changes: - Total configs: 11 → 12 - New category: DevOps & Automation - Reorganized config list for better categorization Related: PR #147 --- CLAUDE.md | 11 +++++++---- README.md | 4 ++++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 57732be..83b45f5 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -568,28 +568,31 @@ The correct command uses the local `cli/package_skill.py` in the repository root | Enhancement (API) | 20-40 sec | Requires API key | | Packaging | 5-10 sec | Final zip | -## Available Production Configs (11 Total - All Verified Working) +## Available Production Configs (12 Total - All Verified Working) **Web Frameworks:** - ✅ `react.json` - React (article selector, 7,102 chars) - ✅ `vue.json` - Vue.js (main selector, 1,029 chars) - ✅ `astro.json` - Astro (article selector, 145 chars) - ✅ `django.json` - Django (article selector, 6,468 chars) -- ✅ `laravel.json` - Laravel 9.x (#main-content selector, 16,131 chars) **NEW!** +- ✅ `laravel.json` - Laravel 9.x (#main-content selector, 16,131 chars) - ✅ `fastapi.json` - FastAPI (article selector, 11,906 chars) +**DevOps & Automation:** +- ✅ `ansible-core.json` - Ansible Core 2.19 (div[role='main'] selector, ~32K chars) **NEW!** +- ✅ `kubernetes.json` - Kubernetes (main selector, 2,100 chars) + **Game Engines:** - ✅ `godot.json` - Godot (div[role='main'] selector, 1,688 chars) - ✅ `godot-large-example.json` - Godot large docs example **CSS & Utilities:** - ✅ `tailwind.json` - Tailwind CSS (div.prose selector, 195 chars) -- ✅ `kubernetes.json` - Kubernetes (main selector, 2,100 chars) **Gaming:** - ✅ `steam-economy-complete.json` - Steam Economy (div.documentation_bbcode, 588 chars) -**All configs tested and verified as of October 21, 2025** +**All configs tested and verified as of October 22, 2025** ## Additional Documentation diff --git a/README.md b/README.md index d37e19e..02d65ed 100644 --- a/README.md +++ b/README.md @@ -544,6 +544,7 @@ python3 cli/package_skill.py output/godot/ | `vue.json` | Vue.js | Progressive framework | | `django.json` | Django | Python web framework | | `fastapi.json` | FastAPI | Modern Python API | +| `ansible-core.json` | Ansible Core 2.19 | Automation & configuration | ### Using Presets @@ -562,6 +563,9 @@ python3 cli/doc_scraper.py --config configs/django.json # FastAPI python3 cli/doc_scraper.py --config configs/fastapi.json + +# Ansible +python3 cli/doc_scraper.py --config configs/ansible-core.json ``` ## 🎨 Creating Your Own Config