From e03c4604fb782d84cdb0e53e81d31707e54152a3 Mon Sep 17 00:00:00 2001 From: xiaolai Date: Sat, 2 May 2026 21:14:39 +0800 Subject: [PATCH] fix: remove stray colon in --cluster-only dict literal (SyntaxError) (#603) tokens dict at line 826 had output-colon-colon 0 causing a SyntaxError when the Trae skill is invoked with --cluster-only. The extra colon makes Python reject the dict literal entirely. Co-authored-by: Claude Code --- graphify/skill-trae.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphify/skill-trae.md b/graphify/skill-trae.md index fdbb3ebd2..af3063a6d 100644 --- a/graphify/skill-trae.md +++ b/graphify/skill-trae.md @@ -823,7 +823,7 @@ G = json_graph.node_link_graph(data, edges='links') detection = {'total_files': 0, 'total_words': 99999, 'needs_graph': True, 'warning': None, 'files': {'code': [], 'document': [], 'paper': []}} -tokens = {'input': 0, 'output':': 0} +tokens = {'input': 0, 'output': 0} communities = cluster(G) cohesion = score_all(G, communities)