Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
477f84d
feat(agents): add provider-neutral orchestration
megascan Aug 7, 2026
8c0d3af
fix(agents): harden orchestration review paths
megascan Aug 7, 2026
90c5f28
test(agents): align feature checks with repo lint
megascan Aug 7, 2026
b9f6cc5
fix(agents): address automated review findings
megascan Aug 7, 2026
447e6e3
fix(agents): preserve only meaningful error causes
megascan Aug 7, 2026
b3e2ec9
fix(agents): harden orchestration edge cases
megascan Aug 7, 2026
a3b7755
fix(agents): close review edge cases
megascan Aug 7, 2026
e8bc73b
fix(agents): close latest review gaps
megascan Aug 7, 2026
89c7064
fix(agents): harden orchestration recovery
megascan Aug 7, 2026
7ff9774
fix(agents): preserve runtime event ordering
megascan Aug 7, 2026
35b6ace
fix(agents): clarify settings validation
megascan Aug 7, 2026
c2bc3bf
fix(web): isolate agent selection contexts
megascan Aug 7, 2026
1062149
fix(agents): close review state gaps
megascan Aug 7, 2026
d7441da
Merge branch 'main' into agent/native-agent-orchestration
megascan Aug 8, 2026
ab6d31f
fix(agents): surface native runs in Agents panel
LordMerc Aug 10, 2026
61e0858
fix(agents): preserve projected run interruption
megascan Aug 10, 2026
4f516cc
Merge remote-tracking branch 'upstream/main' into agent/native-agent-…
megascan Aug 10, 2026
8a405f5
fix(mobile): pin agent settings environment
megascan Aug 10, 2026
a14d52d
fix(agents): correlate provider turn events
megascan Aug 10, 2026
f445d85
fix(mobile): keep new agent editor visible
megascan Aug 10, 2026
502d128
fix(agents): preserve lineage deadlines
megascan Aug 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions apps/mobile/src/Stack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import { SettingsAuthRouteScreen } from "./features/settings/SettingsAuthRouteSc
import { SettingsEnvironmentsRouteScreen } from "./features/settings/SettingsEnvironmentsRouteScreen";
import { SettingsLegalRouteScreen } from "./features/settings/SettingsLegalRouteScreen";
import { SettingsProjectGroupingRouteScreen } from "./features/settings/SettingsProjectGroupingRouteScreen";
import { SettingsAgentsRouteScreen } from "./features/settings/SettingsAgentsRouteScreen";
import { UsageRouteScreen } from "./features/usage/UsageRouteScreen";
import { SettingsRouteScreen } from "./features/settings/SettingsRouteScreen";
import { ShowcaseCaptureCoordinator } from "./features/showcase/ShowcaseCaptureCoordinator";
Expand Down Expand Up @@ -184,6 +185,11 @@ const SettingsSheetStack = createNativeStackNavigator({
title: "Project Grouping",
},
}),
SettingsAgents: createNativeStackScreen({
screen: SettingsAgentsRouteScreen,
linking: "agents",
options: { title: "Agents" },
}),
SettingsClientStorage: createNativeStackScreen({
screen: SettingsClientStorageRouteScreen,
linking: "client-storage",
Expand Down
Loading
Loading