qlogicagent 2.11.5 → 2.11.7
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/cli.js +401 -371
- package/dist/index.js +400 -370
- package/dist/types/cli/handlers/agents-handler.d.ts +18 -1
- package/dist/types/cli/handlers/memory-handler.d.ts +6 -6
- package/dist/types/cli/memory-coordinator.d.ts +1 -0
- package/dist/types/cli/runtime-hook-bootstrap.d.ts +1 -0
- package/dist/types/orchestration/product-worktree.d.ts +0 -1
- package/dist/types/orchestration/solo-evaluator.d.ts +5 -0
- package/dist/types/protocol/methods.d.ts +0 -2
- package/dist/types/protocol/wire/acp-agent-management.d.ts +27 -0
- package/dist/types/protocol/wire/gateway-rpc.d.ts +0 -6
- package/dist/types/protocol/wire/notification-payloads.d.ts +98 -0
- package/dist/types/runtime/infra/acp-detector.d.ts +47 -1
- package/dist/types/runtime/infra/acp-host-handler.d.ts +9 -1
- package/dist/types/runtime/infra/acp-protocol-adapter.d.ts +68 -49
- package/dist/types/runtime/infra/agent-install-runner.d.ts +57 -0
- package/dist/types/runtime/infra/agent-process.d.ts +10 -0
- package/dist/types/runtime/infra/external-agent-approvals.d.ts +41 -0
- package/dist/types/runtime/infra/external-agent-pool.d.ts +54 -0
- package/dist/types/runtime/infra/model-registry.d.ts +6 -0
- package/dist/types/runtime/infra/provider-catalog-adapter.d.ts +7 -0
- package/package.json +2 -2
- package/dist/types/skills/tools/notify-tool.d.ts +0 -53
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ The generic `skill` meta-tool no longer exposes raw URL installation. New commun
|
|
|
17
17
|
|
|
18
18
|
Community skill installation also rescans the downloaded `SKILL.md` entry after checksum verification and before moving it into the owner profile. Prompt-injection hits fail closed, leave no installed skill or lifecycle record, and return only a generic scan failure.
|
|
19
19
|
|
|
20
|
-
At runtime, the community sandbox overlay also blocks host side-effect tools such as `
|
|
20
|
+
At runtime, the community sandbox overlay also blocks host side-effect tools such as `send_message`, `agent`, `team`, `cron`, and `monitor` from community skill subturns, so injected instructions cannot escape through delegation, team control, or scheduled work.
|
|
21
21
|
|
|
22
22
|
Community skill subturns also treat local file upload as tainted data egress. A `file_upload` call from `community-skill:*` requires explicit per-call approval before any provider Files API upload can proceed; auto-mode classifiers cannot replace that approval, and denied approvals leave no raw file path in the sandbox red-team report.
|
|
23
23
|
|