mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-13 09:01:54 +00:00
Product rename across every surface: module/file names (blueprint_catalog, tools/blueprints, blueprint_cmd), slash command /cron-recipe -> /blueprint (alias /bp), dashboard API /api/cron/blueprints, desktop deep-link hermes://blueprint/<key>, docs catalog page + extract script, and the skill frontmatter block metadata.hermes.blueprint. No behavior change.
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
#!/usr/bin/env python3
|
|
"""Generate the Automation Blueprints catalog JSON for the docs site.
|
|
|
|
Mirrors ``extract-skills.py``: imports the single-source-of-truth blueprint
|
|
definitions from ``cron/blueprint_catalog.py`` and emits a flat JSON array the
|
|
docs page renders into cards (description, schedule, copy-paste slash command,
|
|
and a ``hermes://`` "Send to App" deep-link).
|
|
|
|
Output: ``website/static/api/automation-blueprints-index.json`` (served at
|
|
``/docs/api/automation-blueprints-index.json``). Run automatically by
|
|
``website/scripts/prebuild.mjs`` before ``npm start`` / ``npm run build``.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# Repo root = two levels up from website/scripts/.
|
|
REPO_ROOT = Path(__file__).resolve().parents[2]
|
|
sys.path.insert(0, str(REPO_ROOT))
|
|
|
|
OUTPUT = REPO_ROOT / "website" / "static" / "api" / "automation-blueprints-index.json"
|
|
|
|
|
|
def build_index() -> list:
|
|
from cron.blueprint_catalog import CATALOG, blueprint_catalog_entry
|
|
|
|
return [blueprint_catalog_entry(r) for r in CATALOG]
|
|
|
|
|
|
def main() -> int:
|
|
try:
|
|
index = build_index()
|
|
except Exception as e: # pragma: no cover - import/build failure
|
|
# Match extract-skills.py's resilience: write an empty array so the
|
|
# docs build never hard-fails on a generator hiccup.
|
|
sys.stderr.write(f"extract-automation-blueprints: {e}; writing empty index\n")
|
|
index = []
|
|
|
|
OUTPUT.parent.mkdir(parents=True, exist_ok=True)
|
|
with open(OUTPUT, "w", encoding="utf-8") as f:
|
|
json.dump(index, f, separators=(",", ":"))
|
|
sys.stderr.write(f"extract-automation-blueprints: wrote {len(index)} blueprints -> {OUTPUT}\n")
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|