feat(node2): Complete NODE2 setup - guardian, agents, swapper models
- Node-guardian running on MacBook and updating metrics - NODE2 agents (Atlas, Greeter, Oracle, Builder Bot) assigned to node-2-macbook-m4max - Swapper models displaying correctly (8 models) - DAGI Router agents showing with correct status (3 active, 1 stale) - Router health check using node_cache for remote nodes
This commit is contained in:
@@ -191,3 +191,4 @@ export async function finishPasskeyAuthentication(
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -218,3 +218,4 @@ async function getNode1StatusRealTime(): Promise<Node1Status> {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -51,3 +51,4 @@ export async function getNodes(): Promise<SpaceNode[]> {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -35,3 +35,4 @@ export async function getPlanets(): Promise<SpacePlanet[]> {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -35,3 +35,4 @@ export async function getSpaceEvents(params?: GetSpaceEventsParams): Promise<Spa
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -26,3 +26,4 @@ export function RequireAuth({ children }: RequireAuthProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -68,3 +68,4 @@ export const MicroDaoOrchestratorChatWrapper: React.FC<MicroDaoOrchestratorChatW
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -12,3 +12,4 @@ export { TelegramIntegration } from './TelegramIntegration';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -76,3 +76,4 @@ export function NavigationBreadcrumbs() {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -92,3 +92,4 @@ export function usePasskeyLogin(): UsePasskeyLoginResult {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -85,3 +85,4 @@ export function usePasskeyRegister(): UsePasskeyRegisterResult {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -178,3 +178,4 @@ function Metric({ label, value }: { label: string; value: string }) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -95,3 +95,4 @@ export function useMicroDAOs(): UseMicroDAOsResult {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -19,3 +19,4 @@ export async function getCitySnapshot(): Promise<CitySnapshot> {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -69,3 +69,4 @@ export function CityAgentPanel({ agent }: CityAgentPanelProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -74,3 +74,4 @@ export function CityEventsFeed({ events }: CityEventsFeedProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -62,3 +62,4 @@ export function CityLayout({ snapshot }: CityLayoutProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -111,3 +111,4 @@ export function CityMetricsGrid({ metrics }: CityMetricsGridProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -85,3 +85,4 @@ export function CityMicroDAOPanel({ microdao }: CityMicroDAOPanelProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -76,3 +76,4 @@ export function CityNodesSummary({ nodes }: CityNodesSummaryProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -55,3 +55,4 @@ export function CityQuestPanel({ quests }: CityQuestPanelProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -104,3 +104,4 @@ export function CitySectorMap({ snapshot }: CitySectorMapProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -53,3 +53,4 @@ export function useCityData() {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -133,3 +133,4 @@ export function useCityWebSocket(options: UseCityWebSocketOptions) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -83,3 +83,4 @@ export interface CityQuestSummary {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -126,3 +126,4 @@ export function MessengerPage() {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -23,3 +23,4 @@ export async function createChannel(data: ChannelCreateInput): Promise<Channel>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -30,3 +30,4 @@ export async function getChannelMessages(
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -25,3 +25,4 @@ export async function getChannels(microdaoId?: string): Promise<Channel[]> {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -26,3 +26,4 @@ export async function sendMessage(
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -43,3 +43,4 @@ export function ChannelHeader({ channel, isConnected }: Props) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -47,3 +47,4 @@ export function ChannelList({ channels, selectedChannelId, onSelectChannel }: Pr
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -79,3 +79,4 @@ export function MessageComposer({ onSend, disabled }: Props) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -65,3 +65,4 @@ export function MessageList({ messages, loading }: Props) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -43,3 +43,4 @@ export function useChannels(microdaoId?: string) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -62,3 +62,4 @@ export function useMessages(channelId: string) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -112,3 +112,4 @@ export function useMessagingWebSocket(channelId: string): UseMessagingWebSocketR
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -100,3 +100,4 @@ export interface WebSocketMessage {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -234,3 +234,4 @@ export const CosmosView = memo(Component);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -188,3 +188,4 @@ export function GalaxyView({ scene, onSelect }: GalaxyViewProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -219,3 +219,4 @@ export function StarSystemView({ scene, onSelect }: StarSystemViewProps) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -288,3 +288,4 @@ export function ChatDemoPage() {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -11,3 +11,4 @@ export { knowledgeBaseService, KnowledgeBaseService } from './knowledgeBaseServi
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -220,3 +220,4 @@ export const knowledgeBaseService = new KnowledgeBaseService();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -142,3 +142,4 @@ export const voiceService = new VoiceService();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -105,3 +105,4 @@ export const webSearchService = new WebSearchService();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -99,3 +99,4 @@ export function useActor() {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user