@adminide-stack/yantra-help-browser 12.0.16-alpha.20 → 12.0.16-alpha.21
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/lib/components/HelpCenterFooter.d.ts.map +1 -1
- package/lib/components/HelpCenterFooter.js +93 -73
- package/lib/components/HelpCenterFooter.js.map +1 -1
- package/lib/components/HelpCenterHeader.d.ts.map +1 -1
- package/lib/components/HelpCenterHeader.js +57 -12
- package/lib/components/HelpCenterHeader.js.map +1 -1
- package/lib/components/SearchBar.js +1 -1
- package/lib/pages/HelpCenter/components/HelpCategoryCard.d.ts +2 -0
- package/lib/pages/HelpCenter/components/HelpCategoryCard.d.ts.map +1 -1
- package/lib/pages/HelpCenter/components/HelpCategoryCard.js +135 -50
- package/lib/pages/HelpCenter/components/HelpCategoryCard.js.map +1 -1
- package/lib/pages/HelpCenter/components/Icons.d.ts +10 -0
- package/lib/pages/HelpCenter/components/Icons.d.ts.map +1 -1
- package/lib/pages/HelpCenter/components/Icons.js +211 -1
- package/lib/pages/HelpCenter/components/Icons.js.map +1 -1
- package/lib/pages/HelpCenter/components/PopularArticle.d.ts.map +1 -1
- package/lib/pages/HelpCenter/components/PopularArticle.js +17 -23
- package/lib/pages/HelpCenter/components/PopularArticle.js.map +1 -1
- package/lib/pages/HelpCenter/index.d.ts.map +1 -1
- package/lib/pages/HelpCenter/index.js +105 -30
- package/lib/pages/HelpCenter/index.js.map +1 -1
- package/lib/pages/HelpCenter/mockData.d.ts.map +1 -1
- package/lib/pages/HelpCenter/mockData.js +14 -6
- package/lib/pages/HelpCenter/mockData.js.map +1 -1
- package/lib/templates/content/ai-employees/ai-employees-overview.md +97 -0
- package/lib/templates/content/ai-employees/getting-started-ai-employees.md +119 -0
- package/lib/templates/content/ai-employees/how-ai-employees-work.md +123 -0
- package/lib/templates/content/ai-employees/supervised-mode.md +141 -0
- package/lib/templates/content/content-manifest.json +2082 -93
- package/lib/templates/content/integrations/crm-integrations.md +130 -0
- package/lib/templates/content/integrations/github-integration.md +95 -0
- package/lib/templates/content/integrations/integrations-overview.md +142 -0
- package/lib/templates/content/integrations/monitoring-integrations.md +109 -0
- package/lib/templates/content/integrations/productivity-integrations.md +129 -0
- package/lib/templates/content/integrations/slack-integration.md +79 -0
- package/lib/templates/content/openclaw/openclaw-architecture.md +202 -0
- package/lib/templates/content/openclaw/openclaw-contribution.md +107 -0
- package/lib/templates/content/openclaw/openclaw-overview.md +152 -0
- package/lib/templates/content/platform-features/always-watching.md +63 -0
- package/lib/templates/content/platform-features/instant-context.md +67 -0
- package/lib/templates/content/platform-features/instant-onboarding.md +80 -0
- package/lib/templates/content/platform-features/platform-overview.md +58 -0
- package/lib/templates/content/platform-features/proactive-alerts.md +88 -0
- package/lib/templates/content/platform-features/smart-escalation.md +93 -0
- package/lib/templates/content/security-compliance/audit-trail.md +112 -0
- package/lib/templates/content/security-compliance/compliance.md +120 -0
- package/lib/templates/content/security-compliance/data-encryption.md +94 -0
- package/lib/templates/content/security-compliance/security-overview.md +186 -0
- package/lib/templates/content/security-compliance/vm-isolation.md +126 -0
- package/lib/templates/content/solutions-engineering/bug-tracking-context.md +126 -0
- package/lib/templates/content/solutions-engineering/engineering-overview.md +107 -0
- package/lib/templates/content/solutions-engineering/error-monitoring.md +120 -0
- package/lib/templates/content/solutions-engineering/institutional-memory.md +120 -0
- package/lib/templates/content/solutions-marketing/brand-monitoring.md +135 -0
- package/lib/templates/content/solutions-marketing/content-automation.md +111 -0
- package/lib/templates/content/solutions-marketing/marketing-overview.md +108 -0
- package/lib/templates/content/solutions-marketing/social-media-management.md +108 -0
- package/lib/templates/content/solutions-sales/call-preparation.md +106 -0
- package/lib/templates/content/solutions-sales/crm-automation.md +119 -0
- package/lib/templates/content/solutions-sales/lead-management.md +108 -0
- package/lib/templates/content/solutions-sales/sales-overview.md +120 -0
- package/lib/templates/content/use-cases/engineering-use-cases.md +123 -0
- package/lib/templates/content/use-cases/marketing-use-cases.md +128 -0
- package/lib/templates/content/use-cases/sales-use-cases.md +123 -0
- package/lib/templates/content/use-cases/support-use-cases.md +120 -0
- package/lib/templates/content/use-cases/use-cases-overview.md +115 -0
- package/package.json +2 -2
- package/lib/pages/HelpCenter/components/BookStack.js +0 -36
- package/lib/pages/HelpCenter/components/BookStack.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {jsxs
|
|
1
|
+
import {jsx,jsxs}from'react/jsx-runtime';const HelpCenterIcons = {
|
|
2
2
|
Perplexity: props => jsxs("svg", {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
viewBox: "0 0 24 24",
|
|
@@ -338,5 +338,215 @@ import {jsxs,jsx}from'react/jsx-runtime';const HelpCenterIcons = {
|
|
|
338
338
|
}), jsx("path", {
|
|
339
339
|
d: "M6 12v5c3 3 9 3 12 0v-5"
|
|
340
340
|
})]
|
|
341
|
+
}),
|
|
342
|
+
// --- New category icons ---
|
|
343
|
+
PlatformFeatures: props => jsxs("svg", {
|
|
344
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
345
|
+
viewBox: "0 0 24 24",
|
|
346
|
+
fill: "none",
|
|
347
|
+
stroke: "currentColor",
|
|
348
|
+
strokeWidth: "2",
|
|
349
|
+
strokeLinecap: "round",
|
|
350
|
+
strokeLinejoin: "round",
|
|
351
|
+
width: "24",
|
|
352
|
+
height: "24",
|
|
353
|
+
...props,
|
|
354
|
+
children: [jsx("rect", {
|
|
355
|
+
x: "3",
|
|
356
|
+
y: "3",
|
|
357
|
+
width: "7",
|
|
358
|
+
height: "7",
|
|
359
|
+
rx: "1"
|
|
360
|
+
}), jsx("rect", {
|
|
361
|
+
x: "14",
|
|
362
|
+
y: "3",
|
|
363
|
+
width: "7",
|
|
364
|
+
height: "7",
|
|
365
|
+
rx: "1"
|
|
366
|
+
}), jsx("rect", {
|
|
367
|
+
x: "3",
|
|
368
|
+
y: "14",
|
|
369
|
+
width: "7",
|
|
370
|
+
height: "7",
|
|
371
|
+
rx: "1"
|
|
372
|
+
}), jsx("rect", {
|
|
373
|
+
x: "14",
|
|
374
|
+
y: "14",
|
|
375
|
+
width: "7",
|
|
376
|
+
height: "7",
|
|
377
|
+
rx: "1"
|
|
378
|
+
})]
|
|
379
|
+
}),
|
|
380
|
+
AiEmployees: props => jsxs("svg", {
|
|
381
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
382
|
+
viewBox: "0 0 24 24",
|
|
383
|
+
fill: "none",
|
|
384
|
+
stroke: "currentColor",
|
|
385
|
+
strokeWidth: "2",
|
|
386
|
+
strokeLinecap: "round",
|
|
387
|
+
strokeLinejoin: "round",
|
|
388
|
+
width: "24",
|
|
389
|
+
height: "24",
|
|
390
|
+
...props,
|
|
391
|
+
children: [jsx("path", {
|
|
392
|
+
d: "M12 8V4H8"
|
|
393
|
+
}), jsx("rect", {
|
|
394
|
+
x: "2",
|
|
395
|
+
y: "2",
|
|
396
|
+
width: "20",
|
|
397
|
+
height: "20",
|
|
398
|
+
rx: "5"
|
|
399
|
+
}), jsx("path", {
|
|
400
|
+
d: "M8 14s1.5 2 4 2 4-2 4-2"
|
|
401
|
+
}), jsx("line", {
|
|
402
|
+
x1: "9",
|
|
403
|
+
y1: "9",
|
|
404
|
+
x2: "9.01",
|
|
405
|
+
y2: "9"
|
|
406
|
+
}), jsx("line", {
|
|
407
|
+
x1: "15",
|
|
408
|
+
y1: "9",
|
|
409
|
+
x2: "15.01",
|
|
410
|
+
y2: "9"
|
|
411
|
+
})]
|
|
412
|
+
}),
|
|
413
|
+
SolutionsEngineering: props => jsxs("svg", {
|
|
414
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
415
|
+
viewBox: "0 0 24 24",
|
|
416
|
+
fill: "none",
|
|
417
|
+
stroke: "currentColor",
|
|
418
|
+
strokeWidth: "2",
|
|
419
|
+
strokeLinecap: "round",
|
|
420
|
+
strokeLinejoin: "round",
|
|
421
|
+
width: "24",
|
|
422
|
+
height: "24",
|
|
423
|
+
...props,
|
|
424
|
+
children: [jsx("polyline", {
|
|
425
|
+
points: "16 18 22 12 16 6"
|
|
426
|
+
}), jsx("polyline", {
|
|
427
|
+
points: "8 6 2 12 8 18"
|
|
428
|
+
}), jsx("line", {
|
|
429
|
+
x1: "12",
|
|
430
|
+
y1: "2",
|
|
431
|
+
x2: "12",
|
|
432
|
+
y2: "22"
|
|
433
|
+
})]
|
|
434
|
+
}),
|
|
435
|
+
SolutionsSales: props => jsx("svg", {
|
|
436
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
437
|
+
viewBox: "0 0 24 24",
|
|
438
|
+
fill: "none",
|
|
439
|
+
stroke: "currentColor",
|
|
440
|
+
strokeWidth: "2",
|
|
441
|
+
strokeLinecap: "round",
|
|
442
|
+
strokeLinejoin: "round",
|
|
443
|
+
width: "24",
|
|
444
|
+
height: "24",
|
|
445
|
+
...props,
|
|
446
|
+
children: jsx("path", {
|
|
447
|
+
d: "M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"
|
|
448
|
+
})
|
|
449
|
+
}),
|
|
450
|
+
SolutionsMarketing: props => jsx("svg", {
|
|
451
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
452
|
+
viewBox: "0 0 24 24",
|
|
453
|
+
fill: "none",
|
|
454
|
+
stroke: "currentColor",
|
|
455
|
+
strokeWidth: "2",
|
|
456
|
+
strokeLinecap: "round",
|
|
457
|
+
strokeLinejoin: "round",
|
|
458
|
+
width: "24",
|
|
459
|
+
height: "24",
|
|
460
|
+
...props,
|
|
461
|
+
children: jsx("path", {
|
|
462
|
+
d: "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"
|
|
463
|
+
})
|
|
464
|
+
}),
|
|
465
|
+
Integrations: props => jsxs("svg", {
|
|
466
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
467
|
+
viewBox: "0 0 24 24",
|
|
468
|
+
fill: "none",
|
|
469
|
+
stroke: "currentColor",
|
|
470
|
+
strokeWidth: "2",
|
|
471
|
+
strokeLinecap: "round",
|
|
472
|
+
strokeLinejoin: "round",
|
|
473
|
+
width: "24",
|
|
474
|
+
height: "24",
|
|
475
|
+
...props,
|
|
476
|
+
children: [jsx("path", {
|
|
477
|
+
d: "M4 11a9 9 0 0 1 9 9"
|
|
478
|
+
}), jsx("path", {
|
|
479
|
+
d: "M4 4a16 16 0 0 1 16 16"
|
|
480
|
+
}), jsx("circle", {
|
|
481
|
+
cx: "5",
|
|
482
|
+
cy: "19",
|
|
483
|
+
r: "1"
|
|
484
|
+
})]
|
|
485
|
+
}),
|
|
486
|
+
SecurityCompliance: props => jsxs("svg", {
|
|
487
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
488
|
+
viewBox: "0 0 24 24",
|
|
489
|
+
fill: "none",
|
|
490
|
+
stroke: "currentColor",
|
|
491
|
+
strokeWidth: "2",
|
|
492
|
+
strokeLinecap: "round",
|
|
493
|
+
strokeLinejoin: "round",
|
|
494
|
+
width: "24",
|
|
495
|
+
height: "24",
|
|
496
|
+
...props,
|
|
497
|
+
children: [jsx("path", {
|
|
498
|
+
d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"
|
|
499
|
+
}), jsx("path", {
|
|
500
|
+
d: "m9 12 2 2 4-4"
|
|
501
|
+
})]
|
|
502
|
+
}),
|
|
503
|
+
OpenClaw: props => jsxs("svg", {
|
|
504
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
505
|
+
viewBox: "0 0 24 24",
|
|
506
|
+
fill: "none",
|
|
507
|
+
stroke: "currentColor",
|
|
508
|
+
strokeWidth: "2",
|
|
509
|
+
strokeLinecap: "round",
|
|
510
|
+
strokeLinejoin: "round",
|
|
511
|
+
width: "24",
|
|
512
|
+
height: "24",
|
|
513
|
+
...props,
|
|
514
|
+
children: [jsx("path", {
|
|
515
|
+
d: "M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"
|
|
516
|
+
}), jsx("path", {
|
|
517
|
+
d: "M9 18c-4.51 2-5-2-7-2"
|
|
518
|
+
})]
|
|
519
|
+
}),
|
|
520
|
+
UseCases: props => jsxs("svg", {
|
|
521
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
522
|
+
viewBox: "0 0 24 24",
|
|
523
|
+
fill: "none",
|
|
524
|
+
stroke: "currentColor",
|
|
525
|
+
strokeWidth: "2",
|
|
526
|
+
strokeLinecap: "round",
|
|
527
|
+
strokeLinejoin: "round",
|
|
528
|
+
width: "24",
|
|
529
|
+
height: "24",
|
|
530
|
+
...props,
|
|
531
|
+
children: [jsx("path", {
|
|
532
|
+
d: "M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"
|
|
533
|
+
}), jsx("path", {
|
|
534
|
+
d: "M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"
|
|
535
|
+
})]
|
|
536
|
+
}),
|
|
537
|
+
Documentation: props => jsx("svg", {
|
|
538
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
539
|
+
viewBox: "0 0 24 24",
|
|
540
|
+
fill: "none",
|
|
541
|
+
stroke: "currentColor",
|
|
542
|
+
strokeWidth: "2",
|
|
543
|
+
strokeLinecap: "round",
|
|
544
|
+
strokeLinejoin: "round",
|
|
545
|
+
width: "24",
|
|
546
|
+
height: "24",
|
|
547
|
+
...props,
|
|
548
|
+
children: jsx("path", {
|
|
549
|
+
d: "M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
|
|
550
|
+
})
|
|
341
551
|
})
|
|
342
552
|
};export{HelpCenterIcons};//# sourceMappingURL=Icons.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icons.js","sources":["../../../../src/pages/HelpCenter/components/Icons.tsx"],"sourcesContent":[null],"names":["_jsxs","_jsx"],"mappings":"yCAEa,MAAA,eAAe,GAAG;
|
|
1
|
+
{"version":3,"file":"Icons.js","sources":["../../../../src/pages/HelpCenter/components/Icons.tsx"],"sourcesContent":[null],"names":["_jsxs","_jsx"],"mappings":"yCAEa,MAAA,eAAe,GAAG;AAC3B,EAAA,UAAA,EAAU,KAAuC,IAAAA,IAC7C,CACI,KAAA,EAAA;AAgBR,IAAA,KAAK,EAAqC,4BAE7B;IAgBb,OAAQ,EAAA,WAA2C;AAgBnD,IAAA,IAAA,EAAA,MAAY;IAiBZ,MAAW,EAAA,cAAyC;IAiBpD,WAAU,EAAG,GAAA;AAiBb,IAAA,aAA8C,EAAA,OAC1C;AAgBJ,IAAA,cAAgD,EAAA,OAC5C;AAgBJ,IAAA,KAAA,EAAO,IAAG;IAiBV,MAAM,EAAE,IAAC;IAgBT,GAAO,KAAA;IAgBP,QAAe,EAAA,CAAAC,GAAA,CAAA,QAAyC,EAAA;AAgBxD,MAAA,EAAK,EAAC,IAAoC;AAkB1C,MAAA,EAAA,EAAA,IAAA;MAmBkB,CAAA,EAAA;KAoBP,CAAA,EAAAA,GAAA,CAAA,MAAG,EAAA;AAiBd,MAAA,CAAA,EAAA;KAiBU,CAAA,EAAAA,GAAA,CAAA,MAAG,EAAA;MAiBgB,CAAA,EAAA;AAC7B,KAAA,CAAA;IAmBA;AAoBA,EAAA,GAAA,EAAA,KAAA,IAAAD,IAAA,CAAA,KAAuB,EAAA;IAkBvB,KAAc,EAAA,4BACV;IAeJ,OAAkB,EAAA,WAAE;AAgBpB,IAAA,IAAA,EAAA,MAAY;IAkBZ,MAAkB,EAAA,cAAG;IAiBrB,WAAW,EAAA,GAAoC;IAiB/C,aAAW,EAAA,OACP;IAgBJ,cAAa,EAAG,OAAsC;IAgBxD,KAAA,EAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PopularArticle.d.ts","sourceRoot":"","sources":["../../../../src/pages/HelpCenter/components/PopularArticle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,mBAAmB;
|
|
1
|
+
{"version":3,"file":"PopularArticle.d.ts","sourceRoot":"","sources":["../../../../src/pages/HelpCenter/components/PopularArticle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,mBAAmB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAkCxD,CAAC"}
|
|
@@ -4,16 +4,16 @@ import {jsx,jsxs}from'react/jsx-runtime';import {cn}from'../../../utils/index.js
|
|
|
4
4
|
className
|
|
5
5
|
}) => {
|
|
6
6
|
return jsx("div", {
|
|
7
|
-
className: cn(
|
|
7
|
+
className: cn('group', className),
|
|
8
8
|
children: jsxs("a", {
|
|
9
9
|
href: link,
|
|
10
|
-
className: "flex items-center justify-between rounded-
|
|
10
|
+
className: "flex items-center justify-between rounded-lg border border-border bg-card px-5 py-3.5 transition-all duration-150 hover:border-primary/30 hover:bg-accent/50 hover:shadow-sm",
|
|
11
11
|
children: [jsxs("div", {
|
|
12
|
-
className: "flex items-center
|
|
12
|
+
className: "flex items-center gap-3",
|
|
13
13
|
children: [jsx("div", {
|
|
14
|
-
className: "flex h-
|
|
14
|
+
className: "flex h-7 w-7 shrink-0 items-center justify-center rounded-md bg-primary/10 text-primary",
|
|
15
15
|
children: jsx("svg", {
|
|
16
|
-
className: "h-
|
|
16
|
+
className: "h-3.5 w-3.5",
|
|
17
17
|
fill: "none",
|
|
18
18
|
stroke: "currentColor",
|
|
19
19
|
viewBox: "0 0 24 24",
|
|
@@ -25,26 +25,20 @@ import {jsx,jsxs}from'react/jsx-runtime';import {cn}from'../../../utils/index.js
|
|
|
25
25
|
})
|
|
26
26
|
})
|
|
27
27
|
}), jsx("span", {
|
|
28
|
-
className: "font-medium text-foreground group-hover:text-primary transition-colors",
|
|
28
|
+
className: "text-sm font-medium text-foreground group-hover:text-primary transition-colors",
|
|
29
29
|
children: title
|
|
30
30
|
})]
|
|
31
|
-
}),
|
|
32
|
-
className: "
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
strokeLinecap: "round",
|
|
43
|
-
strokeLinejoin: "round",
|
|
44
|
-
strokeWidth: 2,
|
|
45
|
-
d: "M9 5l7 7-7 7"
|
|
46
|
-
})
|
|
47
|
-
})]
|
|
31
|
+
}), jsx("svg", {
|
|
32
|
+
className: "h-4 w-4 shrink-0 text-muted-foreground/50 transition-all duration-150 group-hover:text-primary group-hover:translate-x-0.5",
|
|
33
|
+
fill: "none",
|
|
34
|
+
stroke: "currentColor",
|
|
35
|
+
viewBox: "0 0 24 24",
|
|
36
|
+
children: jsx("path", {
|
|
37
|
+
strokeLinecap: "round",
|
|
38
|
+
strokeLinejoin: "round",
|
|
39
|
+
strokeWidth: 2,
|
|
40
|
+
d: "M9 5l7 7-7 7"
|
|
41
|
+
})
|
|
48
42
|
})]
|
|
49
43
|
})
|
|
50
44
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PopularArticle.js","sources":["../../../../src/pages/HelpCenter/components/PopularArticle.tsx"],"sourcesContent":[null],"names":[],"mappings":"kFASO,MAAM,cAAc,GAAkC,CAAC;
|
|
1
|
+
{"version":3,"file":"PopularArticle.js","sources":["../../../../src/pages/HelpCenter/components/PopularArticle.tsx"],"sourcesContent":[null],"names":[],"mappings":"kFASO,MAAM,cAAc,GAAkC,CAAC;OACnD;AAiCX,EAAE,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/pages/HelpCenter/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/pages/HelpCenter/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAqB1B,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAkJ3B,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -1,57 +1,132 @@
|
|
|
1
|
-
import {jsxs,jsx}from'react/jsx-runtime';import {useNavigate}from'@remix-run/react';import {HelpCenterHeader}from'../../components/HelpCenterHeader.js';import {HelpCategoryCard}from'./components/HelpCategoryCard.js';import {PopularArticle}from'./components/PopularArticle.js';import {
|
|
1
|
+
import {jsxs,jsx}from'react/jsx-runtime';import {useNavigate}from'@remix-run/react';import {HelpCenterHeader}from'../../components/HelpCenterHeader.js';import {HelpCategoryCard}from'./components/HelpCategoryCard.js';import {PopularArticle}from'./components/PopularArticle.js';import {getAllCategoriesMetadataSync}from'../../utils/markdownLoader.js';import {popularArticlesMock}from'./mockData.js';// Featured categories that get highlighted at the top
|
|
2
|
+
const FEATURED_CATEGORY_IDS = ['platform-features', 'ai-employees', 'solutions-engineering', 'solutions-sales', 'solutions-marketing', 'integrations', 'security-compliance', 'openclaw', 'use-cases'];
|
|
3
|
+
const HelpCenterPage = () => {
|
|
2
4
|
const navigate = useNavigate();
|
|
3
5
|
// Get categories from markdown loader
|
|
4
6
|
const helpCategories = getAllCategoriesMetadataSync();
|
|
7
|
+
// Separate featured vs other categories
|
|
8
|
+
const featuredCategories = helpCategories.filter(c => FEATURED_CATEGORY_IDS.includes(c.id));
|
|
9
|
+
const otherCategories = helpCategories.filter(c => !FEATURED_CATEGORY_IDS.includes(c.id));
|
|
5
10
|
const handleCategoryClick = id => {
|
|
6
|
-
console.log('Category clicked:', id);
|
|
7
|
-
// Navigate to category page
|
|
8
11
|
navigate(`/help-center/${id}`);
|
|
9
12
|
};
|
|
10
13
|
return jsxs("div", {
|
|
11
14
|
className: "min-h-screen bg-background text-foreground",
|
|
12
|
-
children: [jsxs("
|
|
13
|
-
className: "flex items-center justify-center overflow-hidden bg-[#057d78] pt-20",
|
|
14
|
-
children: [jsx(HelpCenterHeader, {}), jsx(BookStack, {})]
|
|
15
|
-
}), jsxs("main", {
|
|
15
|
+
children: [jsx(HelpCenterHeader, {}), jsxs("main", {
|
|
16
16
|
className: "relative z-10",
|
|
17
|
-
children: [jsx("section", {
|
|
18
|
-
className: "py-
|
|
17
|
+
children: [featuredCategories.length > 0 && jsx("section", {
|
|
18
|
+
className: "py-16",
|
|
19
19
|
children: jsxs("div", {
|
|
20
|
-
className: "container mx-auto px-6 lg:px-16",
|
|
20
|
+
className: "container mx-auto px-6 lg:px-16 max-w-7xl",
|
|
21
21
|
children: [jsxs("div", {
|
|
22
|
-
className: "mb-
|
|
23
|
-
children: [jsx("
|
|
24
|
-
className: "
|
|
25
|
-
children: "
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
className: "mb-10 flex items-center gap-3",
|
|
23
|
+
children: [jsx("div", {
|
|
24
|
+
className: "flex h-8 w-8 items-center justify-center rounded-lg bg-primary/10",
|
|
25
|
+
children: jsx("svg", {
|
|
26
|
+
className: "h-4 w-4 text-primary",
|
|
27
|
+
fill: "none",
|
|
28
|
+
stroke: "currentColor",
|
|
29
|
+
viewBox: "0 0 24 24",
|
|
30
|
+
children: jsx("path", {
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round",
|
|
33
|
+
strokeWidth: 2,
|
|
34
|
+
d: "M11.049 2.927c.3-.921 1.603-.921 1.902 0l1.519 4.674a1 1 0 00.95.69h4.915c.969 0 1.371 1.24.588 1.81l-3.976 2.888a1 1 0 00-.363 1.118l1.518 4.674c.3.922-.755 1.688-1.538 1.118l-3.976-2.888a1 1 0 00-1.176 0l-3.976 2.888c-.783.57-1.838-.197-1.538-1.118l1.518-4.674a1 1 0 00-.363-1.118l-3.976-2.888c-.784-.57-.38-1.81.588-1.81h4.914a1 1 0 00.951-.69l1.519-4.674z"
|
|
35
|
+
})
|
|
36
|
+
})
|
|
37
|
+
}), jsxs("div", {
|
|
38
|
+
children: [jsx("h2", {
|
|
39
|
+
className: "text-2xl font-semibold tracking-tight text-foreground",
|
|
40
|
+
children: "Featured Topics"
|
|
41
|
+
}), jsx("p", {
|
|
42
|
+
className: "text-sm text-muted-foreground",
|
|
43
|
+
children: "Explore our most popular help categories"
|
|
44
|
+
})]
|
|
29
45
|
})]
|
|
30
46
|
}), jsx("div", {
|
|
31
|
-
className: "grid grid-cols-1 gap-
|
|
32
|
-
children:
|
|
47
|
+
className: "grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-3",
|
|
48
|
+
children: featuredCategories.map(category => jsx(HelpCategoryCard, {
|
|
49
|
+
category: category,
|
|
50
|
+
onClick: handleCategoryClick,
|
|
51
|
+
featured: true
|
|
52
|
+
}, category.id))
|
|
53
|
+
})]
|
|
54
|
+
})
|
|
55
|
+
}), jsx("div", {
|
|
56
|
+
className: "container mx-auto max-w-7xl px-6 lg:px-16",
|
|
57
|
+
children: jsx("div", {
|
|
58
|
+
className: "h-px bg-border"
|
|
59
|
+
})
|
|
60
|
+
}), jsx("section", {
|
|
61
|
+
className: "py-16",
|
|
62
|
+
children: jsxs("div", {
|
|
63
|
+
className: "container mx-auto px-6 lg:px-16 max-w-7xl",
|
|
64
|
+
children: [jsxs("div", {
|
|
65
|
+
className: "mb-10 flex items-center gap-3",
|
|
66
|
+
children: [jsx("div", {
|
|
67
|
+
className: "flex h-8 w-8 items-center justify-center rounded-lg bg-muted",
|
|
68
|
+
children: jsx("svg", {
|
|
69
|
+
className: "h-4 w-4 text-muted-foreground",
|
|
70
|
+
fill: "none",
|
|
71
|
+
stroke: "currentColor",
|
|
72
|
+
viewBox: "0 0 24 24",
|
|
73
|
+
children: jsx("path", {
|
|
74
|
+
strokeLinecap: "round",
|
|
75
|
+
strokeLinejoin: "round",
|
|
76
|
+
strokeWidth: 2,
|
|
77
|
+
d: "M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
|
|
78
|
+
})
|
|
79
|
+
})
|
|
80
|
+
}), jsxs("div", {
|
|
81
|
+
children: [jsx("h2", {
|
|
82
|
+
className: "text-2xl font-semibold tracking-tight text-foreground",
|
|
83
|
+
children: "All Categories"
|
|
84
|
+
}), jsxs("p", {
|
|
85
|
+
className: "text-sm text-muted-foreground",
|
|
86
|
+
children: ["Browse all ", helpCategories.length, " help topics"]
|
|
87
|
+
})]
|
|
88
|
+
})]
|
|
89
|
+
}), jsx("div", {
|
|
90
|
+
className: "grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4",
|
|
91
|
+
children: otherCategories.map(category => jsx(HelpCategoryCard, {
|
|
33
92
|
category: category,
|
|
34
93
|
onClick: handleCategoryClick
|
|
35
94
|
}, category.id))
|
|
36
95
|
})]
|
|
37
96
|
})
|
|
38
97
|
}), jsx("section", {
|
|
39
|
-
className: "bg-
|
|
98
|
+
className: "border-t border-border bg-muted/30 py-16",
|
|
40
99
|
children: jsxs("div", {
|
|
41
|
-
className: "container mx-auto px-6 lg:px-16",
|
|
100
|
+
className: "container mx-auto px-6 lg:px-16 max-w-7xl",
|
|
42
101
|
children: [jsxs("div", {
|
|
43
|
-
className: "mb-
|
|
44
|
-
children: [jsx("
|
|
45
|
-
className: "
|
|
46
|
-
children: "
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
102
|
+
className: "mb-10 flex items-center gap-3",
|
|
103
|
+
children: [jsx("div", {
|
|
104
|
+
className: "flex h-8 w-8 items-center justify-center rounded-lg bg-primary/10",
|
|
105
|
+
children: jsx("svg", {
|
|
106
|
+
className: "h-4 w-4 text-primary",
|
|
107
|
+
fill: "none",
|
|
108
|
+
stroke: "currentColor",
|
|
109
|
+
viewBox: "0 0 24 24",
|
|
110
|
+
children: jsx("path", {
|
|
111
|
+
strokeLinecap: "round",
|
|
112
|
+
strokeLinejoin: "round",
|
|
113
|
+
strokeWidth: 2,
|
|
114
|
+
d: "M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"
|
|
115
|
+
})
|
|
116
|
+
})
|
|
117
|
+
}), jsxs("div", {
|
|
118
|
+
children: [jsx("h2", {
|
|
119
|
+
className: "text-2xl font-semibold tracking-tight text-foreground",
|
|
120
|
+
children: "Popular Articles"
|
|
121
|
+
}), jsx("p", {
|
|
122
|
+
className: "text-sm text-muted-foreground",
|
|
123
|
+
children: "Quick answers to common questions"
|
|
124
|
+
})]
|
|
50
125
|
})]
|
|
51
126
|
}), jsx("div", {
|
|
52
|
-
className: "max-w-
|
|
127
|
+
className: "max-w-3xl",
|
|
53
128
|
children: jsx("div", {
|
|
54
|
-
className: "space-y-
|
|
129
|
+
className: "space-y-2",
|
|
55
130
|
children: popularArticlesMock.map(article => jsx(PopularArticle, {
|
|
56
131
|
title: article.title,
|
|
57
132
|
link: article.link
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/pages/HelpCenter/index.tsx"],"sourcesContent":[null],"names":["_jsxs"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/pages/HelpCenter/index.tsx"],"sourcesContent":[null],"names":["_jsxs","_jsx"],"mappings":"6YAQA;AACA,MAAM,qBAAqB,GAAG,CAAA,mBAAA,EAAA,cAAA,EAAA,uBAAA,EAAA,iBAAA,EAAA,qBAAA,EAAA,cAAA,EAAA,qBAAA,EAAA,UAAA,EAAA,WAAA,CAAA;AACP,MAAA,cAAA,GAAA,MAAA;QACL,QAAA,GAAA,WAAA,EAAA;;QAEG,cAAA,GAAA,4BAAA,EAAA;;QAEH,kBAAA,GAAA,cAAA,CAAA,MAAA,CAAA,CAAA,IAAA,qBAAA,CAAA,QAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA;QACO,eAAA,GAAA,cAAA,CAAA,MAAA,CAAA,CAAA,IAAA,CAAA,qBAAA,CAAA,QAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA;QACX,mBAAA,GAAA,EAAA,IAAA;IACV,QAAW,CAAA,CAAA,aAAA,EAAA,EAAA,CAAA,CAAA,CAAA;GACb;AAEF,EAAM,OAAAA,IAAA,CAAA,KAAc,EAAa;AAC7B,IAAA,SAAc,EAAA,4CAAiB;IAE/B,QAAsC,EAAA,CAAAC,GAAA,CAAA,gBAAA,EAAA,EAAA,CAAA,EAAAD,IAAA,CAAA,MAAA,EAAA;AACtC,MAAA,SAAoB,EAAA,eAA+B;MAEX,QAAA,EAAA,CAAA,kBAAA,CAAA,MAAA,GAAA,CAAA,IAAAC,GAAA,CAAA,SAAA,EAAA;QAClC,SAAA,EAAA,OAAA;QACA,QAAA,EAAAD,IAAA,CAAA,KAAgC,EAAA;AAEtC,UAAM,SAAmB,EAAA,2CAAkB;AACvC,UAAA,QAAS,EAAA,CAAAA,IAAA,CAAA,KAAA,EAAkB;AAC/B,YAAE,SAAA,EAAA,+BAAA;AAEF,YACI,QAAK,EAAA,CAAAC,GAAA,CAAA,KAAA,EAAA;AAmIb,cAAE,SAAA,EAAA,mEAAA;AAEF,cAAA,cAA6B,KAAC,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mockData.d.ts","sourceRoot":"","sources":["../../../src/pages/HelpCenter/mockData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAE7D,eAAO,MAAM,kBAAkB,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"mockData.d.ts","sourceRoot":"","sources":["../../../src/pages/HelpCenter/mockData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAE7D,eAAO,MAAM,kBAAkB,EAAE,YAAY,EAgI5C,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;GA0B/B,CAAC"}
|
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
const popularArticlesMock = [{
|
|
2
|
+
id: 'platform-overview',
|
|
3
|
+
title: 'Yantra Platform Overview',
|
|
4
|
+
link: '/help-center/platform-features/platform-overview'
|
|
5
|
+
}, {
|
|
6
|
+
id: 'getting-started-ai',
|
|
7
|
+
title: 'Getting Started with AI Employees',
|
|
8
|
+
link: '/help-center/ai-employees/getting-started-ai-employees'
|
|
9
|
+
}, {
|
|
2
10
|
id: 'what-is-yantra',
|
|
3
11
|
title: 'What is Yantra?',
|
|
4
12
|
link: '/help-center/what-is-yantra'
|
|
5
13
|
}, {
|
|
6
|
-
id: '
|
|
7
|
-
title: '
|
|
8
|
-
link: '/
|
|
14
|
+
id: 'integrations-overview',
|
|
15
|
+
title: 'Integrations Overview',
|
|
16
|
+
link: '/help-center/integrations/integrations-overview'
|
|
9
17
|
}, {
|
|
10
|
-
id: '
|
|
11
|
-
title: '
|
|
12
|
-
link: '/help-center/
|
|
18
|
+
id: 'security-overview',
|
|
19
|
+
title: 'Security & Compliance Overview',
|
|
20
|
+
link: '/help-center/security-compliance/security-overview'
|
|
13
21
|
}];export{popularArticlesMock};//# sourceMappingURL=mockData.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mockData.js","sources":[
|
|
1
|
+
{"version":3,"file":"mockData.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'AI Employees Overview'
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# AI Employees Overview
|
|
6
|
+
|
|
7
|
+
Yantra AI employees are intelligent agents that integrate into your team's existing toolkit and operate as autonomous, always-available team members. They go beyond traditional chatbots by working proactively — monitoring, analyzing, and acting on information across your connected services.
|
|
8
|
+
|
|
9
|
+
## What Makes an AI Employee Different
|
|
10
|
+
|
|
11
|
+
### Traditional AI Chatbot
|
|
12
|
+
|
|
13
|
+
- Waits for you to ask a question
|
|
14
|
+
- Has no awareness of your business context
|
|
15
|
+
- Cannot take actions in your tools
|
|
16
|
+
- Forgets conversations between sessions
|
|
17
|
+
- Operates in isolation from your workflow
|
|
18
|
+
|
|
19
|
+
### Yantra AI Employee
|
|
20
|
+
|
|
21
|
+
- Works proactively without waiting for prompts
|
|
22
|
+
- Monitors your tools 24/7 and understands your business context
|
|
23
|
+
- Updates CRMs, creates tickets, drafts messages, and logs notes
|
|
24
|
+
- Maintains a persistent memory of every interaction and decision
|
|
25
|
+
- Operates within your existing workflow seamlessly
|
|
26
|
+
|
|
27
|
+
## Core Capabilities
|
|
28
|
+
|
|
29
|
+
### 1. Observing
|
|
30
|
+
|
|
31
|
+
Your AI employee watches everything happening across your connected tools:
|
|
32
|
+
|
|
33
|
+
- Slack conversations and channel activity
|
|
34
|
+
- GitHub commits, pull requests, and deployments
|
|
35
|
+
- Error monitoring alerts and exception trends
|
|
36
|
+
- CRM deal movements and customer interactions
|
|
37
|
+
- Email threads and calendar events
|
|
38
|
+
|
|
39
|
+
### 2. Understanding
|
|
40
|
+
|
|
41
|
+
Raw events are processed into meaningful insights:
|
|
42
|
+
|
|
43
|
+
- Correlating a customer complaint in Slack with a Sentry error spike
|
|
44
|
+
- Linking a stale deal in HubSpot with a missed follow-up email
|
|
45
|
+
- Connecting a deployment failure with related code changes
|
|
46
|
+
- Identifying patterns across seemingly unrelated events
|
|
47
|
+
|
|
48
|
+
### 3. Acting
|
|
49
|
+
|
|
50
|
+
Based on observations and understanding, your AI employee takes action:
|
|
51
|
+
|
|
52
|
+
- Drafts response messages with full context
|
|
53
|
+
- Updates CRM fields and deal stages automatically
|
|
54
|
+
- Creates project tickets with detailed descriptions
|
|
55
|
+
- Sends alerts and escalations to the right people
|
|
56
|
+
- Prepares meeting briefs and daily summaries
|
|
57
|
+
|
|
58
|
+
### 4. Learning
|
|
59
|
+
|
|
60
|
+
Over time, your AI employee gets better:
|
|
61
|
+
|
|
62
|
+
- Adapts to your team's communication style and preferences
|
|
63
|
+
- Refines alert thresholds based on your responses
|
|
64
|
+
- Builds deeper relationships between data points in your organization
|
|
65
|
+
- Improves action suggestions through feedback loops
|
|
66
|
+
|
|
67
|
+
## Types of AI Employees
|
|
68
|
+
|
|
69
|
+
Yantra supports specialized AI employees configured for different functions:
|
|
70
|
+
|
|
71
|
+
| Type | Primary Function | Key Integrations |
|
|
72
|
+
| ------------------ | ---------------------------------------------------- | ------------------------------------ |
|
|
73
|
+
| **Engineering AI** | Bug tracking, deployment monitoring, context sharing | GitHub, Sentry, Linear, Slack |
|
|
74
|
+
| **Sales AI** | CRM automation, lead management, call preparation | HubSpot, Salesforce, Gmail, Calendly |
|
|
75
|
+
| **Marketing AI** | Content management, social monitoring, engagement | LinkedIn, X/Twitter, Notion, HubSpot |
|
|
76
|
+
| **Support AI** | Ticket routing, customer context, issue resolution | Slack, Zendesk, Sentry, CRM |
|
|
77
|
+
|
|
78
|
+
## Trust and Control
|
|
79
|
+
|
|
80
|
+
Yantra is designed with a **gradual trust model**:
|
|
81
|
+
|
|
82
|
+
1. **Supervised Mode**: Your AI employee drafts all actions but waits for your approval before executing
|
|
83
|
+
2. **Semi-Autonomous Mode**: Routine actions execute automatically; novel or high-impact actions require approval
|
|
84
|
+
3. **Autonomous Mode**: Your AI employee operates independently, escalating only exceptions
|
|
85
|
+
|
|
86
|
+
You can adjust the autonomy level at any time, for any action type.
|
|
87
|
+
|
|
88
|
+
## Powered by OpenClaw
|
|
89
|
+
|
|
90
|
+
Every Yantra AI employee runs on the [OpenClaw](https://github.com/openclaw) open-source agent framework. This provides:
|
|
91
|
+
|
|
92
|
+
- **Transparency**: The agent logic is open source and auditable
|
|
93
|
+
- **Community support**: Backed by a global community of developers and enterprise users
|
|
94
|
+
- **Extensibility**: Custom workflows and integrations can be built on the OpenClaw framework
|
|
95
|
+
- **Security**: Battle-tested by thousands of deployments worldwide
|
|
96
|
+
|
|
97
|
+
Learn more about the OpenClaw foundation in the [OpenClaw Overview](/help-center/openclaw/openclaw-overview).
|