natureco-cli 1.0.48 → 1.0.50

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "natureco-cli",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "NatureCo AI Bot Terminal Interface",
5
5
  "main": "bin/natureco.js",
6
6
  "bin": {
@@ -43,26 +43,26 @@ const HTML = `<!DOCTYPE html>
43
43
  *{margin:0;padding:0;box-sizing:border-box;font-family:system-ui,-apple-system,sans-serif}
44
44
  html,body{height:100%;overflow:hidden}
45
45
  body{
46
- background:#0a1628;
47
- background-image:
48
- radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0,230,118,0.15) 0%, transparent 60%),
49
- radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,188,212,0.08) 0%, transparent 50%),
50
- radial-gradient(ellipse 40% 30% at 20% 60%, rgba(0,230,118,0.06) 0%, transparent 40%);
51
- animation:bgShift 15s ease-in-out infinite alternate;
46
+ background:#0B0E11;
47
+ color:#eceff1;
48
+ font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif;
49
+ display:flex;
50
+ height:100vh;
51
+ overflow:hidden;
52
+ position:relative;
52
53
  }
53
- @keyframes bgShift{
54
- 0%{
55
- background-image:
56
- radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0,230,118,0.15) 0%, transparent 60%),
57
- radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,188,212,0.08) 0%, transparent 50%),
58
- radial-gradient(ellipse 40% 30% at 20% 60%, rgba(0,230,118,0.06) 0%, transparent 40%);
59
- }
60
- 100%{
61
- background-image:
62
- radial-gradient(ellipse 80% 50% at 30% 120%, rgba(0,230,118,0.12) 0%, transparent 60%),
63
- radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0,188,212,0.1) 0%, transparent 50%),
64
- radial-gradient(ellipse 40% 30% at 10% 80%, rgba(0,230,118,0.08) 0%, transparent 40%);
65
- }
54
+ body::before{
55
+ content:'';
56
+ position:fixed;
57
+ top:0;left:0;
58
+ width:100%;height:100%;
59
+ background:
60
+ radial-gradient(circle at 20% 80%,rgba(16,185,129,0.3) 0%,transparent 50%),
61
+ radial-gradient(circle at 80% 20%,rgba(99,102,241,0.2) 0%,transparent 50%),
62
+ radial-gradient(circle at 40% 40%,rgba(245,158,11,0.1) 0%,transparent 50%),
63
+ linear-gradient(180deg,#06080A 0%,#0B0E11 100%);
64
+ z-index:-1;
65
+ pointer-events:none;
66
66
  }
67
67
  .app{display:flex;height:100vh}
68
68
  .sidebar{
@@ -211,7 +211,7 @@ body{
211
211
  <div class="header-bot-name" id="header-bot-name">Nature Bot</div>
212
212
  <div class="header-bot-model" id="header-bot-model">NatureCo</div>
213
213
  </div>
214
- <div class="version-badge" id="version-badge">v1.0.48</div>
214
+ <div class="version-badge" id="version-badge">v1.0.50</div>
215
215
  </div>
216
216
  <div class="messages" id="messages"></div>
217
217
  <div class="input-area">
@@ -341,7 +341,7 @@ function dashboard(action) {
341
341
  apiKey: cfg.apiKey,
342
342
  defaultBot: cfg.defaultBot,
343
343
  defaultBotId: cfg.defaultBotId,
344
- version: 'v1.0.48',
344
+ version: 'v1.0.50',
345
345
  bots: cfg.bots || [],
346
346
  telegramToken: cfg.telegramToken || null,
347
347
  whatsappConnected: cfg.whatsappConnected || false,