Skip to content

Commit 8190eb6

Browse files
committed
feat(skills): add claude marketplace
1 parent f149bb2 commit 8190eb6

2 files changed

Lines changed: 44 additions & 4 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "engraph",
3+
"owner": {
4+
"name": "devwhodevs",
5+
"email": "devwhodevs@gmail.com"
6+
},
7+
"plugins": [
8+
{
9+
"name": "engraph",
10+
"source": "./",
11+
"description": "Turn your Markdown vault into a searchable knowledge graph that any AI agent can query.",
12+
"version": "0.1.0",
13+
"author": {
14+
"name": "devwhodevs",
15+
"email": "devwhodevs@gmail.com"
16+
},
17+
"repository": "https://github.com/devwhodevs/engraph",
18+
"license": "MIT",
19+
"keywords": [
20+
"markdown",
21+
"search",
22+
"engraph",
23+
"graph search",
24+
"knowledge graph"
25+
],
26+
"skills": ["./skills/"],
27+
"mcpServers": {
28+
"engraph": {
29+
"command": "engraph",
30+
"args": ["serve"]
31+
}
32+
}
33+
}
34+
]
35+
}

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,18 @@ engraph search "how does the auth system work"
114114

115115
Note how result #3 was found via **graph expansion** — Sarah's note doesn't mention "auth system" directly, but she's linked from the auth architecture doc via `[[Sarah Chen]]`.
116116

117-
**Connect to Claude Code:**
117+
**Claude Code** — Install the plugin (recommended):
118118

119119
```bash
120-
# Start the MCP server
121-
engraph serve
120+
claude plugin marketplace add devwhodevs/engraph
121+
claude plugin install engraph@engraph
122+
```
123+
124+
**Connect to Claude Code:**
125+
126+
Or configure MCP manually in `~/.claude/settings.json`:
122127

123-
# Or add to Claude Code's settings (~/.claude/settings.json):
128+
```bash
124129
{
125130
"mcpServers": {
126131
"engraph": {

0 commit comments

Comments
 (0)