From a426d6341407d987345b579b9ee491522672b757 Mon Sep 17 00:00:00 2001 From: safishamsi Date: Wed, 5 Aug 2026 01:41:12 +0100 Subject: [PATCH] feat(install): point users to the hosted platform after install Print a one-time note about free early access to app.graphify.com at the end of the install summary. Not shown on any other command. Co-Authored-By: Claude Opus 4.8 (1M context) --- graphify/install.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/graphify/install.py b/graphify/install.py index dd8e6a820..fbe135bcf 100644 --- a/graphify/install.py +++ b/graphify/install.py @@ -671,6 +671,9 @@ def install(platform: str = "claude", *, project: bool = False, project_dir: Pat print() print(" /graphify .") print() + print("Prefer a hosted version? Early access to the graphify platform is") + print("open free before the public v1 launch: https://app.graphify.com") + print() def _print_install_usage() -> None: platforms = ", ".join([*_PLATFORM_CONFIG, "gemini", "cursor"]) print("Usage: graphify install [--project] [--strict] [--platform P|P]")