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.
Files changed (78) hide show
  1. package/dist/agent.js +21 -21
  2. package/dist/cli.js +1 -1566
  3. package/dist/index.js +445 -421
  4. package/dist/orchestration.js +7 -7
  5. package/dist/protocol.js +1 -1
  6. package/dist/skills/builtin/desktop-screenshot/SKILL.md +62 -0
  7. package/dist/skills/builtin/office-doc-reading/SKILL.md +19 -0
  8. package/dist/skills/mcp/astraclaw-native-mcp-server.js +7 -6
  9. package/dist/types/agent/tool-loop/artifact-final-contract.d.ts +18 -0
  10. package/dist/types/agent/tool-loop/loop-helpers.d.ts +9 -0
  11. package/dist/types/agent/tool-loop.d.ts +14 -5
  12. package/dist/types/agent/types.d.ts +5 -0
  13. package/dist/types/cli/acp-session-handlers.d.ts +8 -1
  14. package/dist/types/cli/acp-session-host.d.ts +5 -1
  15. package/dist/types/cli/default-project-bootstrap.d.ts +33 -0
  16. package/dist/types/cli/handlers/agents-handler.d.ts +9 -0
  17. package/dist/types/cli/handlers/config-handler.d.ts +5 -0
  18. package/dist/types/cli/handlers/files-handler.d.ts +7 -0
  19. package/dist/types/cli/handlers/session-handler.d.ts +49 -0
  20. package/dist/types/cli/handlers/turn-handler.d.ts +77 -0
  21. package/dist/types/cli/media-understanding.d.ts +45 -0
  22. package/dist/types/cli/permission-rule-persistence.d.ts +16 -0
  23. package/dist/types/cli/session-context.d.ts +5 -1
  24. package/dist/types/cli/stdio-acp-request-host.d.ts +1 -1
  25. package/dist/types/cli/stdio-rpc-handler-hosts.d.ts +4 -0
  26. package/dist/types/cli/stdio-server.d.ts +17 -1
  27. package/dist/types/cli/tool-bootstrap-core-registration.d.ts +2 -0
  28. package/dist/types/cli/turn-core.d.ts +2 -0
  29. package/dist/types/orchestration/agent-instance.d.ts +4 -0
  30. package/dist/types/orchestration/delegation-coordinator.d.ts +10 -0
  31. package/dist/types/orchestration/product-persistence.d.ts +4 -0
  32. package/dist/types/orchestration/workflow/capability-catalog.d.ts +1 -1
  33. package/dist/types/orchestration/workflow/workflow-controller.d.ts +1 -1
  34. package/dist/types/orchestration/workflow/workflow-runtime.d.ts +1 -1
  35. package/dist/types/protocol/notifications.d.ts +1 -1
  36. package/dist/types/protocol/wire/acp-agent-management.d.ts +16 -0
  37. package/dist/types/protocol/wire/agent-events.d.ts +2 -2
  38. package/dist/types/protocol/wire/agent-methods.d.ts +3 -0
  39. package/dist/types/protocol/wire/index.d.ts +1 -1
  40. package/dist/types/protocol/wire/notification-payloads.d.ts +26 -0
  41. package/dist/types/runtime/execution/turn-progress-notifier.d.ts +16 -0
  42. package/dist/types/runtime/infra/acp-detector.d.ts +40 -6
  43. package/dist/types/runtime/infra/acp-protocol-adapter.d.ts +14 -0
  44. package/dist/types/runtime/infra/agent-process.d.ts +16 -0
  45. package/dist/types/runtime/infra/astraclaw-capabilities.d.ts +2 -2
  46. package/dist/types/runtime/infra/builtin-skills-seed.d.ts +31 -0
  47. package/dist/types/runtime/infra/llmrouter-catalog.d.ts +26 -6
  48. package/dist/types/runtime/infra/model-registry.d.ts +43 -2
  49. package/dist/types/runtime/infra/project-data-gc.d.ts +7 -1
  50. package/dist/types/runtime/infra/skill-resolver.d.ts +15 -0
  51. package/dist/types/runtime/infra/user-dirs.d.ts +21 -0
  52. package/dist/types/runtime/permission-model.d.ts +1 -1
  53. package/dist/types/runtime/ports/permission-contracts.d.ts +5 -2
  54. package/dist/types/runtime/prompt/environment-context.d.ts +24 -2
  55. package/dist/types/runtime/prompt/fresh-workspace-evidence.d.ts +1 -2
  56. package/dist/types/runtime/prompt/identity-section.d.ts +17 -0
  57. package/dist/types/runtime/session/inbound-upload-persistence.d.ts +20 -0
  58. package/dist/types/runtime/session/native/claude-session-source.d.ts +23 -0
  59. package/dist/types/runtime/session/native/codex-index.d.ts +21 -0
  60. package/dist/types/runtime/session/native/codex-session-source.d.ts +31 -0
  61. package/dist/types/runtime/session/native/cwd-normalize.d.ts +53 -0
  62. package/dist/types/runtime/session/native/ephemeral-rollout-sweep.d.ts +13 -0
  63. package/dist/types/runtime/session/native/native-cwd-agents.d.ts +17 -0
  64. package/dist/types/runtime/session/native/native-session-source.d.ts +89 -0
  65. package/dist/types/runtime/session/native/native-title.d.ts +1 -0
  66. package/dist/types/runtime/session/native/register-builtin-sources.d.ts +1 -0
  67. package/dist/types/runtime/session/session-recovery.d.ts +58 -0
  68. package/dist/types/runtime/session/session-types.d.ts +30 -0
  69. package/dist/types/skills/permissions/hook-runner.d.ts +9 -0
  70. package/dist/types/skills/permissions/settings-watcher.d.ts +7 -0
  71. package/dist/types/skills/tools/exec-tool.d.ts +1 -1
  72. package/dist/types/skills/tools/shell/command-classification.d.ts +1 -0
  73. package/dist/types/skills/tools/shell/index.d.ts +3 -3
  74. package/dist/types/skills/tools/shell/powershell-provider.d.ts +8 -3
  75. package/dist/types/skills/tools/shell/shell-exec.d.ts +18 -0
  76. package/dist/types/skills/tools/shell/shell-provider.d.ts +67 -5
  77. package/dist/types/transport/acp-server.d.ts +6 -0
  78. 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.