@ogulcancelik/pi-spar 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +58 -0
- package/core.ts +879 -0
- package/index.ts +760 -0
- package/package.json +41 -0
- package/peek.ts +683 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ogulcancelik/pi-spar",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Agent-to-agent sparring for pi. Back-and-forth conversations with peer AI models for debugging, design review, and challenging your thinking.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"pi-package",
|
|
8
|
+
"pi-extension",
|
|
9
|
+
"spar",
|
|
10
|
+
"agent-to-agent",
|
|
11
|
+
"peer-review",
|
|
12
|
+
"coding-agent",
|
|
13
|
+
"multi-model"
|
|
14
|
+
],
|
|
15
|
+
"author": "Can Celik",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/ogulcancelik/pi-extensions.git",
|
|
20
|
+
"directory": "packages/pi-spar"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/ogulcancelik/pi-extensions/issues"
|
|
24
|
+
},
|
|
25
|
+
"homepage": "https://github.com/ogulcancelik/pi-extensions/tree/main/packages/pi-spar#readme",
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=18.0.0"
|
|
28
|
+
},
|
|
29
|
+
"pi": {
|
|
30
|
+
"extensions": [
|
|
31
|
+
"./index.ts"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"index.ts",
|
|
36
|
+
"core.ts",
|
|
37
|
+
"peek.ts",
|
|
38
|
+
"README.md",
|
|
39
|
+
"LICENSE"
|
|
40
|
+
]
|
|
41
|
+
}
|