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.
- package/README.md +0 -1
- package/dist/agent-contract.js +1 -1
- package/dist/agent.js +29 -29
- package/dist/cli.js +1 -1
- package/dist/host-contract.js +1 -1
- package/dist/index.js +469 -465
- package/dist/orchestration.js +13 -13
- package/dist/project-memory-host.js +19 -18
- package/dist/protocol.js +1 -1
- package/dist/tunables.js +1 -1
- package/dist/types/cli/acp-extended-handlers.d.ts +5 -10
- package/dist/types/cli/acp-extended-host-adapter.d.ts +1 -1
- package/dist/types/cli/community-workflow-installer.d.ts +2 -2
- package/dist/types/cli/handlers/dream-handler.d.ts +6 -0
- package/dist/types/cli/handlers/goal-handler.d.ts +1 -13
- package/dist/types/cli/handlers/product-handler.d.ts +6 -9
- package/dist/types/cli/handlers/solo-handler.d.ts +3 -6
- package/dist/types/cli/handlers/workflow-compute-handler.d.ts +1 -1
- package/dist/types/cli/memory-coordinator.d.ts +0 -2
- package/dist/types/cli/multi-agent-handler-host.d.ts +1 -1
- package/dist/types/cli/orchestration-memory-context.d.ts +1 -0
- package/dist/types/cli/product-coordinator.d.ts +2 -5
- package/dist/types/cli/rpc-registry.d.ts +0 -3
- package/dist/types/cli/runtime-hook-bootstrap.d.ts +0 -2
- package/dist/types/cli/stdio-rpc-handler-hosts.d.ts +2 -1
- package/dist/types/cli/stdio-server.d.ts +2 -3
- package/dist/types/cli/task-distillation-coordinator.d.ts +0 -3
- package/dist/types/host-contract/index.d.ts +0 -10
- package/dist/types/index.d.ts +0 -1
- package/dist/types/orchestration/agent-instance.d.ts +30 -15
- package/dist/types/orchestration/agent-roster.d.ts +2 -2
- package/dist/types/orchestration/goal-loop-coordinator.d.ts +18 -8
- package/dist/types/orchestration/goal-mode-adapters.d.ts +6 -1
- package/dist/types/orchestration/goal-run-persistence.d.ts +12 -10
- package/dist/types/orchestration/goal-run-types.d.ts +3 -21
- package/dist/types/orchestration/index.d.ts +0 -1
- package/dist/types/orchestration/product-checkpoint.d.ts +10 -6
- package/dist/types/orchestration/product-persistence.d.ts +47 -20
- package/dist/types/orchestration/product-planner.d.ts +30 -10
- package/dist/types/orchestration/product-run-coordinator.d.ts +4 -3
- package/dist/types/orchestration/solo-evaluator.d.ts +10 -16
- package/dist/types/orchestration/solo-persistence.d.ts +10 -10
- package/dist/types/orchestration/workflow/budget-permission-gate.d.ts +1 -1
- package/dist/types/orchestration/workflow/capability-catalog.d.ts +11 -34
- package/dist/types/orchestration/workflow/host-executors.d.ts +3 -3
- package/dist/types/orchestration/workflow/n8n-import.d.ts +0 -1
- package/dist/types/orchestration/workflow/node-schema.d.ts +5 -18
- package/dist/types/orchestration/workflow/params-schema.d.ts +7 -16
- package/dist/types/orchestration/workflow/qla-executor-host.d.ts +4 -27
- package/dist/types/orchestration/workflow/workflow-bundle.d.ts +10 -28
- package/dist/types/orchestration/workflow/workflow-controller.d.ts +14 -8
- package/dist/types/orchestration/workflow/workflow-error.d.ts +1 -1
- package/dist/types/orchestration/workflow/workflow-render.d.ts +1 -1
- package/dist/types/orchestration/workflow/workflow-scheduler.d.ts +8 -8
- package/dist/types/orchestration/workflow/workflow-store.d.ts +7 -8
- package/dist/types/orchestration/workflow-chat-builder.d.ts +1 -1
- package/dist/types/protocol/agent-contract.d.ts +7 -7
- package/dist/types/protocol/methods.d.ts +1 -129
- package/dist/types/protocol/notifications.d.ts +1 -1
- package/dist/types/protocol/wire/acp-agent-management.d.ts +45 -24
- package/dist/types/protocol/wire/acp-protocol.d.ts +3 -8
- package/dist/types/protocol/wire/agent-methods.d.ts +2 -468
- package/dist/types/protocol/wire/index.d.ts +1 -1
- package/dist/types/protocol/wire/notification-payloads.d.ts +0 -6
- package/dist/types/protocol/wire/thread-protocol.d.ts +1 -1
- package/dist/types/runtime/config/tunable-defaults.d.ts +0 -9
- package/dist/types/runtime/hooks/memory-hooks.d.ts +1 -1
- package/dist/types/runtime/infra/acp-protocol-adapter.d.ts +1 -2
- package/dist/types/runtime/memory/implicit-extraction.d.ts +4 -1
- package/dist/types/runtime/memory/recall-category-filter.d.ts +0 -12
- package/dist/types/runtime/ports/memory-recall-source.d.ts +1 -0
- package/dist/types/runtime/ports/project-memory-store.d.ts +3 -0
- package/dist/types/skills/memory/memdir.d.ts +1 -2
- package/dist/types/skills/skill-system/skill-lifecycle.d.ts +0 -17
- package/dist/types/skills/skill-system/skill-validation.d.ts +1 -1
- package/dist/types/transport/acp-server.d.ts +1 -5
- package/dist/types/workflow-host.d.ts +2 -4
- package/dist/workflow-host.js +7 -9
- package/package.json +1 -1
- package/dist/types/cli/credential-vault.d.ts +0 -68
- 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
|
|
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
|
|
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,
|
|
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";
|