-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevvit.json
More file actions
70 lines (70 loc) · 1.94 KB
/
devvit.json
File metadata and controls
70 lines (70 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ghosthunter",
"version": "0.1.0",
"description": "Silently scores every comment for bot probability using 5 behavioral signals. Surfaces ghost accounts to your mod queue before they damage community quality.",
"homepage": "https://ghosthunter.osintnet.uk",
"permissions": {
"reddit": {
"enable": true,
"scope": "moderator"
}
},
"triggers": [
{
"event": "CommentSubmit",
"endpoint": "/internal/trigger/comment-submit"
},
{
"event": "AppInstall",
"endpoint": "/internal/trigger/app-install"
}
],
"menu": {
"items": [
{
"label": "👻 GhostHunter: Score this account",
"description": "Run a full ghost score analysis on this comment's author.",
"forUserType": "moderator",
"location": ["comment"],
"endpoint": "/internal/menu/score-author"
},
{
"label": "👻 GhostHunter: View Ghost Log",
"description": "See all flagged ghost accounts in this subreddit.",
"forUserType": "moderator",
"location": ["subreddit"],
"endpoint": "/internal/menu/view-log"
}
]
},
"settings": [
{
"name": "flagThreshold",
"label": "Ghost Score threshold to flag to mod queue (default: 61)",
"type": "number",
"defaultValue": 61,
"scope": "installation"
},
{
"name": "autoReportThreshold",
"label": "Ghost Score threshold to auto-report (default: 85, 0 = disabled)",
"type": "number",
"defaultValue": 85,
"scope": "installation"
},
{
"name": "enableEntropyCheck",
"label": "Enable linguistic entropy check (uses AI — slightly slower)",
"type": "boolean",
"defaultValue": true,
"scope": "installation"
},
{
"name": "silentMode",
"label": "Silent mode: log only, never add mod notes",
"type": "boolean",
"defaultValue": false,
"scope": "installation"
}
]
}