@fleetagent/pi-coding-agent 0.1.1 → 0.1.2
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 +17 -0
- package/dist/core/agent-session.d.ts +3 -1
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +5 -2
- package/dist/core/agent-session.js.map +1 -1
- package/dist/modes/rpc/rpc-client.d.ts +4 -1
- package/dist/modes/rpc/rpc-client.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-client.js +3 -2
- package/dist/modes/rpc/rpc-client.js.map +1 -1
- package/dist/modes/rpc/rpc-mode.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-mode.js +1 -1
- package/dist/modes/rpc/rpc-mode.js.map +1 -1
- package/dist/modes/rpc/rpc-types.d.ts +1 -0
- package/dist/modes/rpc/rpc-types.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-types.js.map +1 -1
- package/docs/rpc.md +9 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2](https://github.com/fleetagent/pi/compare/@fleetagent/pi-coding-agent-v0.1.1...@fleetagent/pi-coding-agent-v0.1.2) (2026-06-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **coding-agent:** add unrecorded RPC bash option ([56666da](https://github.com/fleetagent/pi/commit/56666dae36cbd16402e92a997a06520692a8125a))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @fleetagent/pi-agent-core bumped from ^0.1.1 to ^0.1.2
|
|
16
|
+
* @fleetagent/pi-ai bumped from ^0.1.1 to ^0.1.2
|
|
17
|
+
* @fleetagent/pi-tui bumped from ^0.1.1 to ^0.1.2
|
|
18
|
+
|
|
3
19
|
## [0.1.1](https://github.com/fleetagent/pi/compare/@fleetagent/pi-coding-agent-v0.1.0...@fleetagent/pi-coding-agent-v0.1.1) (2026-06-12)
|
|
4
20
|
|
|
5
21
|
|
|
@@ -20,6 +36,7 @@
|
|
|
20
36
|
|
|
21
37
|
### Added
|
|
22
38
|
|
|
39
|
+
- Added an RPC `bash` `record: false` option for running shell commands without adding results to session history.
|
|
23
40
|
- Added RPC `upload_file` and `download_file` commands for streaming files to and from the active sandbox backend.
|
|
24
41
|
|
|
25
42
|
## [0.1.0](https://github.com/fleetagent/pi/compare/@fleetagent/pi-coding-agent-v0.0.12...@fleetagent/pi-coding-agent-v0.1.0) (2026-06-12)
|
|
@@ -554,15 +554,17 @@ export declare class AgentSession {
|
|
|
554
554
|
setAutoRetryEnabled(enabled: boolean): void;
|
|
555
555
|
/**
|
|
556
556
|
* Execute a bash command.
|
|
557
|
-
* Adds result to agent context and session.
|
|
557
|
+
* Adds result to agent context and session unless options.record is false.
|
|
558
558
|
* @param command The bash command to execute
|
|
559
559
|
* @param onChunk Optional streaming callback for output
|
|
560
560
|
* @param options.excludeFromContext If true, command output won't be sent to LLM (!! prefix)
|
|
561
561
|
* @param options.operations Custom ToolOperations for remote execution
|
|
562
|
+
* @param options.record If false, result won't be stored in agent state or session history
|
|
562
563
|
*/
|
|
563
564
|
executeBash(command: string, onChunk?: (chunk: string) => void, options?: {
|
|
564
565
|
excludeFromContext?: boolean;
|
|
565
566
|
operations?: ToolOperations;
|
|
567
|
+
record?: boolean;
|
|
566
568
|
}): Promise<BashResult>;
|
|
567
569
|
/**
|
|
568
570
|
* Record a bash execution result in session history.
|