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.
Files changed (91) hide show
  1. package/dist/agent.js +38 -24
  2. package/dist/cli.js +1 -1
  3. package/dist/index.js +553 -485
  4. package/dist/orchestration.js +11 -11
  5. package/dist/protocol.js +1 -1
  6. package/dist/skills/mcp/astraclaw-native-mcp-server.js +8 -6
  7. package/dist/types/agent/memory-recall-injection.d.ts +2 -1
  8. package/dist/types/agent/tool-loop/budget-continuation-policy.d.ts +4 -0
  9. package/dist/types/agent/tool-loop/completion-action-policy.d.ts +9 -1
  10. package/dist/types/cli/credential-vault.d.ts +6 -0
  11. package/dist/types/cli/handlers/community-handler.d.ts +1 -2
  12. package/dist/types/cli/handlers/memory-handler.d.ts +7 -0
  13. package/dist/types/cli/handlers/turn-handler.d.ts +50 -1
  14. package/dist/types/cli/memory-coordinator.d.ts +4 -0
  15. package/dist/types/cli/pet-runtime.d.ts +2 -0
  16. package/dist/types/cli/rpc-registry.d.ts +11 -0
  17. package/dist/types/cli/runtime-hook-bootstrap.d.ts +2 -0
  18. package/dist/types/cli/skill-tools-bootstrap.d.ts +5 -0
  19. package/dist/types/cli/stdio-acp-request-host.d.ts +2 -1
  20. package/dist/types/cli/stdio-rpc-handler-hosts.d.ts +1 -0
  21. package/dist/types/cli/stdio-server.d.ts +4 -0
  22. package/dist/types/cli/task-distillation-coordinator.d.ts +79 -0
  23. package/dist/types/cli/tool-bootstrap-core-registration.d.ts +24 -0
  24. package/dist/types/cli/turn-core.d.ts +0 -6
  25. package/dist/types/cli/turn-project-router.d.ts +9 -0
  26. package/dist/types/contracts/hooks.d.ts +3 -0
  27. package/dist/types/contracts/turn-event.d.ts +8 -4
  28. package/dist/types/orchestration/agent-instance.d.ts +4 -0
  29. package/dist/types/orchestration/context/reactive-compact.d.ts +4 -6
  30. package/dist/types/orchestration/error-handling/retry-loop.d.ts +0 -22
  31. package/dist/types/orchestration/goal-loop-coordinator.d.ts +6 -0
  32. package/dist/types/orchestration/goal-mode-adapters.d.ts +20 -1
  33. package/dist/types/orchestration/goal-run-types.d.ts +10 -0
  34. package/dist/types/orchestration/skill-improvement.d.ts +7 -2
  35. package/dist/types/orchestration/workflow/run-history-store.d.ts +2 -0
  36. package/dist/types/orchestration/workflow/workflow-runtime.d.ts +8 -0
  37. package/dist/types/protocol/methods.d.ts +0 -26
  38. package/dist/types/protocol/wire/acp-agent-management.d.ts +3 -0
  39. package/dist/types/protocol/wire/agent-events.d.ts +2 -2
  40. package/dist/types/protocol/wire/agent-methods.d.ts +0 -11
  41. package/dist/types/protocol/wire/gateway-rpc.d.ts +1 -0
  42. package/dist/types/protocol/wire/memory-provider-lifecycle.d.ts +3 -0
  43. package/dist/types/protocol/wire/notification-payloads.d.ts +27 -0
  44. package/dist/types/runtime/community/community-consent-client.d.ts +0 -21
  45. package/dist/types/runtime/config/tunable-defaults.d.ts +6 -0
  46. package/dist/types/runtime/execution/memory-decay.d.ts +5 -1
  47. package/dist/types/runtime/hooks/context-compression.d.ts +5 -0
  48. package/dist/types/runtime/hooks/memory-hooks.d.ts +16 -0
  49. package/dist/types/runtime/infra/acp-detector.d.ts +8 -0
  50. package/dist/types/runtime/infra/acp-protocol-adapter.d.ts +10 -0
  51. package/dist/types/runtime/infra/agent-paths.d.ts +9 -7
  52. package/dist/types/runtime/infra/agent-process.d.ts +6 -0
  53. package/dist/types/runtime/infra/astraclaw-capabilities.d.ts +9 -6
  54. package/dist/types/runtime/infra/checkpoint-backend.d.ts +1 -1
  55. package/dist/types/runtime/infra/migrate-device-scope.d.ts +49 -0
  56. package/dist/types/runtime/infra/project-data-paths.d.ts +4 -3
  57. package/dist/types/runtime/infra/project-skill-manifest.d.ts +3 -2
  58. package/dist/types/runtime/infra/working-materials-store.d.ts +8 -14
  59. package/dist/types/runtime/pet/pet-profile-service.d.ts +7 -0
  60. package/dist/types/runtime/pet/petdex-forge-service.d.ts +3 -1
  61. package/dist/types/runtime/ports/memory-provider.d.ts +23 -0
  62. package/dist/types/runtime/ports/project-memory-store.d.ts +2 -0
  63. package/dist/types/runtime/prompt/environment-context.d.ts +15 -3
  64. package/dist/types/runtime/prompt/fresh-workspace-evidence.d.ts +7 -0
  65. package/dist/types/runtime/prompt/instruction-loader.d.ts +0 -1
  66. package/dist/types/runtime/session/inbound-upload-persistence.d.ts +4 -0
  67. package/dist/types/runtime/session/session-catalog.d.ts +8 -0
  68. package/dist/types/runtime/session/session-resume.d.ts +5 -0
  69. package/dist/types/runtime/session/session-transcript-store.d.ts +8 -1
  70. package/dist/types/skills/mcp/mcp-manager.d.ts +25 -1
  71. package/dist/types/skills/memory/fts-segment.d.ts +20 -0
  72. package/dist/types/skills/memory/local-memory-provider.d.ts +66 -4
  73. package/dist/types/skills/memory/local-store-records.d.ts +6 -1
  74. package/dist/types/skills/memory/local-store.d.ts +63 -10
  75. package/dist/types/skills/memory/memdir.d.ts +17 -4
  76. package/dist/types/skills/memory/memory-consolidation.d.ts +7 -0
  77. package/dist/types/skills/memory/proposal-consumer.d.ts +51 -0
  78. package/dist/types/skills/memory/sqlite-memory-mappers.d.ts +2 -1
  79. package/dist/types/skills/memory/sqlite-memory-schema.d.ts +9 -1
  80. package/dist/types/skills/memory/task-distillation.d.ts +148 -0
  81. package/dist/types/skills/tools/search-tool.d.ts +6 -0
  82. package/dist/types/skills/tools/shell/task-output.d.ts +2 -0
  83. package/package.json +3 -2
  84. package/dist/types/agent/tool-loop/skill-instruction-policy.d.ts +0 -7
  85. package/dist/types/agent/tool-loop/tool-guardrails.d.ts +0 -24
  86. package/dist/types/cli/tool-bootstrap-community-registration.d.ts +0 -9
  87. package/dist/types/cli/turn-skill-autopersist.d.ts +0 -22
  88. package/dist/types/runtime/community/community-discovery-cache.d.ts +0 -24
  89. package/dist/types/runtime/community/community-discovery-coordinator.d.ts +0 -33
  90. package/dist/types/runtime/hooks/community-discovery-hook.d.ts +0 -18
  91. 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.