File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,3 +55,51 @@ The pipeline combines two main signal sources:
55552 . ** Static Signals (Tree-sitter)** : Extracts "Physical Dependencies" through explicit imports and symbol definitions.
5656
5757These are merged into a unified graph where physical links serve as ground truth (high weight) and logical links provide architectural context.
58+
59+ ## 7. Claude Code Skill
60+
61+ This repository includes a Claude Code skill for AI-assisted code navigation.
62+
63+ ### Location
64+
65+ ```
66+ skills/gossiphs/SKILL.md
67+ ```
68+
69+ ### Installation
70+
71+ To use this skill with Claude Code, create a symbolic link:
72+
73+ ``` bash
74+ ln -s $( pwd) /skills/gossiphs ~ /.claude/skills/gossiphs
75+ ```
76+
77+ Or copy the skill directory:
78+
79+ ``` bash
80+ cp -r skills/gossiphs ~ /.claude/skills/
81+ ```
82+
83+ ### What It Does
84+
85+ The skill helps Claude Code agents:
86+ - Find files related to a specific file
87+ - Analyze impact scope of code changes
88+ - Discover dependencies between modules
89+ - Trace symbol definitions and references
90+
91+ ### Trigger Phrases
92+
93+ The skill activates when users ask:
94+ - "Which files use this function/class?"
95+ - "What files will be affected if I change this?"
96+ - "Find code related to X"
97+ - "What does this file depend on?"
98+
99+ ### Requirements
100+
101+ Requires ` gossiphs ` binary. Install with:
102+
103+ ``` bash
104+ cargo install gossiphs
105+ ```
You can’t perform that action at this time.
0 commit comments