-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "@askjo/pi-reflect",
"version": "1.1.0",
"description": "Self-improving behavioral files for pi coding agents. Analyzes session transcripts for correction patterns and makes surgical edits to prevent recurrence.",
"keywords": [
"pi-package",
"pi-extension",
"pi",
"coding-agent",
"self-improvement",
"agents-md",
"behavioral-rules",
"reflection"
],
"license": "MIT",
"author": "Pradeep Elankumaran <pradeepe@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/jo-inc/pi-reflect.git"
},
"bugs": {
"url": "https://github.com/jo-inc/pi-reflect/issues"
},
"homepage": "https://github.com/jo-inc/pi-reflect#readme",
"type": "module",
"scripts": {
"test": "node --import tsx --test tests/*.test.ts"
},
"pi": {
"extensions": [
"./extensions/index.ts"
],
"image": "https://raw.githubusercontent.com/jo-inc/pi-reflect/main/logo.png"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-ai": "*"
},
"devDependencies": {
"tsx": "^4.19.0",
"@types/node": "^22.0.0"
}
}