qlogicagent 2.18.2 → 2.18.4
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 +38 -24
- package/dist/cli.js +1 -1
- package/dist/index.js +553 -485
- package/dist/orchestration.js +11 -11
- package/dist/protocol.js +1 -1
- package/dist/skills/mcp/astraclaw-native-mcp-server.js +8 -6
- package/dist/types/agent/memory-recall-injection.d.ts +2 -1
- package/dist/types/agent/tool-loop/budget-continuation-policy.d.ts +4 -0
- package/dist/types/agent/tool-loop/completion-action-policy.d.ts +9 -1
- package/dist/types/cli/credential-vault.d.ts +6 -0
- package/dist/types/cli/handlers/community-handler.d.ts +1 -2
- package/dist/types/cli/handlers/memory-handler.d.ts +7 -0
- package/dist/types/cli/handlers/turn-handler.d.ts +50 -1
- package/dist/types/cli/memory-coordinator.d.ts +4 -0
- package/dist/types/cli/pet-runtime.d.ts +2 -0
- package/dist/types/cli/rpc-registry.d.ts +11 -0
- package/dist/types/cli/runtime-hook-bootstrap.d.ts +2 -0
- package/dist/types/cli/skill-tools-bootstrap.d.ts +5 -0
- package/dist/types/cli/stdio-acp-request-host.d.ts +2 -1
- package/dist/types/cli/stdio-rpc-handler-hosts.d.ts +1 -0
- package/dist/types/cli/stdio-server.d.ts +4 -0
- package/dist/types/cli/task-distillation-coordinator.d.ts +79 -0
- package/dist/types/cli/tool-bootstrap-core-registration.d.ts +24 -0
- package/dist/types/cli/turn-core.d.ts +0 -6
- package/dist/types/cli/turn-project-router.d.ts +9 -0
- package/dist/types/contracts/hooks.d.ts +3 -0
- package/dist/types/contracts/turn-event.d.ts +8 -4
- package/dist/types/orchestration/agent-instance.d.ts +4 -0
- package/dist/types/orchestration/context/reactive-compact.d.ts +4 -6
- package/dist/types/orchestration/error-handling/retry-loop.d.ts +0 -22
- package/dist/types/orchestration/goal-loop-coordinator.d.ts +6 -0
- package/dist/types/orchestration/goal-mode-adapters.d.ts +20 -1
- package/dist/types/orchestration/goal-run-types.d.ts +10 -0
- package/dist/types/orchestration/skill-improvement.d.ts +7 -2
- package/dist/types/orchestration/workflow/run-history-store.d.ts +2 -0
- package/dist/types/orchestration/workflow/workflow-runtime.d.ts +8 -0
- package/dist/types/protocol/methods.d.ts +0 -26
- package/dist/types/protocol/wire/acp-agent-management.d.ts +3 -0
- package/dist/types/protocol/wire/agent-events.d.ts +2 -2
- package/dist/types/protocol/wire/agent-methods.d.ts +0 -11
- package/dist/types/protocol/wire/gateway-rpc.d.ts +1 -0
- package/dist/types/protocol/wire/memory-provider-lifecycle.d.ts +3 -0
- package/dist/types/protocol/wire/notification-payloads.d.ts +27 -0
- package/dist/types/runtime/community/community-consent-client.d.ts +0 -21
- package/dist/types/runtime/config/tunable-defaults.d.ts +6 -0
- package/dist/types/runtime/execution/memory-decay.d.ts +5 -1
- package/dist/types/runtime/hooks/context-compression.d.ts +5 -0
- package/dist/types/runtime/hooks/memory-hooks.d.ts +16 -0
- package/dist/types/runtime/infra/acp-detector.d.ts +8 -0
- package/dist/types/runtime/infra/acp-protocol-adapter.d.ts +10 -0
- package/dist/types/runtime/infra/agent-paths.d.ts +9 -7
- package/dist/types/runtime/infra/agent-process.d.ts +6 -0
- package/dist/types/runtime/infra/astraclaw-capabilities.d.ts +9 -6
- package/dist/types/runtime/infra/checkpoint-backend.d.ts +1 -1
- package/dist/types/runtime/infra/migrate-device-scope.d.ts +49 -0
- package/dist/types/runtime/infra/project-data-paths.d.ts +4 -3
- package/dist/types/runtime/infra/project-skill-manifest.d.ts +3 -2
- package/dist/types/runtime/infra/working-materials-store.d.ts +8 -14
- package/dist/types/runtime/pet/pet-profile-service.d.ts +7 -0
- package/dist/types/runtime/pet/petdex-forge-service.d.ts +3 -1
- package/dist/types/runtime/ports/memory-provider.d.ts +23 -0
- package/dist/types/runtime/ports/project-memory-store.d.ts +2 -0
- package/dist/types/runtime/prompt/environment-context.d.ts +15 -3
- package/dist/types/runtime/prompt/fresh-workspace-evidence.d.ts +7 -0
- package/dist/types/runtime/prompt/instruction-loader.d.ts +0 -1
- package/dist/types/runtime/session/inbound-upload-persistence.d.ts +4 -0
- package/dist/types/runtime/session/session-catalog.d.ts +8 -0
- package/dist/types/runtime/session/session-resume.d.ts +5 -0
- package/dist/types/runtime/session/session-transcript-store.d.ts +8 -1
- package/dist/types/skills/mcp/mcp-manager.d.ts +25 -1
- package/dist/types/skills/memory/fts-segment.d.ts +20 -0
- package/dist/types/skills/memory/local-memory-provider.d.ts +66 -4
- package/dist/types/skills/memory/local-store-records.d.ts +6 -1
- package/dist/types/skills/memory/local-store.d.ts +63 -10
- package/dist/types/skills/memory/memdir.d.ts +17 -4
- package/dist/types/skills/memory/memory-consolidation.d.ts +7 -0
- package/dist/types/skills/memory/proposal-consumer.d.ts +51 -0
- package/dist/types/skills/memory/sqlite-memory-mappers.d.ts +2 -1
- package/dist/types/skills/memory/sqlite-memory-schema.d.ts +9 -1
- package/dist/types/skills/memory/task-distillation.d.ts +148 -0
- package/dist/types/skills/tools/search-tool.d.ts +6 -0
- package/dist/types/skills/tools/shell/task-output.d.ts +2 -0
- package/package.json +3 -2
- package/dist/types/agent/tool-loop/skill-instruction-policy.d.ts +0 -7
- package/dist/types/agent/tool-loop/tool-guardrails.d.ts +0 -24
- package/dist/types/cli/tool-bootstrap-community-registration.d.ts +0 -9
- package/dist/types/cli/turn-skill-autopersist.d.ts +0 -22
- package/dist/types/runtime/community/community-discovery-cache.d.ts +0 -24
- package/dist/types/runtime/community/community-discovery-coordinator.d.ts +0 -33
- package/dist/types/runtime/hooks/community-discovery-hook.d.ts +0 -18
- package/dist/types/skills/tools/community-seek-tool.d.ts +0 -49
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.