From e575ddbcd1e8a1fbb0eaaa9d8c3411f900d4c842 Mon Sep 17 00:00:00 2001 From: Panniantong Date: Fri, 27 Mar 2026 11:47:46 +0100 Subject: [PATCH] fix(skill): show real error and helpful tip when skill install fails --- agent_reach/cli.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/agent_reach/cli.py b/agent_reach/cli.py index 9b18a90..d5fea89 100644 --- a/agent_reach/cli.py +++ b/agent_reach/cli.py @@ -327,8 +327,9 @@ def _install_skill(): with open(os.path.join(target, "SKILL.md"), "w") as f: f.write(skill_md) print(f"Skill installed: {target}") - except Exception: - print(" -- Could not install agent skill (optional)") + except Exception as e: + print(f" -- Could not install agent skill (optional): {e}") + print(" -- Tip: install OpenClaw, Claude Code, or create ~/.agents/skills/ manually") def _uninstall_skill():