qlogicagent 2.19.14 → 2.20.2

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 (81) hide show
  1. package/README.md +0 -1
  2. package/dist/agent-contract.js +1 -1
  3. package/dist/agent.js +29 -29
  4. package/dist/cli.js +1 -1
  5. package/dist/host-contract.js +1 -1
  6. package/dist/index.js +469 -465
  7. package/dist/orchestration.js +13 -13
  8. package/dist/project-memory-host.js +19 -18
  9. package/dist/protocol.js +1 -1
  10. package/dist/tunables.js +1 -1
  11. package/dist/types/cli/acp-extended-handlers.d.ts +5 -10
  12. package/dist/types/cli/acp-extended-host-adapter.d.ts +1 -1
  13. package/dist/types/cli/community-workflow-installer.d.ts +2 -2
  14. package/dist/types/cli/handlers/dream-handler.d.ts +6 -0
  15. package/dist/types/cli/handlers/goal-handler.d.ts +1 -13
  16. package/dist/types/cli/handlers/product-handler.d.ts +6 -9
  17. package/dist/types/cli/handlers/solo-handler.d.ts +3 -6
  18. package/dist/types/cli/handlers/workflow-compute-handler.d.ts +1 -1
  19. package/dist/types/cli/memory-coordinator.d.ts +0 -2
  20. package/dist/types/cli/multi-agent-handler-host.d.ts +1 -1
  21. package/dist/types/cli/orchestration-memory-context.d.ts +1 -0
  22. package/dist/types/cli/product-coordinator.d.ts +2 -5
  23. package/dist/types/cli/rpc-registry.d.ts +0 -3
  24. package/dist/types/cli/runtime-hook-bootstrap.d.ts +0 -2
  25. package/dist/types/cli/stdio-rpc-handler-hosts.d.ts +2 -1
  26. package/dist/types/cli/stdio-server.d.ts +2 -3
  27. package/dist/types/cli/task-distillation-coordinator.d.ts +0 -3
  28. package/dist/types/host-contract/index.d.ts +0 -10
  29. package/dist/types/index.d.ts +0 -1
  30. package/dist/types/orchestration/agent-instance.d.ts +30 -15
  31. package/dist/types/orchestration/agent-roster.d.ts +2 -2
  32. package/dist/types/orchestration/goal-loop-coordinator.d.ts +18 -8
  33. package/dist/types/orchestration/goal-mode-adapters.d.ts +6 -1
  34. package/dist/types/orchestration/goal-run-persistence.d.ts +12 -10
  35. package/dist/types/orchestration/goal-run-types.d.ts +3 -21
  36. package/dist/types/orchestration/index.d.ts +0 -1
  37. package/dist/types/orchestration/product-checkpoint.d.ts +10 -6
  38. package/dist/types/orchestration/product-persistence.d.ts +47 -20
  39. package/dist/types/orchestration/product-planner.d.ts +30 -10
  40. package/dist/types/orchestration/product-run-coordinator.d.ts +4 -3
  41. package/dist/types/orchestration/solo-evaluator.d.ts +10 -16
  42. package/dist/types/orchestration/solo-persistence.d.ts +10 -10
  43. package/dist/types/orchestration/workflow/budget-permission-gate.d.ts +1 -1
  44. package/dist/types/orchestration/workflow/capability-catalog.d.ts +11 -34
  45. package/dist/types/orchestration/workflow/host-executors.d.ts +3 -3
  46. package/dist/types/orchestration/workflow/n8n-import.d.ts +0 -1
  47. package/dist/types/orchestration/workflow/node-schema.d.ts +5 -18
  48. package/dist/types/orchestration/workflow/params-schema.d.ts +7 -16
  49. package/dist/types/orchestration/workflow/qla-executor-host.d.ts +4 -27
  50. package/dist/types/orchestration/workflow/workflow-bundle.d.ts +10 -28
  51. package/dist/types/orchestration/workflow/workflow-controller.d.ts +14 -8
  52. package/dist/types/orchestration/workflow/workflow-error.d.ts +1 -1
  53. package/dist/types/orchestration/workflow/workflow-render.d.ts +1 -1
  54. package/dist/types/orchestration/workflow/workflow-scheduler.d.ts +8 -8
  55. package/dist/types/orchestration/workflow/workflow-store.d.ts +7 -8
  56. package/dist/types/orchestration/workflow-chat-builder.d.ts +1 -1
  57. package/dist/types/protocol/agent-contract.d.ts +7 -7
  58. package/dist/types/protocol/methods.d.ts +1 -129
  59. package/dist/types/protocol/notifications.d.ts +1 -1
  60. package/dist/types/protocol/wire/acp-agent-management.d.ts +45 -24
  61. package/dist/types/protocol/wire/acp-protocol.d.ts +3 -8
  62. package/dist/types/protocol/wire/agent-methods.d.ts +2 -468
  63. package/dist/types/protocol/wire/index.d.ts +1 -1
  64. package/dist/types/protocol/wire/notification-payloads.d.ts +0 -6
  65. package/dist/types/protocol/wire/thread-protocol.d.ts +1 -1
  66. package/dist/types/runtime/config/tunable-defaults.d.ts +0 -9
  67. package/dist/types/runtime/hooks/memory-hooks.d.ts +1 -1
  68. package/dist/types/runtime/infra/acp-protocol-adapter.d.ts +1 -2
  69. package/dist/types/runtime/memory/implicit-extraction.d.ts +4 -1
  70. package/dist/types/runtime/memory/recall-category-filter.d.ts +0 -12
  71. package/dist/types/runtime/ports/memory-recall-source.d.ts +1 -0
  72. package/dist/types/runtime/ports/project-memory-store.d.ts +3 -0
  73. package/dist/types/skills/memory/memdir.d.ts +1 -2
  74. package/dist/types/skills/skill-system/skill-lifecycle.d.ts +0 -17
  75. package/dist/types/skills/skill-system/skill-validation.d.ts +1 -1
  76. package/dist/types/transport/acp-server.d.ts +1 -5
  77. package/dist/types/workflow-host.d.ts +2 -4
  78. package/dist/workflow-host.js +7 -9
  79. package/package.json +1 -1
  80. package/dist/types/cli/credential-vault.d.ts +0 -68
  81. package/dist/types/orchestration/skill-improvement.d.ts +0 -97
