pi-git-delegate 0.2.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/CHANGELOG.md +38 -0
- package/LICENSE +21 -0
- package/README.md +152 -0
- package/docs/examples.md +50 -0
- package/docs/release.md +57 -0
- package/docs/template-checklist.md +144 -0
- package/extensions/index.ts +8 -0
- package/lib/config.ts +122 -0
- package/lib/git-exec.ts +21 -0
- package/lib/prompts.ts +34 -0
- package/lib/register-commands.ts +57 -0
- package/lib/register-tools.ts +77 -0
- package/lib/schema.ts +8 -0
- package/lib/settings-help.ts +176 -0
- package/lib/subagent-runner.ts +148 -0
- package/lib/tools/git-blame-summary.ts +64 -0
- package/lib/tools/git-diff-summary.ts +57 -0
- package/lib/tools/git-log-summary.ts +64 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pi-git-delegate",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Pi extension: delegate git operations (diff/log/blame) to cheaper models via subagents, saving costs and keeping parent context clean.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "eiei114",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"pi-package",
|
|
10
|
+
"pi",
|
|
11
|
+
"git",
|
|
12
|
+
"typescript"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/eiei114/pi-git-delegate.git"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/eiei114/pi-git-delegate/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/eiei114/pi-git-delegate#readme",
|
|
22
|
+
"files": [
|
|
23
|
+
"extensions/",
|
|
24
|
+
"lib/",
|
|
25
|
+
"docs/",
|
|
26
|
+
"README.md",
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"CHANGELOG.md"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"test": "node --test tests/*.test.mjs",
|
|
33
|
+
"ci": "npm run typecheck && npm test && npm run pack:check",
|
|
34
|
+
"pack:check": "npm pack --dry-run"
|
|
35
|
+
},
|
|
36
|
+
"pi": {
|
|
37
|
+
"extensions": [
|
|
38
|
+
"./extensions"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"@earendil-works/pi-ai": "*",
|
|
46
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
47
|
+
"@earendil-works/pi-tui": "*",
|
|
48
|
+
"typebox": "*"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@earendil-works/pi-ai": "latest",
|
|
52
|
+
"@earendil-works/pi-coding-agent": "latest",
|
|
53
|
+
"@earendil-works/pi-tui": "latest",
|
|
54
|
+
"typebox": "latest",
|
|
55
|
+
"@types/node": "^22.0.0",
|
|
56
|
+
"typescript": "^6.0.3"
|
|
57
|
+
}
|
|
58
|
+
}
|