diff --git a/.github/scripts/generate_helpers_cache.py b/.github/scripts/generate_helpers_cache.py index c142530..834d3a1 100644 --- a/.github/scripts/generate_helpers_cache.py +++ b/.github/scripts/generate_helpers_cache.py @@ -33,6 +33,7 @@ for item in data: full_script_url = f"{SCRIPT_BASE}/{script}" cache.append({ + "name": name, "slug": slug, "desc": desc, "script": script, @@ -44,4 +45,4 @@ for item in data: with open(OUTPUT_FILE, "w", encoding="utf-8") as f: json.dump(cache, f, indent=2) -print(f"✅ helpers_cache.json created at {OUTPUT_FILE} with {len(cache)} valid scripts.") \ No newline at end of file +print(f"✅ helpers_cache.json created at {OUTPUT_FILE} with {len(cache)} valid scripts.")