@dreb/coding-agent 2.55.4 → 2.55.6
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/README.md +1 -1
- package/dist/core/agent-session.d.ts +5 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +7 -0
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/output-guard.d.ts +2 -0
- package/dist/core/output-guard.d.ts.map +1 -1
- package/dist/core/output-guard.js +95 -3
- package/dist/core/output-guard.js.map +1 -1
- package/dist/modes/rpc/rpc-event-projection.d.ts +29 -0
- package/dist/modes/rpc/rpc-event-projection.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-event-projection.js +54 -0
- package/dist/modes/rpc/rpc-event-projection.js.map +1 -0
- package/dist/modes/rpc/rpc-mode.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-mode.js +10 -1
- package/dist/modes/rpc/rpc-mode.js.map +1 -1
- package/docs/dashboard.md +15 -6
- package/docs/rpc.md +7 -1
- package/package.json +1 -1
|
@@ -1146,6 +1146,13 @@ export class AgentSession {
|
|
|
1146
1146
|
get sessionName() {
|
|
1147
1147
|
return this.sessionManager.getSessionName();
|
|
1148
1148
|
}
|
|
1149
|
+
/**
|
|
1150
|
+
* UI surface this session was launched for (e.g. "tui", "rpc", "dashboard",
|
|
1151
|
+
* "agent", "cli"), from the --ui flag or the mode-based default.
|
|
1152
|
+
*/
|
|
1153
|
+
get uiType() {
|
|
1154
|
+
return this._uiType;
|
|
1155
|
+
}
|
|
1149
1156
|
/** Scoped models for cycling (from --models flag) */
|
|
1150
1157
|
get scopedModels() {
|
|
1151
1158
|
return this._scopedModels;
|