-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.json
More file actions
50 lines (50 loc) · 1.21 KB
/
plugin.json
File metadata and controls
50 lines (50 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "everyrow",
"description": "Claude Code plugin for the everyrow SDK - AI-powered data processing utilities for transforming, deduping, merging, ranking, and screening dataframes",
"version": "0.3.0",
"author": {
"name": "FutureSearch"
},
"repository": "https://github.com/futuresearch/everyrow-sdk",
"mcpServers": {
"everyrow": {
"command": "${CLAUDE_PLUGIN_ROOT}/everyrow-mcp/.venv/bin/everyrow-mcp",
"env": {
"EVERYROW_API_KEY": "${EVERYROW_API_KEY}"
}
}
},
"hooks": {
"PostToolUse": [
{
"matcher": "mcp__plugin_everyrow_everyrow__everyrow_results",
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}/everyrow-mcp/scripts/everyrow-track-results.sh\""
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}/everyrow-mcp/scripts/everyrow-stop-guard.sh\""
}
]
}
],
"SessionEnd": [
{
"hooks": [
{
"type": "command",
"command": "rm -f ~/.everyrow/task.json"
}
]
}
]
}
}