@outputai/cli 0.9.2-next.40ae759.0 → 0.9.2-next.d8fa1ad.0
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.
|
@@ -11,17 +11,10 @@
|
|
|
11
11
|
* START_CHILD_WORKFLOW_EXECUTION_INITIATED opens the span, then
|
|
12
12
|
* CHILD_WORKFLOW_EXECUTION_STARTED / _COMPLETED / _FAILED / _TIMED_OUT /
|
|
13
13
|
* _CANCELED / _TERMINATED reference it via `initiatedEventId`.
|
|
14
|
-
*
|
|
15
|
-
* Pure function — no I/O. A TypeScript port of Atlas's
|
|
16
|
-
* `OutputWorkflows::WorkflowHistory::Correlator` (Ruby). Kept structurally
|
|
17
|
-
* faithful so the two stay easy to diff. The CLI has no step catalog, so a
|
|
18
|
-
* span's display name is the humanized step name rather than a catalog label.
|
|
19
14
|
*/
|
|
20
15
|
import { capitalCase } from 'change-case';
|
|
21
|
-
//
|
|
22
|
-
|
|
23
|
-
const NOISE_STEP_PREFIXES = ['__internal#'];
|
|
24
|
-
const NOISE_STEP_EXACT = ['$shared#callWebhook'];
|
|
16
|
+
// These are internal activities of the framework
|
|
17
|
+
const INTERNAL_ACTIVITIES_PREFIX = ['__internal#'];
|
|
25
18
|
const ACTIVITY_TERMINAL_TYPES = [
|
|
26
19
|
'ACTIVITY_TASK_COMPLETED', 'ACTIVITY_TASK_FAILED',
|
|
27
20
|
'ACTIVITY_TASK_TIMED_OUT', 'ACTIVITY_TASK_CANCELED'
|
|
@@ -86,8 +79,7 @@ function cleanStepName(scheduled) {
|
|
|
86
79
|
return 'unknown';
|
|
87
80
|
}
|
|
88
81
|
function isNoise(stepName) {
|
|
89
|
-
return
|
|
90
|
-
NOISE_STEP_PREFIXES.some(prefix => stepName.startsWith(prefix));
|
|
82
|
+
return INTERNAL_ACTIVITIES_PREFIX.some(prefix => stepName.startsWith(prefix));
|
|
91
83
|
}
|
|
92
84
|
function failureMessageOf(attrs) {
|
|
93
85
|
const failure = attrs.failure;
|
|
@@ -115,8 +107,7 @@ function toMs(iso) {
|
|
|
115
107
|
const ms = Date.parse(iso);
|
|
116
108
|
return Number.isNaN(ms) ? null : ms;
|
|
117
109
|
}
|
|
118
|
-
// Offset math relative to the workflow start (timeline origin).
|
|
119
|
-
// Atlas's Span#start_offset_ms / #end_offset_ms / #duration_ms.
|
|
110
|
+
// Offset math relative to the workflow start (timeline origin).
|
|
120
111
|
function withOffsets(span, startMs) {
|
|
121
112
|
const startAnchor = toMs(span.startedAt) ?? toMs(span.scheduledAt);
|
|
122
113
|
const startOffsetMs = startMs !== null && startAnchor !== null ? Math.round(startAnchor - startMs) : 0;
|
|
@@ -42,8 +42,6 @@ function buildEvents() {
|
|
|
42
42
|
completed('9', '5', 31),
|
|
43
43
|
failed('10', '6', 38, 'boom'),
|
|
44
44
|
// Noise steps — must be filtered out
|
|
45
|
-
scheduled('11', '$shared#callWebhook', 35),
|
|
46
|
-
started('11s', '11', 35),
|
|
47
45
|
scheduled('12', '__internal#resolveTrace', 35),
|
|
48
46
|
// Pending activity (scheduled, never started)
|
|
49
47
|
scheduled('13', 'contentBrief#generateBrief', 40),
|
|
@@ -67,7 +65,6 @@ describe('correlate', () => {
|
|
|
67
65
|
const byId = (id) => spans.find(s => s.id === id);
|
|
68
66
|
it('filters framework noise steps', () => {
|
|
69
67
|
expect(spans.every(s => !s.technicalName.startsWith('__internal#'))).toBe(true);
|
|
70
|
-
expect(spans.some(s => s.technicalName === '$shared#callWebhook')).toBe(false);
|
|
71
68
|
});
|
|
72
69
|
it('produces one span per real activity plus the child workflow', () => {
|
|
73
70
|
expect(spans).toHaveLength(5);
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/cli",
|
|
3
|
-
"version": "0.9.2-next.
|
|
3
|
+
"version": "0.9.2-next.d8fa1ad.0",
|
|
4
4
|
"description": "CLI for Output.ai workflow generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"semver": "7.7.4",
|
|
37
37
|
"undici": "8.5.0",
|
|
38
38
|
"yaml": "^2.8.3",
|
|
39
|
-
"@outputai/
|
|
40
|
-
"@outputai/
|
|
41
|
-
"@outputai/
|
|
39
|
+
"@outputai/evals": "0.9.2-next.d8fa1ad.0",
|
|
40
|
+
"@outputai/credentials": "0.9.2-next.d8fa1ad.0",
|
|
41
|
+
"@outputai/llm": "0.9.2-next.d8fa1ad.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/cli-progress": "3.11.6",
|