qlogicagent 2.17.1 → 2.17.3

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.
@@ -34,6 +34,7 @@ export declare class DelegationCoordinator {
34
34
  */
35
35
  delegate(agentId: string, brief: string, opts?: {
36
36
  acceptanceCriteria?: string;
37
+ delegationId?: string;
37
38
  sessionId?: string;
38
39
  }): {
39
40
  delegationId: string;
@@ -114,6 +114,7 @@ export interface AcpInitializeResult {
114
114
  mcpCapabilities?: {
115
115
  http?: boolean;
116
116
  sse?: boolean;
117
+ stdio?: boolean;
117
118
  };
118
119
  promptCapabilities?: {
119
120
  audio?: boolean;
@@ -166,11 +167,15 @@ export interface AcpUsageUpdatePayload {
166
167
  totalTokens?: number;
167
168
  }
168
169
  /** MCP server config to inject into ACP session/new. */
170
+ export interface McpServerEnvEntry {
171
+ name: string;
172
+ value: string;
173
+ }
169
174
  export interface McpServerConfig {
170
175
  name: string;
171
176
  command: string;
172
177
  args: string[];
173
- env?: Record<string, string>;
178
+ env?: McpServerEnvEntry[];
174
179
  }
175
180
  export interface AgentsScanParams {
176
181
  force?: boolean;
@@ -140,6 +140,10 @@ export interface AcpSessionNewParams {
140
140
  uri?: string;
141
141
  command?: string;
142
142
  args?: string[];
143
+ env?: Array<{
144
+ name: string;
145
+ value: string;
146
+ }>;
143
147
  }>;
144
148
  /** Optional session ID (host-assigned). If omitted, agent generates one. */
145
149
  sessionId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlogicagent",
3
- "version": "2.17.1",
3
+ "version": "2.17.3",
4
4
  "description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",