qlogicagent 2.17.9 → 2.18.1
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 +21 -21
- package/dist/cli.js +1 -1566
- package/dist/index.js +445 -421
- package/dist/orchestration.js +7 -7
- package/dist/protocol.js +1 -1
- package/dist/skills/builtin/desktop-screenshot/SKILL.md +62 -0
- package/dist/skills/builtin/office-doc-reading/SKILL.md +19 -0
- package/dist/skills/mcp/astraclaw-native-mcp-server.js +7 -6
- package/dist/types/agent/tool-loop/artifact-final-contract.d.ts +18 -0
- package/dist/types/agent/tool-loop/loop-helpers.d.ts +9 -0
- package/dist/types/agent/tool-loop.d.ts +14 -5
- package/dist/types/agent/types.d.ts +5 -0
- package/dist/types/cli/acp-session-handlers.d.ts +8 -1
- package/dist/types/cli/acp-session-host.d.ts +5 -1
- package/dist/types/cli/default-project-bootstrap.d.ts +33 -0
- package/dist/types/cli/handlers/agents-handler.d.ts +9 -0
- package/dist/types/cli/handlers/config-handler.d.ts +5 -0
- package/dist/types/cli/handlers/files-handler.d.ts +7 -0
- package/dist/types/cli/handlers/session-handler.d.ts +49 -0
- package/dist/types/cli/handlers/turn-handler.d.ts +77 -0
- package/dist/types/cli/media-understanding.d.ts +45 -0
- package/dist/types/cli/permission-rule-persistence.d.ts +16 -0
- package/dist/types/cli/session-context.d.ts +5 -1
- package/dist/types/cli/stdio-acp-request-host.d.ts +1 -1
- package/dist/types/cli/stdio-rpc-handler-hosts.d.ts +4 -0
- package/dist/types/cli/stdio-server.d.ts +17 -1
- package/dist/types/cli/tool-bootstrap-core-registration.d.ts +2 -0
- package/dist/types/cli/turn-core.d.ts +2 -0
- package/dist/types/orchestration/agent-instance.d.ts +4 -0
- package/dist/types/orchestration/delegation-coordinator.d.ts +10 -0
- package/dist/types/orchestration/product-persistence.d.ts +4 -0
- package/dist/types/orchestration/workflow/capability-catalog.d.ts +1 -1
- package/dist/types/orchestration/workflow/workflow-controller.d.ts +1 -1
- package/dist/types/orchestration/workflow/workflow-runtime.d.ts +1 -1
- package/dist/types/protocol/notifications.d.ts +1 -1
- package/dist/types/protocol/wire/acp-agent-management.d.ts +16 -0
- package/dist/types/protocol/wire/agent-events.d.ts +2 -2
- package/dist/types/protocol/wire/agent-methods.d.ts +3 -0
- package/dist/types/protocol/wire/index.d.ts +1 -1
- package/dist/types/protocol/wire/notification-payloads.d.ts +26 -0
- package/dist/types/runtime/execution/turn-progress-notifier.d.ts +16 -0
- package/dist/types/runtime/infra/acp-detector.d.ts +40 -6
- package/dist/types/runtime/infra/acp-protocol-adapter.d.ts +14 -0
- package/dist/types/runtime/infra/agent-process.d.ts +16 -0
- package/dist/types/runtime/infra/astraclaw-capabilities.d.ts +2 -2
- package/dist/types/runtime/infra/builtin-skills-seed.d.ts +31 -0
- package/dist/types/runtime/infra/llmrouter-catalog.d.ts +26 -6
- package/dist/types/runtime/infra/model-registry.d.ts +43 -2
- package/dist/types/runtime/infra/project-data-gc.d.ts +7 -1
- package/dist/types/runtime/infra/skill-resolver.d.ts +15 -0
- package/dist/types/runtime/infra/user-dirs.d.ts +21 -0
- package/dist/types/runtime/permission-model.d.ts +1 -1
- package/dist/types/runtime/ports/permission-contracts.d.ts +5 -2
- package/dist/types/runtime/prompt/environment-context.d.ts +24 -2
- package/dist/types/runtime/prompt/fresh-workspace-evidence.d.ts +1 -2
- package/dist/types/runtime/prompt/identity-section.d.ts +17 -0
- package/dist/types/runtime/session/inbound-upload-persistence.d.ts +20 -0
- package/dist/types/runtime/session/native/claude-session-source.d.ts +23 -0
- package/dist/types/runtime/session/native/codex-index.d.ts +21 -0
- package/dist/types/runtime/session/native/codex-session-source.d.ts +31 -0
- package/dist/types/runtime/session/native/cwd-normalize.d.ts +53 -0
- package/dist/types/runtime/session/native/ephemeral-rollout-sweep.d.ts +13 -0
- package/dist/types/runtime/session/native/native-cwd-agents.d.ts +17 -0
- package/dist/types/runtime/session/native/native-session-source.d.ts +89 -0
- package/dist/types/runtime/session/native/native-title.d.ts +1 -0
- package/dist/types/runtime/session/native/register-builtin-sources.d.ts +1 -0
- package/dist/types/runtime/session/session-recovery.d.ts +58 -0
- package/dist/types/runtime/session/session-types.d.ts +30 -0
- package/dist/types/skills/permissions/hook-runner.d.ts +9 -0
- package/dist/types/skills/permissions/settings-watcher.d.ts +7 -0
- package/dist/types/skills/tools/exec-tool.d.ts +1 -1
- package/dist/types/skills/tools/shell/command-classification.d.ts +1 -0
- package/dist/types/skills/tools/shell/index.d.ts +3 -3
- package/dist/types/skills/tools/shell/powershell-provider.d.ts +8 -3
- package/dist/types/skills/tools/shell/shell-exec.d.ts +18 -0
- package/dist/types/skills/tools/shell/shell-provider.d.ts +67 -5
- package/dist/types/transport/acp-server.d.ts +6 -0
- package/package.json +4 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.