neoagent 3.1.1-beta.4 → 3.1.1-beta.5
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.
- package/flutter_app/lib/main_settings.dart +11 -10
- package/landing/status.html +3 -3
- package/package.json +1 -1
- package/server/public/.last_build_id +1 -1
- package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/main.dart.js +6503 -6504
- package/server/services/ai/tools.js +5 -5
- package/server/services/manager.js +1 -0
- package/server/services/social_reach/channels/base.js +4 -4
- package/server/services/social_reach/channels/index.js +7 -16
- package/server/services/social_reach/channels/reddit.js +105 -0
- package/server/services/social_reach/channels/social_video.js +86 -0
- package/server/services/social_reach/channels/x.js +70 -0
- package/server/services/social_reach/platforms.js +24 -74
- package/server/services/social_reach/service.js +7 -5
- package/server/services/social_reach/channels/linkedin.js +0 -34
- package/server/services/social_reach/channels/unsupported.js +0 -49
- package/server/services/social_reach/channels/web.js +0 -40
- package/server/services/social_reach/channels/youtube.js +0 -42
|
@@ -971,8 +971,8 @@ class _SettingsPanelState extends State<SettingsPanel> {
|
|
|
971
971
|
final ready = platforms
|
|
972
972
|
.where((item) => item['ready'] == true || item['status'] == 'ok')
|
|
973
973
|
.length;
|
|
974
|
-
final
|
|
975
|
-
.where((item) => item['setupKind'] == '
|
|
974
|
+
final cookieSetup = platforms
|
|
975
|
+
.where((item) => item['setupKind'] == 'cookies')
|
|
976
976
|
.length;
|
|
977
977
|
return Card(
|
|
978
978
|
child: Padding(
|
|
@@ -1018,7 +1018,7 @@ class _SettingsPanelState extends State<SettingsPanel> {
|
|
|
1018
1018
|
),
|
|
1019
1019
|
const SizedBox(height: 10),
|
|
1020
1020
|
Text(
|
|
1021
|
-
'
|
|
1021
|
+
'Social sources agents can read directly, including feeds, repositories, Reddit, X, videos, and cookie-backed market data.',
|
|
1022
1022
|
style: TextStyle(color: _textSecondary, height: 1.45),
|
|
1023
1023
|
),
|
|
1024
1024
|
const SizedBox(height: 12),
|
|
@@ -1032,15 +1032,16 @@ class _SettingsPanelState extends State<SettingsPanel> {
|
|
|
1032
1032
|
color: _success,
|
|
1033
1033
|
),
|
|
1034
1034
|
_MetaPill(
|
|
1035
|
-
icon: Icons.
|
|
1036
|
-
label: '
|
|
1035
|
+
icon: Icons.play_circle_outline,
|
|
1036
|
+
label: 'Video links',
|
|
1037
1037
|
color: _info,
|
|
1038
1038
|
),
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1039
|
+
if (cookieSetup > 0)
|
|
1040
|
+
_MetaPill(
|
|
1041
|
+
icon: Icons.extension_outlined,
|
|
1042
|
+
label: 'Cookie setup',
|
|
1043
|
+
color: _warning,
|
|
1044
|
+
),
|
|
1044
1045
|
],
|
|
1045
1046
|
),
|
|
1046
1047
|
if (_socialReachActionResult != null) ...<Widget>[
|
package/landing/status.html
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
|
|
53
53
|
.nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
|
|
54
54
|
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; }
|
|
55
|
-
.
|
|
55
|
+
.brand-logo { display: block; width: 34px; height: 34px; border-radius: 10px; }
|
|
56
56
|
.nav a:last-child { color: var(--muted); font-size: 14px; font-weight: 650; }
|
|
57
57
|
|
|
58
58
|
.hero { padding: clamp(54px, 8vw, 104px) 0 34px; }
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
<body>
|
|
103
103
|
<div class="shell">
|
|
104
104
|
<header class="nav">
|
|
105
|
-
<a class="brand" href="/"><
|
|
105
|
+
<a class="brand" href="/"><img class="brand-logo" src="assets/logo.svg" alt="" width="34" height="34"><span>NeoAgent</span></a>
|
|
106
106
|
<a href="/app">Sign in</a>
|
|
107
107
|
</header>
|
|
108
108
|
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
<section class="hero">
|
|
111
111
|
<div class="eyebrow">Public status</div>
|
|
112
112
|
<h1>All the important systems, minus the secret knobs.</h1>
|
|
113
|
-
<p class="lede">A live, public overview of NeoAgent platform health
|
|
113
|
+
<p class="lede">A live, public overview of NeoAgent platform health.</p>
|
|
114
114
|
</section>
|
|
115
115
|
|
|
116
116
|
<section class="summary" aria-live="polite">
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
42bd4b8346d90109903a278aa69f343f
|
|
Binary file
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"a10d8ac38de835021c8d2f920dbf50a920ccc0
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "2745407135" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|