@mariozechner/pi-coding-agent 0.12.0 → 0.12.1
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 +6 -0
- package/dist/tools/index.d.ts +11 -11
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.12.1] - 2025-12-02
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **Binary Archive Structure**: Binary downloads now contain `pi` (or `pi.exe` on Windows) instead of platform-suffixed names like `pi-darwin-arm64`, making it easier to use after extraction.
|
|
10
|
+
|
|
5
11
|
## [0.12.0] - 2025-12-02
|
|
6
12
|
|
|
7
13
|
### Added
|
package/dist/tools/index.d.ts
CHANGED
|
@@ -5,41 +5,41 @@ export { grepTool } from "./grep.js";
|
|
|
5
5
|
export { lsTool } from "./ls.js";
|
|
6
6
|
export { readTool } from "./read.js";
|
|
7
7
|
export { writeTool } from "./write.js";
|
|
8
|
-
export declare const codingTools: (import("
|
|
8
|
+
export declare const codingTools: (import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
9
9
|
command: import("@sinclair/typebox").TString;
|
|
10
10
|
timeout: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
11
|
-
}>, any> | import("
|
|
11
|
+
}>, any> | import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
12
12
|
path: import("@sinclair/typebox").TString;
|
|
13
13
|
oldText: import("@sinclair/typebox").TString;
|
|
14
14
|
newText: import("@sinclair/typebox").TString;
|
|
15
|
-
}>, any> | import("
|
|
15
|
+
}>, any> | import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
16
16
|
path: import("@sinclair/typebox").TString;
|
|
17
17
|
offset: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
18
18
|
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
19
|
-
}>, any> | import("
|
|
19
|
+
}>, any> | import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
20
20
|
path: import("@sinclair/typebox").TString;
|
|
21
21
|
content: import("@sinclair/typebox").TString;
|
|
22
22
|
}>, any>)[];
|
|
23
23
|
export declare const allTools: {
|
|
24
|
-
read: import("
|
|
24
|
+
read: import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
25
25
|
path: import("@sinclair/typebox").TString;
|
|
26
26
|
offset: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
27
27
|
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
28
28
|
}>, any>;
|
|
29
|
-
bash: import("
|
|
29
|
+
bash: import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
30
30
|
command: import("@sinclair/typebox").TString;
|
|
31
31
|
timeout: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
32
32
|
}>, any>;
|
|
33
|
-
edit: import("
|
|
33
|
+
edit: import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
34
34
|
path: import("@sinclair/typebox").TString;
|
|
35
35
|
oldText: import("@sinclair/typebox").TString;
|
|
36
36
|
newText: import("@sinclair/typebox").TString;
|
|
37
37
|
}>, any>;
|
|
38
|
-
write: import("
|
|
38
|
+
write: import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
39
39
|
path: import("@sinclair/typebox").TString;
|
|
40
40
|
content: import("@sinclair/typebox").TString;
|
|
41
41
|
}>, any>;
|
|
42
|
-
grep: import("
|
|
42
|
+
grep: import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
43
43
|
pattern: import("@sinclair/typebox").TString;
|
|
44
44
|
path: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
45
45
|
glob: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -48,12 +48,12 @@ export declare const allTools: {
|
|
|
48
48
|
context: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
49
49
|
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
50
50
|
}>, any>;
|
|
51
|
-
find: import("
|
|
51
|
+
find: import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
52
52
|
pattern: import("@sinclair/typebox").TString;
|
|
53
53
|
path: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
54
54
|
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
55
55
|
}>, any>;
|
|
56
|
-
ls: import("
|
|
56
|
+
ls: import("../../../ai/dist/index.js").AgentTool<import("@sinclair/typebox").TObject<{
|
|
57
57
|
path: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
58
58
|
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
59
59
|
}>, any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mariozechner/pi-coding-agent",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"prepublishOnly": "npm run clean && npm run build"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@mariozechner/pi-agent-core": "^0.12.
|
|
28
|
-
"@mariozechner/pi-ai": "^0.12.
|
|
29
|
-
"@mariozechner/pi-tui": "^0.12.
|
|
27
|
+
"@mariozechner/pi-agent-core": "^0.12.1",
|
|
28
|
+
"@mariozechner/pi-ai": "^0.12.1",
|
|
29
|
+
"@mariozechner/pi-tui": "^0.12.1",
|
|
30
30
|
"chalk": "^5.5.0",
|
|
31
31
|
"diff": "^8.0.2",
|
|
32
32
|
"glob": "^11.0.3"
|