@elizaos/agent 2.0.0-alpha.432 → 2.0.0-alpha.433
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LifeOpsOverviewSection.d.ts","sourceRoot":"","sources":["../../../../../../../apps/app-lifeops/src/components/LifeOpsOverviewSection.tsx"],"names":[],"mappings":"AAmDA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAWpE,UAAU,2BAA2B;IACnC,UAAU,EAAE,CAAC,OAAO,EAAE,cAAc,KAAK,IAAI,CAAC;CAC/C;
|
|
1
|
+
{"version":3,"file":"LifeOpsOverviewSection.d.ts","sourceRoot":"","sources":["../../../../../../../apps/app-lifeops/src/components/LifeOpsOverviewSection.tsx"],"names":[],"mappings":"AAmDA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAWpE,UAAU,2BAA2B;IACnC,UAAU,EAAE,CAAC,OAAO,EAAE,cAAc,KAAK,IAAI,CAAC;CAC/C;AA4mBD,wBAAgB,sBAAsB,CAAC,EACrC,UAAU,GACX,EAAE,2BAA2B,2CAm0B7B"}
|
|
@@ -90,6 +90,18 @@ const CHANNEL_ORDER = [
|
|
|
90
90
|
"whatsapp",
|
|
91
91
|
"x_dm",
|
|
92
92
|
];
|
|
93
|
+
function useGreeting() {
|
|
94
|
+
const hour = new Date().getHours();
|
|
95
|
+
if (hour < 5)
|
|
96
|
+
return "Still up";
|
|
97
|
+
if (hour < 12)
|
|
98
|
+
return "Morning";
|
|
99
|
+
if (hour < 17)
|
|
100
|
+
return "Afternoon";
|
|
101
|
+
if (hour < 22)
|
|
102
|
+
return "Evening";
|
|
103
|
+
return "Wind-down";
|
|
104
|
+
}
|
|
93
105
|
function formatFullDate(date) {
|
|
94
106
|
return new Intl.DateTimeFormat(undefined, {
|
|
95
107
|
weekday: "long",
|
|
@@ -278,7 +290,7 @@ function IconAction({ label, icon, onClick, }) {
|
|
|
278
290
|
return (_jsx("button", { type: "button", "aria-label": label, title: label, className: "inline-flex h-7 w-7 items-center justify-center rounded-md text-muted transition-colors hover:bg-bg/40 hover:text-txt", onClick: onClick, children: icon }));
|
|
279
291
|
}
|
|
280
292
|
function MetricCell({ label, value, tone, }) {
|
|
281
|
-
return (_jsxs("div", { className: "min-w-0 border-
|
|
293
|
+
return (_jsxs("div", { className: "min-w-0 border-t border-border/12 px-3 py-2 first:border-t-0 sm:border-l sm:border-t-0 sm:first:border-l-0", children: [_jsx("div", { className: "truncate text-[10px] font-semibold uppercase tracking-wide text-muted", children: label }), _jsx("div", { className: `mt-1 truncate text-lg font-semibold tabular-nums ${tone ?? "text-txt"}`, children: value })] }));
|
|
282
294
|
}
|
|
283
295
|
function EmptyState({ children }) {
|
|
284
296
|
return _jsx("div", { className: "py-6 text-center text-xs text-muted", children: children });
|
|
@@ -361,6 +373,7 @@ export function LifeOpsOverviewSection({ onNavigate, }) {
|
|
|
361
373
|
const { t } = useApp();
|
|
362
374
|
const { select } = useLifeOpsSelection();
|
|
363
375
|
const today = useMemo(() => new Date(), []);
|
|
376
|
+
const greeting = useGreeting();
|
|
364
377
|
const capabilities = useLifeOpsCapabilitiesStatus();
|
|
365
378
|
const googleConnector = useGoogleLifeOpsConnector({
|
|
366
379
|
includeAccounts: false,
|
|
@@ -628,7 +641,7 @@ export function LifeOpsOverviewSection({ onNavigate, }) {
|
|
|
628
641
|
});
|
|
629
642
|
onNavigate("reminders");
|
|
630
643
|
}, [onNavigate, select]);
|
|
631
|
-
return (_jsxs("div", { className: "space-y-4", "data-testid": "lifeops-overview", children: [_jsxs("header", { className: "border-b border-border/20 pb-4", children: [_jsxs("div", { className: "flex flex-wrap items-center justify-between gap-3", children: [_jsxs("div", { className: "min-w-0", children: [
|
|
644
|
+
return (_jsxs("div", { className: "space-y-4", "data-testid": "lifeops-overview", children: [_jsxs("header", { className: "border-b border-border/20 pb-4", children: [_jsxs("div", { className: "flex flex-wrap items-center justify-between gap-3", children: [_jsxs("div", { className: "min-w-0", children: [_jsxs("div", { className: "text-[11px] font-semibold uppercase tracking-wide text-muted", children: [greeting, " / ", formatFullDate(today)] }), _jsx("h1", { className: "mt-2 max-w-4xl text-2xl font-semibold leading-tight text-txt sm:text-3xl", children: buildHeadline({
|
|
632
645
|
schedule,
|
|
633
646
|
nextEvent,
|
|
634
647
|
hasOverdue,
|
|
@@ -638,9 +651,9 @@ export function LifeOpsOverviewSection({ onNavigate, }) {
|
|
|
638
651
|
screenTimeLoading ||
|
|
639
652
|
calendar.loading ||
|
|
640
653
|
messagesInbox.loading ||
|
|
641
|
-
mailInbox.loading, children: _jsx(RefreshCw, { className: `h-3.5 w-3.5 ${loading || screenTimeLoading ? "animate-spin" : ""}`, "aria-hidden": true }) })] })] }), _jsxs("div", { className: "mt-4 grid
|
|
654
|
+
mailInbox.loading, children: _jsx(RefreshCw, { className: `h-3.5 w-3.5 ${loading || screenTimeLoading ? "animate-spin" : ""}`, "aria-hidden": true }) })] })] }), _jsxs("div", { className: "mt-4 grid overflow-hidden rounded-lg border border-border/16 bg-card/10 sm:grid-cols-3", children: [_jsx(MetricCell, { label: "Sleep", value: sleepStatusLabel(schedule), tone: schedule?.sleepStatus === "sleeping_now"
|
|
642
655
|
? "text-blue-300"
|
|
643
|
-
: "text-txt" }), _jsx(MetricCell, { label: "Reminders", value: reminderMetricValue, tone: reminderMetricTone }), _jsx(MetricCell, { label: "Screen", value: screenTimeLabel || "No data", tone: screenTimeLabel ? "text-amber-300" : "text-muted" })] })] }), error ? (_jsxs("div", { className: "flex items-center gap-2 rounded-lg border border-rose-500/30 bg-rose-500/10 px-3 py-2 text-xs font-medium text-rose-300", title: error, children: [_jsx(TriangleAlert, { className: "h-3.5 w-3.5 shrink-0", "aria-hidden": true }), "Activity unavailable"] })) : null, showSetupWarning ? (_jsxs("div", { className: "flex flex-wrap items-start justify-between gap-3 rounded-lg border border-amber-500/25 bg-amber-500/10 px-4 py-3", "data-testid": "lifeops-overview-setup-warning", children: [_jsxs("div", { className: "flex min-w-0 items-center gap-3", children: [_jsx("span", { className: "mt-0.5 shrink-0 text-amber-300", children: _jsx(TriangleAlert, { className: "h-4 w-4", "aria-hidden": true }) }), _jsx("div", { className: "min-w-0", children: _jsx("div", { className: "truncate text-sm font-medium text-txt", children: hasAnyOverviewAccess ? "Partial" : "Connect" }) })] }), _jsxs("span", { className: "inline-flex h-7 min-w-7 items-center justify-center rounded-full border border-amber-300/25 bg-amber-300/10 px-2 text-[11px] font-semibold text-amber-200", title: formatLabelList(missingWidgets), children: ["+", missingWidgets.length] }), _jsx("button", { type: "button", "aria-label": "Open LifeOps settings", title: "Settings", className: "inline-flex h-8 w-8 shrink-0 items-center justify-center rounded-full border border-border/16 bg-bg/50 text-txt transition-colors hover:border-accent/30 hover:text-accent", onClick: () => onNavigate("setup"), children: _jsx(ArrowRight, { className: "h-3.5 w-3.5", "aria-hidden": true }) })] })) : null, loading && !overview ? (_jsxs("div", { className: "flex items-center gap-2 py-4 text-xs text-muted", children: [_jsx(Loader2, { className: "h-4 w-4 animate-spin", "aria-hidden": true }), "Loading dashboard..."] })) : null, showNoAccessState ? (_jsxs("div", { className: "rounded-lg border border-border/16 bg-card/12 px-5 py-8 text-center", "data-testid": "lifeops-overview-empty-access", children: [_jsx("div", { className: "mx-auto flex h-10 w-10 items-center justify-center rounded-full bg-amber-500/12 text-amber-300", children: _jsx(TriangleAlert, { className: "h-5 w-5", "aria-hidden": true }) }), _jsx("h2", { className: "mt-4 text-base font-semibold text-txt", children: "Connect a source" }), _jsxs("button", { type: "button", className: "mt-4 inline-flex h-9 items-center gap-1 rounded-md border border-border/16 bg-bg/50 px-3 text-sm font-medium text-txt transition-colors hover:border-accent/30 hover:text-accent", onClick: () => onNavigate("setup"), children: ["Open Settings", _jsx(ArrowRight, { className: "h-4 w-4", "aria-hidden": true })] })] })) : null, !showNoAccessState ? (_jsxs("div", { className: "grid items-start gap-4 xl:grid-cols-12", children: [hasNowPanelContent ? (_jsx(DashboardPanel, { title: "Now", icon: _jsx(Flame, { className: "h-4 w-4", "aria-hidden": true }), className: "xl:col-span-3", children: _jsxs("div", { className: "space-y-3", children: [circadianLine ? (_jsx(TinyStatus, { color: "bg-indigo-300", label: circadianLine })) : null, activeSessionLine ? (_jsx(TinyStatus, { color: "bg-amber-300", label: activeSessionLine })) : null, briefingLines.map((line) => (_jsx(TinyStatus, { color: "bg-accent", label: line }, line)))] }) })) : null, sleepAccess ? (_jsx(DashboardPanel, { title: "Sleep", icon: schedule?.sleepStatus === "sleeping_now" ? (_jsx(Moon, { className: "h-4 w-4", "aria-hidden": true })) : (_jsx(Sun, { className: "h-4 w-4", "aria-hidden": true })), action: _jsx(IconAction, { label: "Sleep", icon: _jsx(Moon, { className: "h-3.5 w-3.5", "aria-hidden": true }), onClick: () => onNavigate("sleep") }), className: "xl:col-span-3", children: _jsxs("div", { className: "space-y-3", children: [_jsx("div", { children: _jsx("div", { className: "text-2xl font-semibold leading-none text-txt", children: sleepStatusLabel(schedule) }) }), _jsxs("div", { className: "grid grid-cols-2 gap-3 border-t border-border/12 pt-3", children: [_jsx(TinyStatus, { color: "bg-blue-400", label: lastSleep ? `Last sleep ${lastSleep}` : "No sleep" }), _jsx(TinyStatus, { color: "bg-indigo-400", label: bedtime ? `Bed ${bedtime}` : "No target" })] })] }) })) : (_jsx(MissingSourceCard, { title: "Sleep", ctaLabel: "Connect Health", onCta: () => onNavigate("setup"), className: "xl:col-span-3" })), screenTimeAccess ? (_jsxs(DashboardPanel, { title: "Screen Time", icon: _jsx(Monitor, { className: "h-4 w-4", "aria-hidden": true }), action: _jsx(IconAction, { label: "Screen Time", icon: _jsx(Monitor, { className: "h-3.5 w-3.5", "aria-hidden": true }), onClick: () => onNavigate("screen-time") }), className: "xl:col-span-3", children: [_jsx("div", { className: "mb-3 flex items-end justify-between gap-3", children: _jsxs("div", { children: [_jsx("div", { className: "text-2xl font-semibold leading-none text-txt", children: screenTimeLabel || "No data" }), weeklyDelta ? (_jsx("div", { className: "mt-1 text-[11px] font-medium tabular-nums text-muted", "data-testid": "lifeops-overview-screen-weekly-delta", children: weeklyDelta.label })) : null] }) }), _jsx(ScreenTimeList, { screenTime: screenTime, loading: screenTimeLoading, error: screenTimeError })] })) : (_jsx(MissingSourceCard, { title: "Screen Time", ctaLabel: "Set up tracking", onCta: () => onNavigate("setup"), className: "xl:col-span-3" })), socialAccess ? (_jsxs(DashboardPanel, { title: "Social", icon: _jsx(Share2, { className: "h-4 w-4", "aria-hidden": true }), action: _jsx(IconAction, { label: "Social", icon: _jsx(Share2, { className: "h-3.5 w-3.5", "aria-hidden": true }), onClick: () => onNavigate("screen-time") }), className: "xl:col-span-3", children: [_jsx("div", { className: "mb-3 text-2xl font-semibold leading-none text-txt", children: socialLabel || "No data" }), socialLoading && !social ? (_jsxs("div", { className: "flex items-center gap-2 py-5 text-xs text-muted", children: [_jsx(Loader2, { className: "h-4 w-4 animate-spin", "aria-hidden": true }), "Reading social..."] })) : socialError ? (_jsx("div", { className: "py-4 text-xs text-rose-300", children: socialError })) : (_jsxs("div", { className: "space-y-3", children: [_jsx(TinyStatus, { color: "bg-cyan-300", label: topSocial
|
|
656
|
+
: "text-txt" }), _jsx(MetricCell, { label: "Reminders", value: reminderMetricValue, tone: reminderMetricTone }), _jsx(MetricCell, { label: "Screen", value: screenTimeLabel || "No data", tone: screenTimeLabel ? "text-amber-300" : "text-muted" })] })] }), error ? (_jsxs("div", { className: "flex items-center gap-2 rounded-lg border border-rose-500/30 bg-rose-500/10 px-3 py-2 text-xs font-medium text-rose-300", title: error, children: [_jsx(TriangleAlert, { className: "h-3.5 w-3.5 shrink-0", "aria-hidden": true }), "Activity unavailable"] })) : null, showSetupWarning ? (_jsxs("div", { className: "flex flex-wrap items-start justify-between gap-3 rounded-lg border border-amber-500/25 bg-amber-500/10 px-4 py-3", "data-testid": "lifeops-overview-setup-warning", children: [_jsxs("div", { className: "flex min-w-0 items-center gap-3", children: [_jsx("span", { className: "mt-0.5 shrink-0 text-amber-300", children: _jsx(TriangleAlert, { className: "h-4 w-4", "aria-hidden": true }) }), _jsx("div", { className: "min-w-0", children: _jsx("div", { className: "truncate text-sm font-medium text-txt", children: hasAnyOverviewAccess ? "Partial overview" : "Connect a source" }) })] }), _jsxs("span", { className: "inline-flex h-7 min-w-7 items-center justify-center rounded-full border border-amber-300/25 bg-amber-300/10 px-2 text-[11px] font-semibold text-amber-200", title: formatLabelList(missingWidgets), children: ["+", missingWidgets.length] }), _jsx("button", { type: "button", "aria-label": "Open LifeOps settings", title: "Settings", className: "inline-flex h-8 w-8 shrink-0 items-center justify-center rounded-full border border-border/16 bg-bg/50 text-txt transition-colors hover:border-accent/30 hover:text-accent", onClick: () => onNavigate("setup"), children: _jsx(ArrowRight, { className: "h-3.5 w-3.5", "aria-hidden": true }) })] })) : null, loading && !overview ? (_jsxs("div", { className: "flex items-center gap-2 py-4 text-xs text-muted", children: [_jsx(Loader2, { className: "h-4 w-4 animate-spin", "aria-hidden": true }), "Loading dashboard..."] })) : null, showNoAccessState ? (_jsxs("div", { className: "rounded-lg border border-border/16 bg-card/12 px-5 py-8 text-center", "data-testid": "lifeops-overview-empty-access", children: [_jsx("div", { className: "mx-auto flex h-10 w-10 items-center justify-center rounded-full bg-amber-500/12 text-amber-300", children: _jsx(TriangleAlert, { className: "h-5 w-5", "aria-hidden": true }) }), _jsx("h2", { className: "mt-4 text-base font-semibold text-txt", children: "Connect a source" }), _jsxs("button", { type: "button", className: "mt-4 inline-flex h-9 items-center gap-1 rounded-md border border-border/16 bg-bg/50 px-3 text-sm font-medium text-txt transition-colors hover:border-accent/30 hover:text-accent", onClick: () => onNavigate("setup"), children: ["Open Settings", _jsx(ArrowRight, { className: "h-4 w-4", "aria-hidden": true })] })] })) : null, !showNoAccessState ? (_jsxs("div", { className: "grid items-start gap-4 xl:grid-cols-12", children: [hasNowPanelContent ? (_jsx(DashboardPanel, { title: "Now", icon: _jsx(Flame, { className: "h-4 w-4", "aria-hidden": true }), className: "xl:col-span-3", children: _jsxs("div", { className: "space-y-3", children: [circadianLine ? (_jsx(TinyStatus, { color: "bg-indigo-300", label: circadianLine })) : null, activeSessionLine ? (_jsx(TinyStatus, { color: "bg-amber-300", label: activeSessionLine })) : null, briefingLines.map((line) => (_jsx(TinyStatus, { color: "bg-accent", label: line }, line)))] }) })) : null, sleepAccess ? (_jsx(DashboardPanel, { title: "Sleep", icon: schedule?.sleepStatus === "sleeping_now" ? (_jsx(Moon, { className: "h-4 w-4", "aria-hidden": true })) : (_jsx(Sun, { className: "h-4 w-4", "aria-hidden": true })), action: _jsx(IconAction, { label: "Sleep", icon: _jsx(Moon, { className: "h-3.5 w-3.5", "aria-hidden": true }), onClick: () => onNavigate("sleep") }), className: "xl:col-span-3", children: _jsxs("div", { className: "space-y-3", children: [_jsx("div", { children: _jsx("div", { className: "text-2xl font-semibold leading-none text-txt", children: sleepStatusLabel(schedule) }) }), _jsxs("div", { className: "grid grid-cols-2 gap-3 border-t border-border/12 pt-3", children: [_jsx(TinyStatus, { color: "bg-blue-400", label: lastSleep ? `Last sleep ${lastSleep}` : "No sleep" }), _jsx(TinyStatus, { color: "bg-indigo-400", label: bedtime ? `Bed ${bedtime}` : "No target" })] })] }) })) : (_jsx(MissingSourceCard, { title: "Sleep", ctaLabel: "Connect Health", onCta: () => onNavigate("setup"), className: "xl:col-span-3" })), screenTimeAccess ? (_jsxs(DashboardPanel, { title: "Screen Time", icon: _jsx(Monitor, { className: "h-4 w-4", "aria-hidden": true }), action: _jsx(IconAction, { label: "Screen Time", icon: _jsx(Monitor, { className: "h-3.5 w-3.5", "aria-hidden": true }), onClick: () => onNavigate("screen-time") }), className: "xl:col-span-3", children: [_jsx("div", { className: "mb-3 flex items-end justify-between gap-3", children: _jsxs("div", { children: [_jsx("div", { className: "text-2xl font-semibold leading-none text-txt", children: screenTimeLabel || "No data" }), weeklyDelta ? (_jsx("div", { className: "mt-1 text-[11px] font-medium tabular-nums text-muted", "data-testid": "lifeops-overview-screen-weekly-delta", children: weeklyDelta.label })) : null] }) }), _jsx(ScreenTimeList, { screenTime: screenTime, loading: screenTimeLoading, error: screenTimeError })] })) : (_jsx(MissingSourceCard, { title: "Screen Time", ctaLabel: "Set up tracking", onCta: () => onNavigate("setup"), className: "xl:col-span-3" })), socialAccess ? (_jsxs(DashboardPanel, { title: "Social", icon: _jsx(Share2, { className: "h-4 w-4", "aria-hidden": true }), action: _jsx(IconAction, { label: "Social", icon: _jsx(Share2, { className: "h-3.5 w-3.5", "aria-hidden": true }), onClick: () => onNavigate("screen-time") }), className: "xl:col-span-3", children: [_jsx("div", { className: "mb-3 text-2xl font-semibold leading-none text-txt", children: socialLabel || "No data" }), socialLoading && !social ? (_jsxs("div", { className: "flex items-center gap-2 py-5 text-xs text-muted", children: [_jsx(Loader2, { className: "h-4 w-4 animate-spin", "aria-hidden": true }), "Reading social..."] })) : socialError ? (_jsx("div", { className: "py-4 text-xs text-rose-300", children: socialError })) : (_jsxs("div", { className: "space-y-3", children: [_jsx(TinyStatus, { color: "bg-cyan-300", label: topSocial
|
|
644
657
|
? `${topSocial.label} ${formatDurationSeconds(topSocial.totalSeconds)}`
|
|
645
658
|
: "No social time" }), _jsx(TinyStatus, { color: "bg-emerald-300", label: `${social?.messages.opened ?? 0} opened / ${social?.messages.outbound ?? 0} sent` }), (social?.dataSources ?? []).length > 0 ? (_jsx(DataSourcesStrip, { sources: social?.dataSources ?? [], onSetup: () => onNavigate("setup") })) : null] }))] })) : (_jsx(MissingSourceCard, { title: "Social", ctaLabel: "Set up bridge", onCta: () => onNavigate("setup"), className: "xl:col-span-3" })), calendarAccess ? (_jsx(DashboardPanel, { title: "Upcoming", icon: _jsx(CalendarDays, { className: "h-4 w-4", "aria-hidden": true }), action: _jsx(IconAction, { label: "Calendar", icon: _jsx(CalendarDays, { className: "h-3.5 w-3.5", "aria-hidden": true }), onClick: () => onNavigate("calendar") }), className: "xl:col-span-4", children: calendar.loading && timeline.length === 0 ? (_jsxs("div", { className: "flex items-center gap-2 py-5 text-xs text-muted", children: [_jsx(Loader2, { className: "h-4 w-4 animate-spin", "aria-hidden": true }), "Reading calendar..."] })) : timeline.length === 0 ? (_jsx(EmptyState, { children: "Nothing scheduled." })) : (_jsx("div", { className: "divide-y divide-border/10", children: timeline.map((entry) => (_jsx(TimelineRow, { entry: entry, onOpenEvent: openEvent, onOpenReminder: openReminder }, entry.id))) })) })) : (_jsx(MissingSourceCard, { title: "Calendar", ctaLabel: "Connect Google", onCta: () => onNavigate("setup"), className: "xl:col-span-4" })), messagesAccess ? (_jsxs(DashboardPanel, { title: "Priority Messages", icon: _jsx(MessageSquare, { className: "h-4 w-4", "aria-hidden": true }), action: _jsx(IconAction, { label: "Messages", icon: _jsx(MessageSquare, { className: "h-3.5 w-3.5", "aria-hidden": true }), onClick: () => onNavigate("messages") }), className: "xl:col-span-4", children: [_jsx("div", { className: "mb-3 flex flex-wrap gap-2", children: activeChannels.length === 0 ? (_jsx("span", { className: "text-xs text-muted", children: "No live messages." })) : (activeChannels.slice(0, 5).map((channel) => {
|
|
646
659
|
const style = CHANNEL_STYLES[channel];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { Button,
|
|
2
|
+
import { Button, SegmentedControl, useApp, } from "@elizaos/app-core";
|
|
3
|
+
import { client } from "@elizaos/app-core/api";
|
|
3
4
|
import { AlertTriangle, CalendarDays, Cloud, Copy, ExternalLink, GitBranch, HardDrive, Mail, Plug2, Plus, Sparkles, ToggleRight, Unplug, X, } from "lucide-react";
|
|
4
5
|
import { useCallback, useEffect, useState } from "react";
|
|
5
6
|
import { useGoogleLifeOpsConnector } from "../hooks/useGoogleLifeOpsConnector";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/agent",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.433",
|
|
4
4
|
"description": "Standalone elizaOS-based agent and backend server package.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -467,7 +467,7 @@
|
|
|
467
467
|
"@elizaos/app-steward": "^0.0.0",
|
|
468
468
|
"@elizaos/app-task-coordinator": "^0.0.0",
|
|
469
469
|
"@elizaos/app-training": "^0.0.1",
|
|
470
|
-
"@elizaos/core": "^2.0.0-alpha.
|
|
470
|
+
"@elizaos/core": "^2.0.0-alpha.433",
|
|
471
471
|
"@elizaos/plugin-agent-orchestrator": "^0.6.2-alpha.0",
|
|
472
472
|
"@elizaos/plugin-browser-bridge": "^0.1.0",
|
|
473
473
|
"@elizaos/plugin-local-embedding": "^2.0.0-alpha.12",
|
|
@@ -476,8 +476,8 @@
|
|
|
476
476
|
"@elizaos/plugin-solana": "^2.0.0-alpha.6",
|
|
477
477
|
"@elizaos/plugin-sql": "^2.0.0-alpha.19",
|
|
478
478
|
"@elizaos/plugin-wechat": "^0.1.0",
|
|
479
|
-
"@elizaos/shared": "^2.0.0-alpha.
|
|
480
|
-
"@elizaos/skills": "^2.0.0-alpha.
|
|
479
|
+
"@elizaos/shared": "^2.0.0-alpha.433",
|
|
480
|
+
"@elizaos/skills": "^2.0.0-alpha.433",
|
|
481
481
|
"@hapi/boom": "^10.0.1",
|
|
482
482
|
"@noble/curves": "^2.0.1",
|
|
483
483
|
"@solana/web3.js": "^1.98.4",
|