qlogicagent 2.11.3 → 2.11.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/dist/agent.js +6 -6
- package/dist/cli.js +269 -262
- package/dist/index.js +265 -258
- package/dist/types/cli/permission-bootstrap.d.ts +7 -0
- package/dist/types/cli/session-coordinator.d.ts +9 -0
- package/dist/types/cli/tool-bootstrap.d.ts +33 -2
- package/dist/types/cli/turn-permission-sync.d.ts +1 -2
- package/dist/types/protocol/wire/acp-protocol.d.ts +1 -0
- package/dist/types/protocol/wire/chat-types.d.ts +6 -0
- package/dist/types/protocol/wire/notification-payloads.d.ts +12 -0
- package/dist/types/runtime/infra/default-path-service.d.ts +3 -0
- package/dist/types/runtime/infra/model-registry.d.ts +3 -0
- package/dist/types/runtime/infra/provider-catalog-adapter.d.ts +14 -0
- package/dist/types/runtime/permission-model.d.ts +19 -0
- package/dist/types/runtime/ports/path-service.d.ts +10 -0
- package/dist/types/runtime/ports/permission-contracts.d.ts +26 -3
- package/dist/types/runtime/ports/tool-contracts.d.ts +3 -0
- package/dist/types/runtime/ports/tool-risk.d.ts +7 -0
- package/dist/types/skills/permissions/community-sandbox-policy.d.ts +1 -1
- package/dist/types/skills/permissions/hook-runner.d.ts +16 -2
- package/dist/types/skills/permissions/operation-classifier.d.ts +43 -0
- package/dist/types/skills/permissions/rule-engine.d.ts +28 -14
- package/dist/types/skills/portable-tool.d.ts +18 -0
- package/dist/types/skills/tools/exec-tool.d.ts +7 -0
- package/dist/types/skills/tools/patch-tool.d.ts +7 -0
- package/dist/types/skills/tools/shell/sandbox/helper-resolver.d.ts +7 -0
- package/dist/types/skills/tools/shell/sandbox/landlock-argv.d.ts +6 -0
- package/dist/types/skills/tools/shell/sandbox/platform.d.ts +3 -0
- package/dist/types/skills/tools/shell/sandbox/sandbox-launcher.d.ts +15 -0
- package/dist/types/skills/tools/shell/sandbox/sandbox-scope.d.ts +6 -0
- package/dist/types/skills/tools/shell/sandbox/sandbox-types.d.ts +47 -0
- package/dist/types/skills/tools/shell/sandbox/seatbelt-profile.d.ts +6 -0
- package/dist/types/skills/tools/shell/shell-exec.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { ShellProvider, ShellType } from "./shell-provider.js";
|
|
2
2
|
import { type ShellCommand } from "./shell-command.js";
|
|
3
3
|
import { type ProgressCallback } from "./task-output.js";
|
|
4
|
+
import type { SandboxConfig } from "./sandbox/sandbox-types.js";
|
|
4
5
|
export type { ExecResult } from "./shell-command.js";
|
|
5
6
|
export declare function getCwd(): string;
|
|
6
7
|
export declare function setCwd(path: string, relativeTo?: string): void;
|
|
@@ -16,6 +17,8 @@ export interface ExecOptions {
|
|
|
16
17
|
onStdout?: (data: string) => void;
|
|
17
18
|
/** Per-call CWD override. When set, spawn uses this instead of the session CWD. */
|
|
18
19
|
cwd?: string;
|
|
20
|
+
/** Sandbox context injected by the host; absent = no OS sandbox (degrade). */
|
|
21
|
+
sandbox?: SandboxConfig;
|
|
19
22
|
}
|
|
20
23
|
/**
|
|
21
24
|
* Set the shell provider for this session.
|