@@ -46,8 +46,6 @@ export interface CuratorResult {
46
46
  }>;
47
47
  skippedPinned: string[];
48
48
  }
49
- export declare function loadLifecycleStore(agentHome: string): SkillLifecycleStore;
50
- export declare function saveLifecycleStore(agentHome: string, store: SkillLifecycleStore): void;
51
49
  /**
52
50
  * Ensure a lifecycle record exists for a skill. Creates one if missing.
53
51
  */
@@ -74,21 +72,6 @@ export declare function isPinned(store: SkillLifecycleStore, name: string): bool
74
72
  * Call this on agent idle, periodic timer, or explicit RPC.
75
73
  */
76
74
  export declare function runCurator(store: SkillLifecycleStore): CuratorResult;
77
- /**
78
- * Archive a skill on disk: move its directory to `.archive/` subfolder.
79
- * Returns true if archival succeeded.
80
- */
81
- export declare function archiveSkillOnDisk(skillsDir: string, skillName: string): boolean;
82
- /**
83
- * Unarchive a skill: move from `.archive/` back to main skills dir.
84
- * Resets state to active.
85
- */
86
- export declare function unarchiveSkillOnDisk(skillsDir: string, skillName: string): boolean;
87
- /**
88
- * Execute full curator cycle: evaluate state transitions + archive on disk.
89
- * Returns curator result with all transitions made.
90
- */
91
- export declare function executeCuratorCycle(agentHome: string, skillsDir: string): CuratorResult;
92
75
  /**
93
76
  * Get all skills in a given state.
94
77
  */
@@ -13,7 +13,7 @@ export declare const MAX_DESCRIPTION_LENGTH = 60;
13
13
  export declare function validateSkillContent(content: string, expectedName?: string): FrontmatterValidationResult;
14
14
  /**
15
15
  * Generate valid SKILL.md content with proper frontmatter from minimal inputs.
16
- * Used when auto-persisting skills from skill_instruction events.
16
+ * Used when auto-persisting skills from skill tool mutations.
17
17
  */
