qlogicagent 2.18.1 → 2.18.3

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 +40 -22
  2. package/dist/cli.js +1 -1
  3. package/dist/index.js +528 -470
  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/agent/tool-loop/compression-pipeline.d.ts +2 -0
  11. package/dist/types/agent/tool-loop/loop-helpers.d.ts +1 -0
  12. package/dist/types/agent/tool-loop/tool-failure-policy.d.ts +13 -1
  13. package/dist/types/agent/tool-loop.d.ts +8 -0
  14. package/dist/types/agent/types.d.ts +2 -0
  15. package/dist/types/cli/credential-vault.d.ts +6 -0
  16. package/dist/types/cli/handlers/turn-handler.d.ts +50 -1
  17. package/dist/types/cli/handlers/workflow-handler.d.ts +1 -0
  18. package/dist/types/cli/memory-coordinator.d.ts +4 -0
  19. package/dist/types/cli/pet-runtime.d.ts +2 -0
  20. package/dist/types/cli/rpc-registry.d.ts +11 -0
  21. package/dist/types/cli/runtime-hook-bootstrap.d.ts +2 -0
  22. package/dist/types/cli/skill-tools-bootstrap.d.ts +5 -0
  23. package/dist/types/cli/stdio-acp-request-host.d.ts +2 -1
  24. package/dist/types/cli/stdio-rpc-handler-hosts.d.ts +1 -0
  25. package/dist/types/cli/stdio-server.d.ts +4 -0
  26. package/dist/types/cli/task-distillation-coordinator.d.ts +79 -0
  27. package/dist/types/cli/tool-bootstrap-core-registration.d.ts +24 -0
  28. package/dist/types/cli/turn-core.d.ts +0 -6
  29. package/dist/types/cli/turn-project-router.d.ts +9 -0
  30. package/dist/types/contracts/hooks.d.ts +3 -0
  31. package/dist/types/contracts/turn-event.d.ts +8 -4
  32. package/dist/types/orchestration/agent-instance.d.ts +11 -1
  33. package/dist/types/orchestration/agent-roster.d.ts +12 -0
  34. package/dist/types/orchestration/context/reactive-compact.d.ts +4 -6
  35. package/dist/types/orchestration/dag-scheduler.d.ts +3 -0
  36. package/dist/types/orchestration/delegation-coordinator.d.ts +6 -1
  37. package/dist/types/orchestration/error-handling/retry-loop.d.ts +0 -22
  38. package/dist/types/orchestration/goal-loop-coordinator.d.ts +10 -1
  39. package/dist/types/orchestration/goal-mode-adapters.d.ts +23 -2
  40. package/dist/types/orchestration/goal-run-types.d.ts +12 -0
  41. package/dist/types/orchestration/product-budget.d.ts +13 -0
  42. package/dist/types/orchestration/product-planner.d.ts +7 -2
  43. package/dist/types/orchestration/product-run-coordinator.d.ts +1 -0
  44. package/dist/types/orchestration/skill-improvement.d.ts +7 -2
  45. package/dist/types/orchestration/workflow/budget-permission-gate.d.ts +9 -0
  46. package/dist/types/orchestration/workflow/node-schema.d.ts +4 -1
  47. package/dist/types/orchestration/workflow/run-history-store.d.ts +2 -0
  48. package/dist/types/orchestration/workflow/workflow-runtime.d.ts +8 -0
  49. package/dist/types/orchestration/workflow/workflow-trigger.d.ts +5 -1
  50. package/dist/types/protocol/wire/acp-agent-management.d.ts +3 -0
  51. package/dist/types/protocol/wire/agent-events.d.ts +2 -2
  52. package/dist/types/protocol/wire/gateway-rpc.d.ts +1 -0
  53. package/dist/types/protocol/wire/memory-provider-lifecycle.d.ts +3 -0
  54. package/dist/types/protocol/wire/notification-payloads.d.ts +27 -0
  55. package/dist/types/runtime/config/tunable-defaults.d.ts +6 -0
  56. package/dist/types/runtime/execution/memory-decay.d.ts +5 -1
  57. package/dist/types/runtime/execution/streaming-tool-executor.d.ts +2 -0
  58. package/dist/types/runtime/execution/tool-result-storage.d.ts +6 -4
  59. package/dist/types/runtime/hooks/context-compression.d.ts +5 -0
  60. package/dist/types/runtime/hooks/memory-hooks.d.ts +10 -0
  61. package/dist/types/runtime/infra/acp-detector.d.ts +8 -0
  62. package/dist/types/runtime/infra/acp-protocol-adapter.d.ts +19 -1
  63. package/dist/types/runtime/infra/agent-process.d.ts +6 -0
  64. package/dist/types/runtime/infra/astraclaw-capabilities.d.ts +9 -0
  65. package/dist/types/runtime/infra/external-agent-pool.d.ts +12 -0
  66. package/dist/types/runtime/infra/working-materials-store.d.ts +8 -14
  67. package/dist/types/runtime/pet/pet-profile-service.d.ts +7 -0
  68. package/dist/types/runtime/pet/petdex-forge-service.d.ts +3 -1
  69. package/dist/types/runtime/ports/agent-runtime-ports.d.ts +4 -1
  70. package/dist/types/runtime/ports/memory-provider.d.ts +2 -0
  71. package/dist/types/runtime/ports/project-memory-store.d.ts +2 -0
  72. package/dist/types/runtime/prompt/environment-context.d.ts +25 -3
  73. package/dist/types/runtime/prompt/fresh-workspace-evidence.d.ts +7 -2
  74. package/dist/types/runtime/prompt/instruction-loader.d.ts +0 -1
  75. package/dist/types/runtime/session/inbound-upload-persistence.d.ts +12 -0
  76. package/dist/types/runtime/session/session-catalog.d.ts +8 -0
  77. package/dist/types/runtime/session/session-resource-key.d.ts +28 -0
  78. package/dist/types/runtime/session/session-resume.d.ts +5 -0
  79. package/dist/types/runtime/session/session-transcript-store.d.ts +10 -1
  80. package/dist/types/runtime/session/session-types.d.ts +29 -0
  81. package/dist/types/skills/mcp/mcp-manager.d.ts +25 -1
  82. package/dist/types/skills/memory/local-memory-provider.d.ts +14 -0
  83. package/dist/types/skills/memory/local-store.d.ts +2 -0
  84. package/dist/types/skills/memory/memdir.d.ts +8 -0
  85. package/dist/types/skills/memory/task-distillation.d.ts +148 -0
  86. package/dist/types/skills/tools/search-tool.d.ts +6 -0
  87. package/dist/types/skills/tools/shell/task-output.d.ts +2 -0
  88. package/package.json +4 -3
  89. package/dist/types/agent/tool-loop/skill-instruction-policy.d.ts +0 -7
  90. package/dist/types/agent/tool-loop/tool-guardrails.d.ts +0 -24
  91. package/dist/types/cli/turn-skill-autopersist.d.ts +0 -22

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.