From f3d11fe89d2882f4b2ee98e80e7c276f694fab53 Mon Sep 17 00:00:00 2001 From: Pnant <73925474+Panniantong@users.noreply.github.com> Date: Sat, 7 Mar 2026 01:55:26 +0800 Subject: [PATCH] feat: add star reminder after install completes (#89) A friendly, non-intrusive message after successful installation asking users to star the repo. Co-authored-by: Panniantong --- agent_reach/cli.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/agent_reach/cli.py b/agent_reach/cli.py index 1eb2f8c..dabea61 100644 --- a/agent_reach/cli.py +++ b/agent_reach/cli.py @@ -255,6 +255,12 @@ def _cmd_install(args): if ok < total: print() print("🤖 Some channels are not active yet. If you're an AI Agent, try to fix them yourself — then run `agent-reach doctor` again.") + + # Star reminder + print() + print("⭐ 如果 Agent Reach 帮到了你,给个 Star 让更多人发现它吧:") + print(" https://github.com/Panniantong/Agent-Reach") + print(" 只需一秒,对独立开发者意义很大。谢谢!🙏") else: print() print("🔍 Dry run complete. No changes were made.")