●operator.ts×
bridge.ts
1
2
3
4
5
6
7
8
9
10
11
12
import { Bridge } from './bridge'
import { Feed } from './feed'
export async function runWorkflow(steps) {
const feed = new Feed()
for (const step of steps) {
// Aria plans → Actions runs → Bridge connects
await Bridge.call(step)
feed.push(step.name)
}
return feed.result()
}
TerminalProblemsOutput
ash@culltron:~/culltron-actions$ npm run build
› compiling operator engine…
✓ build complete · 0 errors · 1.2s
ash@culltron:~/culltron-actions$