18
18
  export declare function generateSkillContent(params: {
19
19
  name: string;
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * Responsibilities:
10
10
  * - Accepts ACP standard methods: initialize, session/new, session/prompt, session/close
11
- * - Accepts x/ extended methods: x/abort, x/dream, x/solo.*, x/product.*
11
+ * - Accepts x/ extended methods: x/abort, x/dream, x/solo.*, x/product.*, x/goal.*, x/workflow.*
12
12
  * - Emits ACP session/update notifications (standard + x_ extended)
13
13
  * - Translates host permission responses back to the agent
14
14
  *
@@ -75,7 +75,6 @@ export interface AcpRequestHandler {
75
75
  summary?: string;
76
76
  }>;
77
77
  handleAcpSoloStart(params: Record<string, unknown>): Promise<unknown>;
78
- handleAcpSoloStatus(params: Record<string, unknown>): Promise<unknown>;
79
78
  handleAcpSoloSelect(params: Record<string, unknown>): Promise<unknown>;
80
79
  handleAcpSoloCancel(params: Record<string, unknown>): Promise<unknown>;
81
80
  handleAcpSoloSubscribe(params: Record<string, unknown>): Promise<unknown>;
@@ -94,17 +93,14 @@ export interface AcpRequestHandler {
94
93
  handleAcpProductCancel(params: Record<string, unknown>): Promise<unknown>;
95
94
  handleAcpProductRollback(params: Record<string, unknown>): Promise<unknown>;
96
95
  handleAcpProductReplay(params: Record<string, unknown>): Promise<unknown>;
97
- handleAcpProductStatus(params: Record<string, unknown>): Promise<unknown>;
98
96
  handleAcpProductSubscribe(params: Record<string, unknown>): Promise<unknown>;
99
97
  handleAcpGoalStart(params: Record<string, unknown>): Promise<unknown>;
100
- handleAcpGoalStatus(params: Record<string, unknown>): Promise<unknown>;
101
98
  handleAcpGoalPause(params: Record<string, unknown>): Promise<unknown>;
102
99
  handleAcpGoalResume(params: Record<string, unknown>): Promise<unknown>;
103
100
  handleAcpGoalUpdateGoal(params: Record<string, unknown>): Promise<unknown>;
104
101
  handleAcpGoalStop(params: Record<string, unknown>): Promise<unknown>;
105
102
  handleAcpGoalMessage(params: Record<string, unknown>): Promise<unknown>;
106
103
  handleAcpGoalSubscribe(params: Record<string, unknown>): Promise<unknown>;
107
- handleAcpGoalEvents(params: Record<string, unknown>): Promise<unknown>;
108
104
  }
109
105
  export interface AcpServerConfig {
110
106
  verbose?: boolean;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Host-owned Workflow module surface.
3
3
  *
4
- * All exports are inert until the gateway constructs a project-scoped store/controller/scheduler.
4
+ * All exports are inert until Runtime's Gateway Host constructs a project-scoped store/controller/scheduler.
5
5
  * The qlogicagent executable must consume the injected MCP capability instead of constructing these
6
6
  * owners itself after cutover.
7
7
  */
@@ -18,9 +18,7 @@ export type { RunResult, WorkflowRuntimeOptions } from "./orchestration/workflow
18
18
  export { NodeRegistry } from "./orchestration/workflow/node-registry.js";
19
19
  export { hostExecutors, HOST_BACKED_KINDS } from "./orchestration/workflow/host-executors.js";
20
20
  export type { ExecutorHost } from "./orchestration/workflow/node-schema.js";
21
- export type { AgentHostRequest, ApprovalHostRequest, ChannelHostRequest, HttpHostRequest, McpHostRequest, MemoryHostRequest, SubworkflowHostRequest, ToolHostRequest, WebhookWaitHostRequest, } from "./orchestration/workflow/node-schema.js";
22
- export { CredentialVault, credentialToHeaders } from "./cli/credential-vault.js";
23
- export type { CredentialData, CredentialSummary, CredentialType } from "./cli/credential-vault.js";
21
+ export type { AgentHostRequest, ApprovalHostRequest, ChannelHostRequest, HttpHostRequest, McpHostRequest, MemoryHostRequest, SubworkflowHostRequest, WebhookWaitHostRequest, } from "./orchestration/workflow/node-schema.js";
24
22
  export { WorkflowRunHistoryStore } from "./orchestration/workflow/run-history-store.js";
25
23
  export { FileRunCheckpoint } from "./orchestration/workflow/run-checkpoint-store.js";
26
24
  export type { RunCheckpoint } from "./orchestration/workflow/run-checkpoint-store.js";