Skip to content

Commit efe82f1

Browse files
williamfzcclaude
andcommitted
docs: update AGENTS.md to use binary instead of MCP
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent aca7a79 commit efe82f1

2 files changed

Lines changed: 49 additions & 1 deletion

File tree

AGENTS.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,51 @@ The pipeline combines two main signal sources:
5555
2. **Static Signals (Tree-sitter)**: Extracts "Physical Dependencies" through explicit imports and symbol definitions.
5656

5757
These 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+
```

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)