@zaalipro/dsh-workflows 0.1.0-rc.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.
- package/LICENSE +21 -0
- package/NOTICE.md +224 -0
- package/README.i18n.yaml +4 -0
- package/README.md +109 -0
- package/README.zh.md +109 -0
- package/cordis.patch.yml +10 -0
- package/docs/architecture.i18n.yaml +4 -0
- package/docs/architecture.md +177 -0
- package/docs/architecture.zh.md +177 -0
- package/docs/testing.i18n.yaml +4 -0
- package/docs/testing.md +125 -0
- package/docs/testing.zh.md +125 -0
- package/docs/user-guide.i18n.yaml +4 -0
- package/docs/user-guide.md +351 -0
- package/docs/user-guide.zh.md +351 -0
- package/lib/client-types/WorkflowMemberInspector.d.ts +28 -0
- package/lib/client-types/WorkflowMemberInspector.d.ts.map +1 -0
- package/lib/client-types/WorkflowMemberInspector.js +181 -0
- package/lib/client-types/WorkflowMemberInspector.js.map +1 -0
- package/lib/client-types/WorkflowRunPanel.d.ts +43 -0
- package/lib/client-types/WorkflowRunPanel.d.ts.map +1 -0
- package/lib/client-types/WorkflowRunPanel.js +130 -0
- package/lib/client-types/WorkflowRunPanel.js.map +1 -0
- package/lib/client-types/WorkflowsDashboard.d.ts +49 -0
- package/lib/client-types/WorkflowsDashboard.d.ts.map +1 -0
- package/lib/client-types/WorkflowsDashboard.js +942 -0
- package/lib/client-types/WorkflowsDashboard.js.map +1 -0
- package/lib/client-types/adapter.d.ts +60 -0
- package/lib/client-types/adapter.d.ts.map +1 -0
- package/lib/client-types/adapter.js +117 -0
- package/lib/client-types/adapter.js.map +1 -0
- package/lib/client-types/chat-renderer.d.ts +10 -0
- package/lib/client-types/chat-renderer.d.ts.map +1 -0
- package/lib/client-types/chat-renderer.js +11 -0
- package/lib/client-types/chat-renderer.js.map +1 -0
- package/lib/client-types/contract.d.ts +210 -0
- package/lib/client-types/contract.d.ts.map +1 -0
- package/lib/client-types/contract.js +37 -0
- package/lib/client-types/contract.js.map +1 -0
- package/lib/client-types/controller.d.ts +83 -0
- package/lib/client-types/controller.d.ts.map +1 -0
- package/lib/client-types/controller.js +705 -0
- package/lib/client-types/controller.js.map +1 -0
- package/lib/client-types/index.d.ts +19 -0
- package/lib/client-types/index.d.ts.map +1 -0
- package/lib/client-types/index.js +730 -0
- package/lib/client-types/index.js.map +1 -0
- package/lib/client-types/locales.d.ts +257 -0
- package/lib/client-types/locales.d.ts.map +1 -0
- package/lib/client-types/locales.js +270 -0
- package/lib/client-types/locales.js.map +1 -0
- package/lib/client-types/slot-components.d.ts +38 -0
- package/lib/client-types/slot-components.d.ts.map +1 -0
- package/lib/client-types/slot-components.js +22 -0
- package/lib/client-types/slot-components.js.map +1 -0
- package/lib/client-types/store.d.ts +69 -0
- package/lib/client-types/store.d.ts.map +1 -0
- package/lib/client-types/store.js +135 -0
- package/lib/client-types/store.js.map +1 -0
- package/lib/client-types/workflow-definition.d.ts +52 -0
- package/lib/client-types/workflow-definition.d.ts.map +1 -0
- package/lib/client-types/workflow-definition.js +135 -0
- package/lib/client-types/workflow-definition.js.map +1 -0
- package/lib/client.js +11064 -0
- package/lib/client.js.map +1 -0
- package/lib/compat-engine/index.js +1926 -0
- package/lib/compat-engine/index.js.map +1 -0
- package/lib/compat-engine/worker.cjs +1500 -0
- package/lib/compat-engine/worker.cjs.map +1 -0
- package/lib/typert.host.d.ts +3 -0
- package/lib/typert.host.js +1709 -0
- package/lib/typert.remote-client.d.ts +57 -0
- package/lib/typert.remote-client.js +1662 -0
- package/lib/types/commands/aliases.d.ts +4 -0
- package/lib/types/commands/aliases.d.ts.map +1 -0
- package/lib/types/commands/aliases.js +25 -0
- package/lib/types/commands/aliases.js.map +1 -0
- package/lib/types/commands/index.d.ts +66 -0
- package/lib/types/commands/index.d.ts.map +1 -0
- package/lib/types/commands/index.js +550 -0
- package/lib/types/commands/index.js.map +1 -0
- package/lib/types/commands/parser.d.ts +17 -0
- package/lib/types/commands/parser.d.ts.map +1 -0
- package/lib/types/commands/parser.js +45 -0
- package/lib/types/commands/parser.js.map +1 -0
- package/lib/types/config.d.ts +71 -0
- package/lib/types/config.d.ts.map +1 -0
- package/lib/types/config.js +109 -0
- package/lib/types/config.js.map +1 -0
- package/lib/types/index.d.ts +41 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/index.js +483 -0
- package/lib/types/index.js.map +1 -0
- package/lib/types/invariant.d.ts +21 -0
- package/lib/types/invariant.d.ts.map +1 -0
- package/lib/types/invariant.js +85 -0
- package/lib/types/invariant.js.map +1 -0
- package/lib/types/registry/definition.d.ts +24 -0
- package/lib/types/registry/definition.d.ts.map +1 -0
- package/lib/types/registry/definition.js +189 -0
- package/lib/types/registry/definition.js.map +1 -0
- package/lib/types/registry/index.d.ts +100 -0
- package/lib/types/registry/index.d.ts.map +1 -0
- package/lib/types/registry/index.js +899 -0
- package/lib/types/registry/index.js.map +1 -0
- package/lib/types/registry/names.d.ts +19 -0
- package/lib/types/registry/names.d.ts.map +1 -0
- package/lib/types/registry/names.js +69 -0
- package/lib/types/registry/names.js.map +1 -0
- package/lib/types/registry/remote.d.ts +15 -0
- package/lib/types/registry/remote.d.ts.map +1 -0
- package/lib/types/registry/remote.js +128 -0
- package/lib/types/registry/remote.js.map +1 -0
- package/lib/types/registry/roots.d.ts +44 -0
- package/lib/types/registry/roots.d.ts.map +1 -0
- package/lib/types/registry/roots.js +118 -0
- package/lib/types/registry/roots.js.map +1 -0
- package/lib/types/registry/types.d.ts +62 -0
- package/lib/types/registry/types.d.ts.map +1 -0
- package/lib/types/registry/types.js +2 -0
- package/lib/types/registry/types.js.map +1 -0
- package/lib/types/registry/watchers.d.ts +70 -0
- package/lib/types/registry/watchers.d.ts.map +1 -0
- package/lib/types/registry/watchers.js +152 -0
- package/lib/types/registry/watchers.js.map +1 -0
- package/lib/types/remote-events.d.ts +42 -0
- package/lib/types/remote-events.d.ts.map +1 -0
- package/lib/types/remote-events.js +21 -0
- package/lib/types/remote-events.js.map +1 -0
- package/lib/types/run-recorder.d.ts +44 -0
- package/lib/types/run-recorder.d.ts.map +1 -0
- package/lib/types/run-recorder.js +356 -0
- package/lib/types/run-recorder.js.map +1 -0
- package/lib/types/supervisor/canned-validate.d.ts +25 -0
- package/lib/types/supervisor/canned-validate.d.ts.map +1 -0
- package/lib/types/supervisor/canned-validate.js +122 -0
- package/lib/types/supervisor/canned-validate.js.map +1 -0
- package/lib/types/supervisor/completion-notice.d.ts +49 -0
- package/lib/types/supervisor/completion-notice.d.ts.map +1 -0
- package/lib/types/supervisor/completion-notice.js +281 -0
- package/lib/types/supervisor/completion-notice.js.map +1 -0
- package/lib/types/supervisor/cursors.d.ts +68 -0
- package/lib/types/supervisor/cursors.d.ts.map +1 -0
- package/lib/types/supervisor/cursors.js +158 -0
- package/lib/types/supervisor/cursors.js.map +1 -0
- package/lib/types/supervisor/engine-compat.d.ts +48 -0
- package/lib/types/supervisor/engine-compat.d.ts.map +1 -0
- package/lib/types/supervisor/engine-compat.js +116 -0
- package/lib/types/supervisor/engine-compat.js.map +1 -0
- package/lib/types/supervisor/index.d.ts +183 -0
- package/lib/types/supervisor/index.d.ts.map +1 -0
- package/lib/types/supervisor/index.js +2040 -0
- package/lib/types/supervisor/index.js.map +1 -0
- package/lib/types/supervisor/parallel-compat.d.ts +36 -0
- package/lib/types/supervisor/parallel-compat.d.ts.map +1 -0
- package/lib/types/supervisor/parallel-compat.js +180 -0
- package/lib/types/supervisor/parallel-compat.js.map +1 -0
- package/lib/types/supervisor/remote.d.ts +25 -0
- package/lib/types/supervisor/remote.d.ts.map +1 -0
- package/lib/types/supervisor/remote.js +478 -0
- package/lib/types/supervisor/remote.js.map +1 -0
- package/lib/types/supervisor/storage/bounded-file.d.ts +41 -0
- package/lib/types/supervisor/storage/bounded-file.d.ts.map +1 -0
- package/lib/types/supervisor/storage/bounded-file.js +186 -0
- package/lib/types/supervisor/storage/bounded-file.js.map +1 -0
- package/lib/types/supervisor/storage/details-codec.d.ts +14 -0
- package/lib/types/supervisor/storage/details-codec.d.ts.map +1 -0
- package/lib/types/supervisor/storage/details-codec.js +359 -0
- package/lib/types/supervisor/storage/details-codec.js.map +1 -0
- package/lib/types/supervisor/storage/index.d.ts +26 -0
- package/lib/types/supervisor/storage/index.d.ts.map +1 -0
- package/lib/types/supervisor/storage/index.js +100 -0
- package/lib/types/supervisor/storage/index.js.map +1 -0
- package/lib/types/supervisor/storage/lease.d.ts +34 -0
- package/lib/types/supervisor/storage/lease.d.ts.map +1 -0
- package/lib/types/supervisor/storage/lease.js +289 -0
- package/lib/types/supervisor/storage/lease.js.map +1 -0
- package/lib/types/supervisor/storage/manifest-codec.d.ts +10 -0
- package/lib/types/supervisor/storage/manifest-codec.d.ts.map +1 -0
- package/lib/types/supervisor/storage/manifest-codec.js +335 -0
- package/lib/types/supervisor/storage/manifest-codec.js.map +1 -0
- package/lib/types/supervisor/storage/manifest-store.d.ts +99 -0
- package/lib/types/supervisor/storage/manifest-store.d.ts.map +1 -0
- package/lib/types/supervisor/storage/manifest-store.js +1606 -0
- package/lib/types/supervisor/storage/manifest-store.js.map +1 -0
- package/lib/types/supervisor/storage/manifest-types.d.ts +269 -0
- package/lib/types/supervisor/storage/manifest-types.d.ts.map +1 -0
- package/lib/types/supervisor/storage/manifest-types.js +2 -0
- package/lib/types/supervisor/storage/manifest-types.js.map +1 -0
- package/lib/types/supervisor/storage/private-root.d.ts +143 -0
- package/lib/types/supervisor/storage/private-root.d.ts.map +1 -0
- package/lib/types/supervisor/storage/private-root.js +860 -0
- package/lib/types/supervisor/storage/private-root.js.map +1 -0
- package/lib/types/supervisor/storage/recovery.d.ts +14 -0
- package/lib/types/supervisor/storage/recovery.d.ts.map +1 -0
- package/lib/types/supervisor/storage/recovery.js +126 -0
- package/lib/types/supervisor/storage/recovery.js.map +1 -0
- package/lib/types/supervisor/storage/run-files.d.ts +67 -0
- package/lib/types/supervisor/storage/run-files.d.ts.map +1 -0
- package/lib/types/supervisor/storage/run-files.js +346 -0
- package/lib/types/supervisor/storage/run-files.js.map +1 -0
- package/lib/types/supervisor/types.d.ts +295 -0
- package/lib/types/supervisor/types.d.ts.map +1 -0
- package/lib/types/supervisor/types.js +3 -0
- package/lib/types/supervisor/types.js.map +1 -0
- package/lib/types/supervisor/value-view.d.ts +19 -0
- package/lib/types/supervisor/value-view.d.ts.map +1 -0
- package/lib/types/supervisor/value-view.js +183 -0
- package/lib/types/supervisor/value-view.js.map +1 -0
- package/lib/types/tool/index.d.ts +86 -0
- package/lib/types/tool/index.d.ts.map +1 -0
- package/lib/types/tool/index.js +810 -0
- package/lib/types/tool/index.js.map +1 -0
- package/lib/types/tool/schema.d.ts +158 -0
- package/lib/types/tool/schema.d.ts.map +1 -0
- package/lib/types/tool/schema.js +137 -0
- package/lib/types/tool/schema.js.map +1 -0
- package/lib/types/types.d.ts +9 -0
- package/lib/types/types.d.ts.map +1 -0
- package/lib/types/types.js +3 -0
- package/lib/types/types.js.map +1 -0
- package/lib/types/user-questions.d.ts +9 -0
- package/lib/types/user-questions.d.ts.map +1 -0
- package/lib/types/user-questions.js +91 -0
- package/lib/types/user-questions.js.map +1 -0
- package/package.json +273 -0
- package/skills/create-workflow/SKILL.md +166 -0
- package/vendor/workflow-engine/LICENSE +21 -0
- package/vendor/workflow-engine/README.md +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contract.js","sourceRoot":"","sources":["../../src/client/contract.ts"],"names":[],"mappings":"AAkEA,MAAM,OAAO,uBAAwB,SAAQ,KAAK;IAIrC;IAEA;IALO,IAAI,GAAG,yBAAyB,CAAA;IAElD,YACW,IAA+B,EACxC,OAAe,EACN,OAA2C;QAEpD,KAAK,CAAC,OAAO,CAAC,CAAA;QAJL,SAAI,GAAJ,IAAI,CAA2B;QAE/B,YAAO,GAAP,OAAO,CAAoC;IAGtD,CAAC;CACF;AAED,iFAAiF;AACjF,MAAM,UAAU,0BAA0B,CAAI,KAAc;IAC1D,IAAI,KAAK,GAAG,KAAK,CAAA;IACjB,4EAA4E;IAC5E,yEAAyE;IACzE,yEAAyE;IACzE,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC;YAAE,MAAK;QACrF,MAAM,OAAO,GAAG,KAOf,CAAA;QACD,IAAI,OAAO,CAAC,EAAE,KAAK,IAAI,EAAE,CAAC;YACxB,KAAK,GAAG,OAAO,CAAC,KAAK,CAAA;YACrB,SAAQ;QACV,CAAC;QACD,IAAI,OAAO,CAAC,EAAE,KAAK,KAAK,EAAE,CAAC;YACzB,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ,IAAI,OAAO,CAAC,KAAK,KAAK,IAAI;gBACzE,CAAC,CAAC,OAAO,CAAC,KAA4F;gBACtG,CAAC,CAAC,OAAO,CAAA;YACX,MAAM,IAAI,uBAAuB,CAC/B,MAAM,CAAC,OAAO,CAAC,IAAI,IAAI,qBAAqB,CAA8B,EAC1E,MAAM,CAAC,OAAO,CAAC,OAAO,IAAI,sCAAsC,CAAC,EACjE,OAAO,OAAO,CAAC,OAAO,KAAK,QAAQ,IAAI,OAAO,CAAC,OAAO,KAAK,IAAI;gBAC7D,CAAC,CAAC,OAAO,CAAC,OAA4C;gBACtD,CAAC,CAAC,SAAS,CACd,CAAA;QACH,CAAC;QACD,MAAK;IACP,CAAC;IACD,OAAO,KAAU,CAAA;AACnB,CAAC"}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import type { ClientAgentCatalog, WorkflowRemoteClient, WorkflowRunsSource, WorkflowRunsSourceSnapshot, WorkflowRunAction, WorkflowRunArtifactChunk, WorkflowRunArtifactPage, WorkflowRunDetail, WorkflowRunLogPage, WorkflowRunMemberDetail, WorkflowRunMemberPage, WorkflowRunResultView, WorkflowRunControlResult, WorkflowRunsOperations } from './contract.js';
|
|
2
|
+
/**
|
|
3
|
+
* Stock Harness does not expose the optional workflow invalidation event lane.
|
|
4
|
+
* Keep the currently observed dashboard Session live without allowing a slow
|
|
5
|
+
* request to build up an interval backlog.
|
|
6
|
+
*/
|
|
7
|
+
export declare const WORKFLOW_RUN_POLL_INTERVAL_MS = 2000;
|
|
8
|
+
type Change = {
|
|
9
|
+
readonly kind: 'invalidate-all';
|
|
10
|
+
} | {
|
|
11
|
+
readonly kind: 'invalidate';
|
|
12
|
+
readonly sessionId: string;
|
|
13
|
+
readonly revision: number;
|
|
14
|
+
};
|
|
15
|
+
/** Lazy, revision-fenced browser source for retained workflow runs. */
|
|
16
|
+
export declare class WorkflowRunsController implements WorkflowRunsOperations {
|
|
17
|
+
private readonly connection?;
|
|
18
|
+
private readonly states;
|
|
19
|
+
/** Exact workflowRuns namespace. The client plugin replaces its empty
|
|
20
|
+
* pre-mount transport with root.get('remote.workflowRuns'). */
|
|
21
|
+
private remoteNamespace;
|
|
22
|
+
private readonly agents?;
|
|
23
|
+
private connectionGeneration;
|
|
24
|
+
private connected;
|
|
25
|
+
private observed?;
|
|
26
|
+
private disposed;
|
|
27
|
+
private pollTimer?;
|
|
28
|
+
private pollGeneration;
|
|
29
|
+
private pollFlightGeneration?;
|
|
30
|
+
constructor(remote: WorkflowRemoteClient, agents?: ClientAgentCatalog, connection?: {
|
|
31
|
+
readonly rpc?: {
|
|
32
|
+
call(channel: string, endpoint: string, payload: unknown, signal?: AbortSignal): Promise<unknown>;
|
|
33
|
+
};
|
|
34
|
+
} | undefined);
|
|
35
|
+
/** Replace the transport with the exact mounted workflowRuns namespace. */
|
|
36
|
+
setRemote(remote: any): void;
|
|
37
|
+
/** Access the exact namespace; never traverse remote.workflowRuns through a
|
|
38
|
+
* traced aggregate (Cordis requires an explicit nested inject for that). */
|
|
39
|
+
private get remote();
|
|
40
|
+
private state;
|
|
41
|
+
get(sessionId: string): WorkflowRunsSourceSnapshot;
|
|
42
|
+
source(sessionId: string): WorkflowRunsSource;
|
|
43
|
+
subscribe(sessionId: string, listener: (snapshot: WorkflowRunsSourceSnapshot) => void): () => void;
|
|
44
|
+
observe(sessionId: string | undefined): void;
|
|
45
|
+
private clearPollTimer;
|
|
46
|
+
/**
|
|
47
|
+
* Chain polls after settlement rather than using setInterval: a hung or slow
|
|
48
|
+
* transport owns at most one poll wait, while refresh() still coalesces an
|
|
49
|
+
* event-driven invalidation landing during that wait.
|
|
50
|
+
*/
|
|
51
|
+
private schedulePoll;
|
|
52
|
+
private publish;
|
|
53
|
+
private request;
|
|
54
|
+
private retire;
|
|
55
|
+
private call;
|
|
56
|
+
/** Stock may leave the typed stub unmounted; the Host still serves namespace/method over /api. */
|
|
57
|
+
private callRpc;
|
|
58
|
+
refresh(sessionId: string, supplied?: AbortSignal): Promise<WorkflowRunsSourceSnapshot>;
|
|
59
|
+
private refreshWithMode;
|
|
60
|
+
loadMore(sessionId: string, supplied?: AbortSignal): Promise<WorkflowRunsSourceSnapshot>;
|
|
61
|
+
private read;
|
|
62
|
+
detail(sessionId: string, runId: string, signal?: AbortSignal): Promise<WorkflowRunDetail>;
|
|
63
|
+
members(sessionId: string, runId: string, cursor?: string, signal?: AbortSignal): Promise<WorkflowRunMemberPage>;
|
|
64
|
+
memberDetail(sessionId: string, runId: string, memberId: string, signal?: AbortSignal): Promise<WorkflowRunMemberDetail>;
|
|
65
|
+
logs(sessionId: string, runId: string, cursor?: string, signal?: AbortSignal): Promise<WorkflowRunLogPage>;
|
|
66
|
+
result(sessionId: string, runId: string, signal?: AbortSignal): Promise<WorkflowRunResultView>;
|
|
67
|
+
artifacts(sessionId: string, runId: string, cursor?: string, signal?: AbortSignal): Promise<WorkflowRunArtifactPage>;
|
|
68
|
+
artifact(sessionId: string, runId: string, name: string, cursor?: string, expectedRevision?: number, signal?: AbortSignal): Promise<WorkflowRunArtifactChunk>;
|
|
69
|
+
control(sessionId: string, runId: string, action: WorkflowRunAction, expectedRevision: number, signal?: AbortSignal): Promise<WorkflowRunControlResult>;
|
|
70
|
+
handleChange(change: Change): void;
|
|
71
|
+
handleDisconnected(): void;
|
|
72
|
+
/** Fence an explicit connection/reset even when description loss was not observed. */
|
|
73
|
+
handleReset(): void;
|
|
74
|
+
handleConnected(): void;
|
|
75
|
+
removeSession(sessionId: string): void;
|
|
76
|
+
resolveAndOpenChild(parentSessionId: string, childSessionId: string): Promise<boolean>;
|
|
77
|
+
dispose(): void;
|
|
78
|
+
/** Compatibility names used by early package consumers. */
|
|
79
|
+
invalidate(change: Change): void;
|
|
80
|
+
reconnecting(): void;
|
|
81
|
+
}
|
|
82
|
+
export default WorkflowRunsController;
|
|
83
|
+
//# sourceMappingURL=controller.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"controller.d.ts","sourceRoot":"","sources":["../../src/client/controller.ts"],"names":[],"mappings":"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"}
|