-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1020 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1020 Bytes
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
{
"name": "pi-doom-loop-detector",
"version": "0.1.0",
"description": "Detects doom loops in LLM outputs and enables recovery injection",
"main": "./index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ThewindMom/pi-doom-loop-detector.git"
},
"author": "The Wind",
"license": "MIT",
"keywords": [
"pi",
"pi-extension",
"doom-loop",
"llm",
"recovery",
"ai-agent",
"loop-detection"
],
"homepage": "https://github.com/ThewindMom/pi-doom-loop-detector#readme",
"bugs": {
"url": "https://github.com/ThewindMom/pi-doom-loop-detector/issues"
},
"pi": {
"extensions": [
"./index.ts"
]
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": ">=0.51.0",
"@mariozechner/pi-agent-core": ">=0.51.0"
},
"peerDependenciesMeta": {
"@mariozechner/pi-coding-agent": {
"optional": true
},
"@mariozechner/pi-agent-core": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
}
}