Skip to content

Commit b58ce55

Browse files
jason-rlclaude
andcommitted
Add object create form, blueprint duplication, axon events & SQL workbench, benchmark tab toggle in TUI
Add TUI features matching runloop-fe capabilities: - Object create form with optional file upload or pre-signed URL copy - Blueprint duplication from detail view (build_complete only) - Axon events viewer with pagination and SQL workbench - Benchmark definitions list: tab toggle between public/custom (matching agent list pattern) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3ef6271 commit b58ce55

12 files changed

Lines changed: 1238 additions & 15 deletions

src/commands/object/list.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,8 @@ const ListObjectsUI = ({
558558
} else if (input === "a" && selectedObjectItem) {
559559
setShowPopup(true);
560560
setSelectedOperation(0);
561+
} else if (input === "c") {
562+
navigate("object-create");
561563
} else if (input === "/") {
562564
search.enterSearchMode();
563565
} else if (key.escape) {
@@ -841,6 +843,7 @@ const ListObjectsUI = ({
841843
},
842844
{ key: "Enter", label: "Details" },
843845
{ key: "a", label: "Actions" },
846+
{ key: "c", label: "Create" },
844847
{ key: "/", label: "Search" },
845848
{ key: "Esc", label: "Back" },
846849
]}

0 commit comments

Comments
 (0)