You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ship traverse-starter.pipeline showcase across platform clients (#144)
Retarget the app manifest to the multi-capability pipeline workflow and
parse/render namespaced validate/process/summarize output on every shell.
Co-authored-by: Cursor <cursoragent@cursor.com>
-**Phase 3 embedded runtime** ([#109](https://github.com/traverse-framework/reference-apps/issues/109)–[#118](https://github.com/traverse-framework/reference-apps/issues/118)) — see `docs/embedded-runtime-plan.md`; blocked on a **consumable platform embedder SDK** (Traverse [#553](https://github.com/traverse-framework/Traverse/issues/553) closed via [#578](https://github.com/traverse-framework/Traverse/pull/578) with manifest `execution_mode` only — no web/Swift/etc. embedder package yet). Traverse [#615](https://github.com/traverse-framework/Traverse/pull/615) added wasm32 core build only — not a platform embedder package.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,6 @@ Active blockers on [Project 2](https://github.com/orgs/traverse-framework/projec
173
173
174
174
-**Phase 3 embedded runtime** ([#109](https://github.com/traverse-framework/reference-apps/issues/109)–[#118](https://github.com/traverse-framework/reference-apps/issues/118)) — all platform clients must bundle the WASM runtime host; blocked on a **consumable platform embedder SDK** (Traverse [#553](https://github.com/traverse-framework/Traverse/issues/553) closed via [#578](https://github.com/traverse-framework/Traverse/pull/578) with manifest `execution_mode` only; [#615](https://github.com/traverse-framework/Traverse/pull/615) is wasm32 core build only). HTTP sidecar is dev-only.
Copy file name to clipboardExpand all lines: apps/traverse-starter/android-compose/app/src/main/java/com/traverseframework/starter/ExecutionViewModel.kt
+1-7Lines changed: 1 addition & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -106,13 +106,7 @@ class ExecutionViewModel(
106
106
} catch (_:Exception) {
107
107
emptyList()
108
108
}
109
-
val output = result.output ?:TraverseStarterOutput(
110
-
title ="",
111
-
tags = emptyList(),
112
-
noteType ="",
113
-
suggestedNextAction ="",
114
-
status ="",
115
-
)
109
+
val output = result.output ?:TraverseStarterOutput.EMPTY
Copy file name to clipboardExpand all lines: apps/traverse-starter/android-compose/app/src/test/java/com/traverseframework/starter/TraverseClientTest.kt
0 commit comments