qlogicagent 2.15.3 → 2.15.5
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 +11 -9
- package/dist/cli.js +292 -290
- package/dist/index.js +291 -289
- package/dist/types/cli/handlers/control-handler.d.ts +3 -0
- package/dist/types/cli/stdio-server.d.ts +4 -0
- package/dist/types/protocol/methods.d.ts +0 -2
- package/dist/types/protocol/wire/agent-methods.d.ts +1228 -0
- package/dist/types/skills/tools/shell/exec-audit-log.d.ts +24 -0
- package/package.json +1 -1
- package/dist/types/agent/tool-access.d.ts +0 -1
- package/dist/types/agent/tool-loop/single-round.d.ts +0 -2
- package/dist/types/cli/permission-settings-store.d.ts +0 -1
- package/dist/types/protocol/index.d.ts +0 -7
- package/dist/types/protocol/wire/provider-runtime-io.d.ts +0 -20
- package/dist/types/runtime/execution/index.d.ts +0 -7
- package/dist/types/runtime/hooks/index.d.ts +0 -4
- package/dist/types/runtime/index.d.ts +0 -5
- package/dist/types/runtime/infra/index.d.ts +0 -19
- package/dist/types/runtime/infra/mcp-bridge.d.ts +0 -166
- package/dist/types/runtime/infra/model-id-translator.d.ts +0 -22
- package/dist/types/runtime/infra/secure-storage.d.ts +0 -81
- package/dist/types/runtime/infra/skill-injector.d.ts +0 -59
- package/dist/types/runtime/prompt/index.d.ts +0 -5
- package/dist/types/runtime/sandbox/index.d.ts +0 -2
- package/dist/types/runtime/session/index.d.ts +0 -4
- package/dist/types/skills/index.d.ts +0 -6
- package/dist/types/skills/mcp/index.d.ts +0 -1
- package/dist/types/skills/permissions/index.d.ts +0 -13
- package/dist/types/skills/plugins/index.d.ts +0 -2
- package/dist/types/skills/skill-system/skill-guard.d.ts +0 -23
- package/dist/types/transport/index.d.ts +0 -7
|
@@ -15,6 +15,9 @@ export interface ControlHandlerHost {
|
|
|
15
15
|
sendResponse(id: string | number, result?: unknown, error?: AgentRpcError): void;
|
|
16
16
|
sendNotification<M extends keyof NotificationMethodMap>(method: M, params: NotificationMethodMap[M]): void;
|
|
17
17
|
ensureDefaultProject(): void;
|
|
18
|
+
/** Actual registered RPC method names (single source of truth = the live registry), so the
|
|
19
|
+
* initialize capability declaration never drifts from what's really handled. */
|
|
20
|
+
getRegisteredMethods(): string[];
|
|
18
21
|
}
|
|
19
22
|
export declare function handleInitialize(this: ControlHandlerHost, msg: AgentRpcRequest): void;
|
|
20
23
|
export declare function handlePing(this: ControlHandlerHost, msg: AgentRpcRequest): void;
|
|
@@ -146,6 +146,10 @@ export declare class StdioServer {
|
|
|
146
146
|
start(): void;
|
|
147
147
|
stop(): Promise<void>;
|
|
148
148
|
private readonly methodHandlers;
|
|
149
|
+
/** Live registry method names — the single source of truth for the initialize capability
|
|
150
|
+
* declaration, so it never drifts from what's actually registered (replaces the
|
|
151
|
+
* previous hand-maintained method list, which had fallen ~100 methods behind). */
|
|
152
|
+
getRegisteredMethods(): string[];
|
|
149
153
|
private handleMessage;
|
|
150
154
|
/**
|
|
151
155
|
* Ensure a default project exists on first start.
|
|
@@ -1204,5 +1204,3 @@ export interface RpcMethodMap {
|
|
|
1204
1204
|
}
|
|
1205
1205
|
/** All known RPC method names. */
|
|
1206
1206
|
export type RpcMethod = keyof RpcMethodMap;
|
|
1207
|
-
/** All RPC method names as a runtime array (for capabilities declaration). */
|
|
1208
|
-
export declare const ALL_RPC_METHODS: RpcMethod[];
|