From 9dedac1dbd9e978fb3d75eb4b50201dd4d03ab81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Thu, 26 Mar 2026 12:10:42 +0100 Subject: [PATCH] chore: add claude-code package name and display name to changelog generator --- hindsight-dev/hindsight_dev/generate_changelog.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hindsight-dev/hindsight_dev/generate_changelog.py b/hindsight-dev/hindsight_dev/generate_changelog.py index 2c2b56e0..b69ad1b8 100644 --- a/hindsight-dev/hindsight_dev/generate_changelog.py +++ b/hindsight-dev/hindsight_dev/generate_changelog.py @@ -518,11 +518,14 @@ def _get_package_name(integration: str) -> str: "langgraph": "hindsight-langgraph", "nemoclaw": "@vectorize-io/hindsight-nemoclaw", "strands": "hindsight-strands", + "claude-code": "hindsight-memory", } return packages[integration] def _package_url(integration: str, package_name: str) -> str: + if integration == "claude-code": + return "https://github.com/vectorize-io/hindsight/tree/main/hindsight-integrations/claude-code" if package_name.startswith("@"): return f"https://www.npmjs.com/package/{package_name}" return f"https://pypi.org/project/{package_name}/" @@ -539,6 +542,7 @@ def _integration_display_name(integration: str) -> str: "langgraph": "LangGraph", "nemoclaw": "NemoClaw", "strands": "Strands", + "claude-code": "Claude Code", } return names.get(integration, integration)