@actioneer/ads-mcp 0.2.1 → 0.2.4
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/bin/ads-mcp.mjs +27 -11
- package/manifest.json +485 -186
- package/package.json +7 -3
package/bin/ads-mcp.mjs
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// Manifest resolution order (first hit wins):
|
|
5
5
|
// 1. $ADS_MANIFEST (explicit path override)
|
|
6
6
|
// 2. @actioneer/ads/manifest.json (the consumer's installed ADS version —
|
|
7
|
-
//
|
|
8
|
-
//
|
|
7
|
+
// resolved from the consumer's CWD preferred, so the catalog matches what
|
|
8
|
+
// FIRST, then package-relative they actually import)
|
|
9
9
|
// 3. <this package>/manifest.json (the snapshot BUNDLED at publish time —
|
|
10
10
|
// makes `npx @actioneer/ads-mcp` work
|
|
11
11
|
// standalone, with no ADS installed)
|
|
@@ -15,22 +15,38 @@
|
|
|
15
15
|
|
|
16
16
|
import { readFileSync, existsSync } from "node:fs";
|
|
17
17
|
import { createRequire } from "node:module";
|
|
18
|
-
import { dirname, resolve } from "node:path";
|
|
19
|
-
import { fileURLToPath } from "node:url";
|
|
18
|
+
import { dirname, join, resolve } from "node:path";
|
|
19
|
+
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
20
20
|
import { startServer } from "../src/server.mjs";
|
|
21
21
|
|
|
22
22
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
23
|
-
const require = createRequire(import.meta.url);
|
|
24
23
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
/**
|
|
25
|
+
* Resolve `@actioneer/ads/manifest.json` from a given base (a file URL). Returns
|
|
26
|
+
* the absolute path or null if it isn't installed relative to that base.
|
|
27
|
+
* @param {URL|string} base
|
|
28
|
+
*/
|
|
29
|
+
function resolveInstalledManifest(base) {
|
|
29
30
|
try {
|
|
30
|
-
return
|
|
31
|
+
return createRequire(base).resolve("@actioneer/ads/manifest.json");
|
|
31
32
|
} catch {
|
|
32
|
-
|
|
33
|
+
return null;
|
|
33
34
|
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function resolveManifestPath() {
|
|
38
|
+
// 1. Explicit override.
|
|
39
|
+
if (process.env.ADS_MANIFEST && existsSync(process.env.ADS_MANIFEST)) return process.env.ADS_MANIFEST;
|
|
40
|
+
// 2a. The consumer's PROJECT-installed @actioneer/ads, resolved from their CWD.
|
|
41
|
+
// `npx @actioneer/ads-mcp` runs from the npx cache, so an import.meta.url
|
|
42
|
+
// require never sees the consumer's node_modules — root the resolution at
|
|
43
|
+
// their package.json so the project's EXACT version wins over the bundled
|
|
44
|
+
// snapshot (best-effort; it's an optional peer).
|
|
45
|
+
const cwdInstalled = resolveInstalledManifest(pathToFileURL(join(process.cwd(), "package.json")));
|
|
46
|
+
if (cwdInstalled) return cwdInstalled;
|
|
47
|
+
// 2b. Package-relative install (this bin colocated with @actioneer/ads).
|
|
48
|
+
const pkgInstalled = resolveInstalledManifest(import.meta.url);
|
|
49
|
+
if (pkgInstalled) return pkgInstalled;
|
|
34
50
|
// 3. The snapshot bundled INTO this package by `prepack` — the self-contained
|
|
35
51
|
// fallback that guarantees a published install always has a catalog.
|
|
36
52
|
const bundled = resolve(__dirname, "../manifest.json");
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actioneer/ads",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"importPath": "@actioneer/ads",
|
|
5
5
|
"styleImport": "@import \"@actioneer/ads/styles.css\";",
|
|
6
6
|
"families": [
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"Chat"
|
|
17
17
|
],
|
|
18
18
|
"counts": {
|
|
19
|
-
"total":
|
|
20
|
-
"component":
|
|
21
|
-
"type":
|
|
22
|
-
"hook":
|
|
23
|
-
"util":
|
|
19
|
+
"total": 593,
|
|
20
|
+
"component": 297,
|
|
21
|
+
"type": 245,
|
|
22
|
+
"hook": 7,
|
|
23
|
+
"util": 44
|
|
24
24
|
},
|
|
25
25
|
"tokens": [
|
|
26
26
|
{
|
|
@@ -992,6 +992,24 @@
|
|
|
992
992
|
"importPath": "@actioneer/ads",
|
|
993
993
|
"module": "textarea"
|
|
994
994
|
},
|
|
995
|
+
{
|
|
996
|
+
"name": "CommandPalette",
|
|
997
|
+
"family": "Overlays",
|
|
998
|
+
"kind": "component",
|
|
999
|
+
"importPath": "@actioneer/ads",
|
|
1000
|
+
"module": "command-palette",
|
|
1001
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/command-palette",
|
|
1002
|
+
"props": [
|
|
1003
|
+
"open",
|
|
1004
|
+
"onOpenChange",
|
|
1005
|
+
"items",
|
|
1006
|
+
"onSelect",
|
|
1007
|
+
"placeholder",
|
|
1008
|
+
"emptyLabel",
|
|
1009
|
+
"filter",
|
|
1010
|
+
"className"
|
|
1011
|
+
]
|
|
1012
|
+
},
|
|
995
1013
|
{
|
|
996
1014
|
"name": "Drawer",
|
|
997
1015
|
"family": "Overlays",
|
|
@@ -1460,6 +1478,20 @@
|
|
|
1460
1478
|
"className"
|
|
1461
1479
|
]
|
|
1462
1480
|
},
|
|
1481
|
+
{
|
|
1482
|
+
"name": "CommandPaletteItem",
|
|
1483
|
+
"family": "Overlays",
|
|
1484
|
+
"kind": "type",
|
|
1485
|
+
"importPath": "@actioneer/ads",
|
|
1486
|
+
"module": "command-palette"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"name": "CommandPaletteProps",
|
|
1490
|
+
"family": "Overlays",
|
|
1491
|
+
"kind": "type",
|
|
1492
|
+
"importPath": "@actioneer/ads",
|
|
1493
|
+
"module": "command-palette"
|
|
1494
|
+
},
|
|
1463
1495
|
{
|
|
1464
1496
|
"name": "DrawerProps",
|
|
1465
1497
|
"family": "Overlays",
|
|
@@ -1618,48 +1650,6 @@
|
|
|
1618
1650
|
"title"
|
|
1619
1651
|
]
|
|
1620
1652
|
},
|
|
1621
|
-
{
|
|
1622
|
-
"name": "ANSWER_TOOL_DESCRIPTION",
|
|
1623
|
-
"family": "Data display",
|
|
1624
|
-
"kind": "component",
|
|
1625
|
-
"importPath": "@actioneer/ads",
|
|
1626
|
-
"module": "answer",
|
|
1627
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/answer",
|
|
1628
|
-
"variants": {
|
|
1629
|
-
"tone": {
|
|
1630
|
-
"values": [
|
|
1631
|
-
"default",
|
|
1632
|
-
"primary",
|
|
1633
|
-
"success",
|
|
1634
|
-
"warning",
|
|
1635
|
-
"danger",
|
|
1636
|
-
"info"
|
|
1637
|
-
],
|
|
1638
|
-
"default": "default"
|
|
1639
|
-
}
|
|
1640
|
-
}
|
|
1641
|
-
},
|
|
1642
|
-
{
|
|
1643
|
-
"name": "ANSWER_TOOL_NAME",
|
|
1644
|
-
"family": "Data display",
|
|
1645
|
-
"kind": "component",
|
|
1646
|
-
"importPath": "@actioneer/ads",
|
|
1647
|
-
"module": "answer",
|
|
1648
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/answer",
|
|
1649
|
-
"variants": {
|
|
1650
|
-
"tone": {
|
|
1651
|
-
"values": [
|
|
1652
|
-
"default",
|
|
1653
|
-
"primary",
|
|
1654
|
-
"success",
|
|
1655
|
-
"warning",
|
|
1656
|
-
"danger",
|
|
1657
|
-
"info"
|
|
1658
|
-
],
|
|
1659
|
-
"default": "default"
|
|
1660
|
-
}
|
|
1661
|
-
}
|
|
1662
|
-
},
|
|
1663
1653
|
{
|
|
1664
1654
|
"name": "AnswerRenderer",
|
|
1665
1655
|
"family": "Data display",
|
|
@@ -1770,7 +1760,8 @@
|
|
|
1770
1760
|
"module": "chart",
|
|
1771
1761
|
"showcaseUrl": "https://ads.actioneer.dev/#/chart",
|
|
1772
1762
|
"props": [
|
|
1773
|
-
"stacked"
|
|
1763
|
+
"stacked",
|
|
1764
|
+
"layout"
|
|
1774
1765
|
]
|
|
1775
1766
|
},
|
|
1776
1767
|
{
|
|
@@ -2062,6 +2053,9 @@
|
|
|
2062
2053
|
"valueKey",
|
|
2063
2054
|
"height",
|
|
2064
2055
|
"formatValue",
|
|
2056
|
+
"label",
|
|
2057
|
+
"labelWidth",
|
|
2058
|
+
"tooltip",
|
|
2065
2059
|
"className"
|
|
2066
2060
|
]
|
|
2067
2061
|
},
|
|
@@ -2094,6 +2088,7 @@
|
|
|
2094
2088
|
"height",
|
|
2095
2089
|
"legend",
|
|
2096
2090
|
"formatValue",
|
|
2091
|
+
"tooltip",
|
|
2097
2092
|
"className"
|
|
2098
2093
|
]
|
|
2099
2094
|
},
|
|
@@ -2121,6 +2116,7 @@
|
|
|
2121
2116
|
"height",
|
|
2122
2117
|
"legend",
|
|
2123
2118
|
"formatValue",
|
|
2119
|
+
"tooltip",
|
|
2124
2120
|
"className"
|
|
2125
2121
|
]
|
|
2126
2122
|
},
|
|
@@ -2141,6 +2137,13 @@
|
|
|
2141
2137
|
"grid",
|
|
2142
2138
|
"showYAxis",
|
|
2143
2139
|
"formatValue",
|
|
2140
|
+
"xScale",
|
|
2141
|
+
"xDomain",
|
|
2142
|
+
"yDomain",
|
|
2143
|
+
"xTickFormatter",
|
|
2144
|
+
"yTickFormatter",
|
|
2145
|
+
"yAxisWidth",
|
|
2146
|
+
"tooltip",
|
|
2144
2147
|
"className"
|
|
2145
2148
|
]
|
|
2146
2149
|
},
|
|
@@ -2310,12 +2313,6 @@
|
|
|
2310
2313
|
"lg"
|
|
2311
2314
|
],
|
|
2312
2315
|
"default": "md"
|
|
2313
|
-
},
|
|
2314
|
-
"selected": {
|
|
2315
|
-
"values": [
|
|
2316
|
-
"true",
|
|
2317
|
-
"false"
|
|
2318
|
-
]
|
|
2319
2316
|
}
|
|
2320
2317
|
}
|
|
2321
2318
|
},
|
|
@@ -2516,6 +2513,7 @@
|
|
|
2516
2513
|
"valueKey",
|
|
2517
2514
|
"height",
|
|
2518
2515
|
"formatValue",
|
|
2516
|
+
"tooltip",
|
|
2519
2517
|
"className"
|
|
2520
2518
|
]
|
|
2521
2519
|
},
|
|
@@ -2704,6 +2702,13 @@
|
|
|
2704
2702
|
"importPath": "@actioneer/ads",
|
|
2705
2703
|
"module": "chart"
|
|
2706
2704
|
},
|
|
2705
|
+
{
|
|
2706
|
+
"name": "ChartAxisDomain",
|
|
2707
|
+
"family": "Data display",
|
|
2708
|
+
"kind": "type",
|
|
2709
|
+
"importPath": "@actioneer/ads",
|
|
2710
|
+
"module": "chart"
|
|
2711
|
+
},
|
|
2707
2712
|
{
|
|
2708
2713
|
"name": "ChartColor",
|
|
2709
2714
|
"family": "Data display",
|
|
@@ -2718,6 +2723,41 @@
|
|
|
2718
2723
|
"importPath": "@actioneer/ads",
|
|
2719
2724
|
"module": "chart"
|
|
2720
2725
|
},
|
|
2726
|
+
{
|
|
2727
|
+
"name": "ChartTickFormatter",
|
|
2728
|
+
"family": "Data display",
|
|
2729
|
+
"kind": "type",
|
|
2730
|
+
"importPath": "@actioneer/ads",
|
|
2731
|
+
"module": "chart"
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
"name": "ChartTooltipContext",
|
|
2735
|
+
"family": "Data display",
|
|
2736
|
+
"kind": "type",
|
|
2737
|
+
"importPath": "@actioneer/ads",
|
|
2738
|
+
"module": "chart"
|
|
2739
|
+
},
|
|
2740
|
+
{
|
|
2741
|
+
"name": "ChartTooltipItem",
|
|
2742
|
+
"family": "Data display",
|
|
2743
|
+
"kind": "type",
|
|
2744
|
+
"importPath": "@actioneer/ads",
|
|
2745
|
+
"module": "chart"
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
"name": "ChartTooltipRenderer",
|
|
2749
|
+
"family": "Data display",
|
|
2750
|
+
"kind": "type",
|
|
2751
|
+
"importPath": "@actioneer/ads",
|
|
2752
|
+
"module": "chart"
|
|
2753
|
+
},
|
|
2754
|
+
{
|
|
2755
|
+
"name": "ChartXScale",
|
|
2756
|
+
"family": "Data display",
|
|
2757
|
+
"kind": "type",
|
|
2758
|
+
"importPath": "@actioneer/ads",
|
|
2759
|
+
"module": "chart"
|
|
2760
|
+
},
|
|
2721
2761
|
{
|
|
2722
2762
|
"name": "ChipProps",
|
|
2723
2763
|
"family": "Data display",
|
|
@@ -2823,6 +2863,20 @@
|
|
|
2823
2863
|
"importPath": "@actioneer/ads",
|
|
2824
2864
|
"module": "chart"
|
|
2825
2865
|
},
|
|
2866
|
+
{
|
|
2867
|
+
"name": "FunnelLabelContext",
|
|
2868
|
+
"family": "Data display",
|
|
2869
|
+
"kind": "type",
|
|
2870
|
+
"importPath": "@actioneer/ads",
|
|
2871
|
+
"module": "chart"
|
|
2872
|
+
},
|
|
2873
|
+
{
|
|
2874
|
+
"name": "FunnelLabelRenderer",
|
|
2875
|
+
"family": "Data display",
|
|
2876
|
+
"kind": "type",
|
|
2877
|
+
"importPath": "@actioneer/ads",
|
|
2878
|
+
"module": "chart"
|
|
2879
|
+
},
|
|
2826
2880
|
{
|
|
2827
2881
|
"name": "LineChartProps",
|
|
2828
2882
|
"family": "Data display",
|
|
@@ -3005,6 +3059,20 @@
|
|
|
3005
3059
|
"importPath": "@actioneer/ads",
|
|
3006
3060
|
"module": "answer"
|
|
3007
3061
|
},
|
|
3062
|
+
{
|
|
3063
|
+
"name": "ANSWER_TOOL_DESCRIPTION",
|
|
3064
|
+
"family": "Data display",
|
|
3065
|
+
"kind": "util",
|
|
3066
|
+
"importPath": "@actioneer/ads",
|
|
3067
|
+
"module": "answer"
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"name": "ANSWER_TOOL_NAME",
|
|
3071
|
+
"family": "Data display",
|
|
3072
|
+
"kind": "util",
|
|
3073
|
+
"importPath": "@actioneer/ads",
|
|
3074
|
+
"module": "answer"
|
|
3075
|
+
},
|
|
3008
3076
|
{
|
|
3009
3077
|
"name": "AnswerFollowUpSchema",
|
|
3010
3078
|
"family": "Data display",
|
|
@@ -3488,7 +3556,8 @@
|
|
|
3488
3556
|
"logo",
|
|
3489
3557
|
"href",
|
|
3490
3558
|
"label",
|
|
3491
|
-
"showTrigger"
|
|
3559
|
+
"showTrigger",
|
|
3560
|
+
"children"
|
|
3492
3561
|
]
|
|
3493
3562
|
},
|
|
3494
3563
|
{
|
|
@@ -3791,7 +3860,7 @@
|
|
|
3791
3860
|
"showcaseUrl": "https://ads.actioneer.dev/#/ai/chain-of-thought"
|
|
3792
3861
|
},
|
|
3793
3862
|
{
|
|
3794
|
-
"name": "
|
|
3863
|
+
"name": "ChainOfThoughtImage",
|
|
3795
3864
|
"family": "AI Elements",
|
|
3796
3865
|
"kind": "component",
|
|
3797
3866
|
"importPath": "@actioneer/ads",
|
|
@@ -3799,7 +3868,7 @@
|
|
|
3799
3868
|
"showcaseUrl": "https://ads.actioneer.dev/#/ai/chain-of-thought"
|
|
3800
3869
|
},
|
|
3801
3870
|
{
|
|
3802
|
-
"name": "
|
|
3871
|
+
"name": "ChainOfThoughtItem",
|
|
3803
3872
|
"family": "AI Elements",
|
|
3804
3873
|
"kind": "component",
|
|
3805
3874
|
"importPath": "@actioneer/ads",
|
|
@@ -3830,6 +3899,14 @@
|
|
|
3830
3899
|
"module": "chain-of-thought",
|
|
3831
3900
|
"showcaseUrl": "https://ads.actioneer.dev/#/ai/chain-of-thought"
|
|
3832
3901
|
},
|
|
3902
|
+
{
|
|
3903
|
+
"name": "ChainOfThoughtTrigger",
|
|
3904
|
+
"family": "AI Elements",
|
|
3905
|
+
"kind": "component",
|
|
3906
|
+
"importPath": "@actioneer/ads",
|
|
3907
|
+
"module": "chain-of-thought",
|
|
3908
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/chain-of-thought"
|
|
3909
|
+
},
|
|
3833
3910
|
{
|
|
3834
3911
|
"name": "InlineCitation",
|
|
3835
3912
|
"family": "AI Elements",
|
|
@@ -3956,7 +4033,16 @@
|
|
|
3956
4033
|
"kind": "component",
|
|
3957
4034
|
"importPath": "@actioneer/ads",
|
|
3958
4035
|
"module": "message",
|
|
3959
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4036
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4037
|
+
"variants": {
|
|
4038
|
+
"align": {
|
|
4039
|
+
"values": [
|
|
4040
|
+
"start",
|
|
4041
|
+
"end"
|
|
4042
|
+
],
|
|
4043
|
+
"default": "start"
|
|
4044
|
+
}
|
|
4045
|
+
}
|
|
3960
4046
|
},
|
|
3961
4047
|
{
|
|
3962
4048
|
"name": "MessageAction",
|
|
@@ -3964,7 +4050,24 @@
|
|
|
3964
4050
|
"kind": "component",
|
|
3965
4051
|
"importPath": "@actioneer/ads",
|
|
3966
4052
|
"module": "message",
|
|
3967
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4053
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4054
|
+
"variants": {
|
|
4055
|
+
"align": {
|
|
4056
|
+
"values": [
|
|
4057
|
+
"start",
|
|
4058
|
+
"end"
|
|
4059
|
+
],
|
|
4060
|
+
"default": "start"
|
|
4061
|
+
},
|
|
4062
|
+
"variant": {
|
|
4063
|
+
"values": [
|
|
4064
|
+
"contained",
|
|
4065
|
+
"flat",
|
|
4066
|
+
"plain"
|
|
4067
|
+
],
|
|
4068
|
+
"default": "contained"
|
|
4069
|
+
}
|
|
4070
|
+
}
|
|
3968
4071
|
},
|
|
3969
4072
|
{
|
|
3970
4073
|
"name": "MessageActions",
|
|
@@ -3972,7 +4075,24 @@
|
|
|
3972
4075
|
"kind": "component",
|
|
3973
4076
|
"importPath": "@actioneer/ads",
|
|
3974
4077
|
"module": "message",
|
|
3975
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4078
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4079
|
+
"variants": {
|
|
4080
|
+
"align": {
|
|
4081
|
+
"values": [
|
|
4082
|
+
"start",
|
|
4083
|
+
"end"
|
|
4084
|
+
],
|
|
4085
|
+
"default": "start"
|
|
4086
|
+
},
|
|
4087
|
+
"variant": {
|
|
4088
|
+
"values": [
|
|
4089
|
+
"contained",
|
|
4090
|
+
"flat",
|
|
4091
|
+
"plain"
|
|
4092
|
+
],
|
|
4093
|
+
"default": "contained"
|
|
4094
|
+
}
|
|
4095
|
+
}
|
|
3976
4096
|
},
|
|
3977
4097
|
{
|
|
3978
4098
|
"name": "MessageAttachment",
|
|
@@ -3980,7 +4100,24 @@
|
|
|
3980
4100
|
"kind": "component",
|
|
3981
4101
|
"importPath": "@actioneer/ads",
|
|
3982
4102
|
"module": "message",
|
|
3983
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4103
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4104
|
+
"variants": {
|
|
4105
|
+
"align": {
|
|
4106
|
+
"values": [
|
|
4107
|
+
"start",
|
|
4108
|
+
"end"
|
|
4109
|
+
],
|
|
4110
|
+
"default": "start"
|
|
4111
|
+
},
|
|
4112
|
+
"variant": {
|
|
4113
|
+
"values": [
|
|
4114
|
+
"contained",
|
|
4115
|
+
"flat",
|
|
4116
|
+
"plain"
|
|
4117
|
+
],
|
|
4118
|
+
"default": "contained"
|
|
4119
|
+
}
|
|
4120
|
+
}
|
|
3984
4121
|
},
|
|
3985
4122
|
{
|
|
3986
4123
|
"name": "MessageAttachments",
|
|
@@ -3988,7 +4125,24 @@
|
|
|
3988
4125
|
"kind": "component",
|
|
3989
4126
|
"importPath": "@actioneer/ads",
|
|
3990
4127
|
"module": "message",
|
|
3991
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4128
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4129
|
+
"variants": {
|
|
4130
|
+
"align": {
|
|
4131
|
+
"values": [
|
|
4132
|
+
"start",
|
|
4133
|
+
"end"
|
|
4134
|
+
],
|
|
4135
|
+
"default": "start"
|
|
4136
|
+
},
|
|
4137
|
+
"variant": {
|
|
4138
|
+
"values": [
|
|
4139
|
+
"contained",
|
|
4140
|
+
"flat",
|
|
4141
|
+
"plain"
|
|
4142
|
+
],
|
|
4143
|
+
"default": "contained"
|
|
4144
|
+
}
|
|
4145
|
+
}
|
|
3992
4146
|
},
|
|
3993
4147
|
{
|
|
3994
4148
|
"name": "MessageAvatar",
|
|
@@ -3996,7 +4150,24 @@
|
|
|
3996
4150
|
"kind": "component",
|
|
3997
4151
|
"importPath": "@actioneer/ads",
|
|
3998
4152
|
"module": "message",
|
|
3999
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4153
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4154
|
+
"variants": {
|
|
4155
|
+
"align": {
|
|
4156
|
+
"values": [
|
|
4157
|
+
"start",
|
|
4158
|
+
"end"
|
|
4159
|
+
],
|
|
4160
|
+
"default": "start"
|
|
4161
|
+
},
|
|
4162
|
+
"variant": {
|
|
4163
|
+
"values": [
|
|
4164
|
+
"contained",
|
|
4165
|
+
"flat",
|
|
4166
|
+
"plain"
|
|
4167
|
+
],
|
|
4168
|
+
"default": "contained"
|
|
4169
|
+
}
|
|
4170
|
+
}
|
|
4000
4171
|
},
|
|
4001
4172
|
{
|
|
4002
4173
|
"name": "MessageBranch",
|
|
@@ -4004,7 +4175,24 @@
|
|
|
4004
4175
|
"kind": "component",
|
|
4005
4176
|
"importPath": "@actioneer/ads",
|
|
4006
4177
|
"module": "message",
|
|
4007
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4178
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4179
|
+
"variants": {
|
|
4180
|
+
"align": {
|
|
4181
|
+
"values": [
|
|
4182
|
+
"start",
|
|
4183
|
+
"end"
|
|
4184
|
+
],
|
|
4185
|
+
"default": "start"
|
|
4186
|
+
},
|
|
4187
|
+
"variant": {
|
|
4188
|
+
"values": [
|
|
4189
|
+
"contained",
|
|
4190
|
+
"flat",
|
|
4191
|
+
"plain"
|
|
4192
|
+
],
|
|
4193
|
+
"default": "contained"
|
|
4194
|
+
}
|
|
4195
|
+
}
|
|
4008
4196
|
},
|
|
4009
4197
|
{
|
|
4010
4198
|
"name": "MessageBranchContent",
|
|
@@ -4012,7 +4200,24 @@
|
|
|
4012
4200
|
"kind": "component",
|
|
4013
4201
|
"importPath": "@actioneer/ads",
|
|
4014
4202
|
"module": "message",
|
|
4015
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4203
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4204
|
+
"variants": {
|
|
4205
|
+
"align": {
|
|
4206
|
+
"values": [
|
|
4207
|
+
"start",
|
|
4208
|
+
"end"
|
|
4209
|
+
],
|
|
4210
|
+
"default": "start"
|
|
4211
|
+
},
|
|
4212
|
+
"variant": {
|
|
4213
|
+
"values": [
|
|
4214
|
+
"contained",
|
|
4215
|
+
"flat",
|
|
4216
|
+
"plain"
|
|
4217
|
+
],
|
|
4218
|
+
"default": "contained"
|
|
4219
|
+
}
|
|
4220
|
+
}
|
|
4016
4221
|
},
|
|
4017
4222
|
{
|
|
4018
4223
|
"name": "MessageBranchNext",
|
|
@@ -4020,7 +4225,24 @@
|
|
|
4020
4225
|
"kind": "component",
|
|
4021
4226
|
"importPath": "@actioneer/ads",
|
|
4022
4227
|
"module": "message",
|
|
4023
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4228
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4229
|
+
"variants": {
|
|
4230
|
+
"align": {
|
|
4231
|
+
"values": [
|
|
4232
|
+
"start",
|
|
4233
|
+
"end"
|
|
4234
|
+
],
|
|
4235
|
+
"default": "start"
|
|
4236
|
+
},
|
|
4237
|
+
"variant": {
|
|
4238
|
+
"values": [
|
|
4239
|
+
"contained",
|
|
4240
|
+
"flat",
|
|
4241
|
+
"plain"
|
|
4242
|
+
],
|
|
4243
|
+
"default": "contained"
|
|
4244
|
+
}
|
|
4245
|
+
}
|
|
4024
4246
|
},
|
|
4025
4247
|
{
|
|
4026
4248
|
"name": "MessageBranchPage",
|
|
@@ -4028,7 +4250,24 @@
|
|
|
4028
4250
|
"kind": "component",
|
|
4029
4251
|
"importPath": "@actioneer/ads",
|
|
4030
4252
|
"module": "message",
|
|
4031
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4253
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4254
|
+
"variants": {
|
|
4255
|
+
"align": {
|
|
4256
|
+
"values": [
|
|
4257
|
+
"start",
|
|
4258
|
+
"end"
|
|
4259
|
+
],
|
|
4260
|
+
"default": "start"
|
|
4261
|
+
},
|
|
4262
|
+
"variant": {
|
|
4263
|
+
"values": [
|
|
4264
|
+
"contained",
|
|
4265
|
+
"flat",
|
|
4266
|
+
"plain"
|
|
4267
|
+
],
|
|
4268
|
+
"default": "contained"
|
|
4269
|
+
}
|
|
4270
|
+
}
|
|
4032
4271
|
},
|
|
4033
4272
|
{
|
|
4034
4273
|
"name": "MessageBranchPrevious",
|
|
@@ -4036,7 +4275,24 @@
|
|
|
4036
4275
|
"kind": "component",
|
|
4037
4276
|
"importPath": "@actioneer/ads",
|
|
4038
4277
|
"module": "message",
|
|
4039
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4278
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4279
|
+
"variants": {
|
|
4280
|
+
"align": {
|
|
4281
|
+
"values": [
|
|
4282
|
+
"start",
|
|
4283
|
+
"end"
|
|
4284
|
+
],
|
|
4285
|
+
"default": "start"
|
|
4286
|
+
},
|
|
4287
|
+
"variant": {
|
|
4288
|
+
"values": [
|
|
4289
|
+
"contained",
|
|
4290
|
+
"flat",
|
|
4291
|
+
"plain"
|
|
4292
|
+
],
|
|
4293
|
+
"default": "contained"
|
|
4294
|
+
}
|
|
4295
|
+
}
|
|
4040
4296
|
},
|
|
4041
4297
|
{
|
|
4042
4298
|
"name": "MessageBranchSelector",
|
|
@@ -4044,7 +4300,24 @@
|
|
|
4044
4300
|
"kind": "component",
|
|
4045
4301
|
"importPath": "@actioneer/ads",
|
|
4046
4302
|
"module": "message",
|
|
4047
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4303
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4304
|
+
"variants": {
|
|
4305
|
+
"align": {
|
|
4306
|
+
"values": [
|
|
4307
|
+
"start",
|
|
4308
|
+
"end"
|
|
4309
|
+
],
|
|
4310
|
+
"default": "start"
|
|
4311
|
+
},
|
|
4312
|
+
"variant": {
|
|
4313
|
+
"values": [
|
|
4314
|
+
"contained",
|
|
4315
|
+
"flat",
|
|
4316
|
+
"plain"
|
|
4317
|
+
],
|
|
4318
|
+
"default": "contained"
|
|
4319
|
+
}
|
|
4320
|
+
}
|
|
4048
4321
|
},
|
|
4049
4322
|
{
|
|
4050
4323
|
"name": "MessageContent",
|
|
@@ -4052,7 +4325,17 @@
|
|
|
4052
4325
|
"kind": "component",
|
|
4053
4326
|
"importPath": "@actioneer/ads",
|
|
4054
4327
|
"module": "message",
|
|
4055
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4328
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4329
|
+
"variants": {
|
|
4330
|
+
"variant": {
|
|
4331
|
+
"values": [
|
|
4332
|
+
"contained",
|
|
4333
|
+
"flat",
|
|
4334
|
+
"plain"
|
|
4335
|
+
],
|
|
4336
|
+
"default": "contained"
|
|
4337
|
+
}
|
|
4338
|
+
}
|
|
4056
4339
|
},
|
|
4057
4340
|
{
|
|
4058
4341
|
"name": "MessageResponse",
|
|
@@ -4060,7 +4343,24 @@
|
|
|
4060
4343
|
"kind": "component",
|
|
4061
4344
|
"importPath": "@actioneer/ads",
|
|
4062
4345
|
"module": "message",
|
|
4063
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4346
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4347
|
+
"variants": {
|
|
4348
|
+
"align": {
|
|
4349
|
+
"values": [
|
|
4350
|
+
"start",
|
|
4351
|
+
"end"
|
|
4352
|
+
],
|
|
4353
|
+
"default": "start"
|
|
4354
|
+
},
|
|
4355
|
+
"variant": {
|
|
4356
|
+
"values": [
|
|
4357
|
+
"contained",
|
|
4358
|
+
"flat",
|
|
4359
|
+
"plain"
|
|
4360
|
+
],
|
|
4361
|
+
"default": "contained"
|
|
4362
|
+
}
|
|
4363
|
+
}
|
|
4064
4364
|
},
|
|
4065
4365
|
{
|
|
4066
4366
|
"name": "MessageToolbar",
|
|
@@ -4068,7 +4368,24 @@
|
|
|
4068
4368
|
"kind": "component",
|
|
4069
4369
|
"importPath": "@actioneer/ads",
|
|
4070
4370
|
"module": "message",
|
|
4071
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message"
|
|
4371
|
+
"showcaseUrl": "https://ads.actioneer.dev/#/ai/message",
|
|
4372
|
+
"variants": {
|
|
4373
|
+
"align": {
|
|
4374
|
+
"values": [
|
|
4375
|
+
"start",
|
|
4376
|
+
"end"
|
|
4377
|
+
],
|
|
4378
|
+
"default": "start"
|
|
4379
|
+
},
|
|
4380
|
+
"variant": {
|
|
4381
|
+
"values": [
|
|
4382
|
+
"contained",
|
|
4383
|
+
"flat",
|
|
4384
|
+
"plain"
|
|
4385
|
+
],
|
|
4386
|
+
"default": "contained"
|
|
4387
|
+
}
|
|
4388
|
+
}
|
|
4072
4389
|
},
|
|
4073
4390
|
{
|
|
4074
4391
|
"name": "Queue",
|
|
@@ -4190,30 +4507,6 @@
|
|
|
4190
4507
|
"module": "queue",
|
|
4191
4508
|
"showcaseUrl": "https://ads.actioneer.dev/#/ai/queue"
|
|
4192
4509
|
},
|
|
4193
|
-
{
|
|
4194
|
-
"name": "Reasoning",
|
|
4195
|
-
"family": "AI Elements",
|
|
4196
|
-
"kind": "component",
|
|
4197
|
-
"importPath": "@actioneer/ads",
|
|
4198
|
-
"module": "reasoning",
|
|
4199
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/reasoning"
|
|
4200
|
-
},
|
|
4201
|
-
{
|
|
4202
|
-
"name": "ReasoningContent",
|
|
4203
|
-
"family": "AI Elements",
|
|
4204
|
-
"kind": "component",
|
|
4205
|
-
"importPath": "@actioneer/ads",
|
|
4206
|
-
"module": "reasoning",
|
|
4207
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/reasoning"
|
|
4208
|
-
},
|
|
4209
|
-
{
|
|
4210
|
-
"name": "ReasoningTrigger",
|
|
4211
|
-
"family": "AI Elements",
|
|
4212
|
-
"kind": "component",
|
|
4213
|
-
"importPath": "@actioneer/ads",
|
|
4214
|
-
"module": "reasoning",
|
|
4215
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/reasoning"
|
|
4216
|
-
},
|
|
4217
4510
|
{
|
|
4218
4511
|
"name": "Shimmer",
|
|
4219
4512
|
"family": "AI Elements",
|
|
@@ -4360,30 +4653,6 @@
|
|
|
4360
4653
|
"onReady"
|
|
4361
4654
|
]
|
|
4362
4655
|
},
|
|
4363
|
-
{
|
|
4364
|
-
"name": "VOICE_PALETTES",
|
|
4365
|
-
"family": "AI Elements",
|
|
4366
|
-
"kind": "component",
|
|
4367
|
-
"importPath": "@actioneer/ads",
|
|
4368
|
-
"module": "voice",
|
|
4369
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/voice"
|
|
4370
|
-
},
|
|
4371
|
-
{
|
|
4372
|
-
"name": "VOICE_STATES",
|
|
4373
|
-
"family": "AI Elements",
|
|
4374
|
-
"kind": "component",
|
|
4375
|
-
"importPath": "@actioneer/ads",
|
|
4376
|
-
"module": "voice",
|
|
4377
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/voice"
|
|
4378
|
-
},
|
|
4379
|
-
{
|
|
4380
|
-
"name": "VOICE_VARIANTS",
|
|
4381
|
-
"family": "AI Elements",
|
|
4382
|
-
"kind": "component",
|
|
4383
|
-
"importPath": "@actioneer/ads",
|
|
4384
|
-
"module": "voice",
|
|
4385
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/ai/voice"
|
|
4386
|
-
},
|
|
4387
4656
|
{
|
|
4388
4657
|
"name": "VoiceConnectButton",
|
|
4389
4658
|
"family": "AI Elements",
|
|
@@ -4462,14 +4731,14 @@
|
|
|
4462
4731
|
"module": "chain-of-thought"
|
|
4463
4732
|
},
|
|
4464
4733
|
{
|
|
4465
|
-
"name": "
|
|
4734
|
+
"name": "ChainOfThoughtImageProps",
|
|
4466
4735
|
"family": "AI Elements",
|
|
4467
4736
|
"kind": "type",
|
|
4468
4737
|
"importPath": "@actioneer/ads",
|
|
4469
4738
|
"module": "chain-of-thought"
|
|
4470
4739
|
},
|
|
4471
4740
|
{
|
|
4472
|
-
"name": "
|
|
4741
|
+
"name": "ChainOfThoughtItemProps",
|
|
4473
4742
|
"family": "AI Elements",
|
|
4474
4743
|
"kind": "type",
|
|
4475
4744
|
"importPath": "@actioneer/ads",
|
|
@@ -4496,6 +4765,13 @@
|
|
|
4496
4765
|
"importPath": "@actioneer/ads",
|
|
4497
4766
|
"module": "chain-of-thought"
|
|
4498
4767
|
},
|
|
4768
|
+
{
|
|
4769
|
+
"name": "ChainOfThoughtStatus",
|
|
4770
|
+
"family": "AI Elements",
|
|
4771
|
+
"kind": "type",
|
|
4772
|
+
"importPath": "@actioneer/ads",
|
|
4773
|
+
"module": "chain-of-thought"
|
|
4774
|
+
},
|
|
4499
4775
|
{
|
|
4500
4776
|
"name": "ChainOfThoughtStepProps",
|
|
4501
4777
|
"family": "AI Elements",
|
|
@@ -4503,6 +4779,13 @@
|
|
|
4503
4779
|
"importPath": "@actioneer/ads",
|
|
4504
4780
|
"module": "chain-of-thought"
|
|
4505
4781
|
},
|
|
4782
|
+
{
|
|
4783
|
+
"name": "ChainOfThoughtTriggerProps",
|
|
4784
|
+
"family": "AI Elements",
|
|
4785
|
+
"kind": "type",
|
|
4786
|
+
"importPath": "@actioneer/ads",
|
|
4787
|
+
"module": "chain-of-thought"
|
|
4788
|
+
},
|
|
4506
4789
|
{
|
|
4507
4790
|
"name": "InlineCitationCardBodyProps",
|
|
4508
4791
|
"family": "AI Elements",
|
|
@@ -4846,27 +5129,6 @@
|
|
|
4846
5129
|
"importPath": "@actioneer/ads",
|
|
4847
5130
|
"module": "queue"
|
|
4848
5131
|
},
|
|
4849
|
-
{
|
|
4850
|
-
"name": "ReasoningContentProps",
|
|
4851
|
-
"family": "AI Elements",
|
|
4852
|
-
"kind": "type",
|
|
4853
|
-
"importPath": "@actioneer/ads",
|
|
4854
|
-
"module": "reasoning"
|
|
4855
|
-
},
|
|
4856
|
-
{
|
|
4857
|
-
"name": "ReasoningProps",
|
|
4858
|
-
"family": "AI Elements",
|
|
4859
|
-
"kind": "type",
|
|
4860
|
-
"importPath": "@actioneer/ads",
|
|
4861
|
-
"module": "reasoning"
|
|
4862
|
-
},
|
|
4863
|
-
{
|
|
4864
|
-
"name": "ReasoningTriggerProps",
|
|
4865
|
-
"family": "AI Elements",
|
|
4866
|
-
"kind": "type",
|
|
4867
|
-
"importPath": "@actioneer/ads",
|
|
4868
|
-
"module": "reasoning"
|
|
4869
|
-
},
|
|
4870
5132
|
{
|
|
4871
5133
|
"name": "SpeechInputProps",
|
|
4872
5134
|
"family": "AI Elements",
|
|
@@ -5057,28 +5319,32 @@
|
|
|
5057
5319
|
"module": "voice"
|
|
5058
5320
|
},
|
|
5059
5321
|
{
|
|
5060
|
-
"name": "
|
|
5322
|
+
"name": "Tool",
|
|
5061
5323
|
"family": "AI Elements",
|
|
5062
|
-
"kind": "
|
|
5324
|
+
"kind": "util",
|
|
5063
5325
|
"importPath": "@actioneer/ads",
|
|
5064
|
-
"module": "
|
|
5326
|
+
"module": "tool"
|
|
5065
5327
|
},
|
|
5066
5328
|
{
|
|
5067
|
-
"name": "
|
|
5329
|
+
"name": "VOICE_PALETTES",
|
|
5068
5330
|
"family": "AI Elements",
|
|
5069
5331
|
"kind": "util",
|
|
5070
5332
|
"importPath": "@actioneer/ads",
|
|
5071
|
-
"module": "
|
|
5333
|
+
"module": "voice"
|
|
5072
5334
|
},
|
|
5073
5335
|
{
|
|
5074
|
-
"name": "
|
|
5075
|
-
"family": "
|
|
5076
|
-
"kind": "
|
|
5336
|
+
"name": "VOICE_STATES",
|
|
5337
|
+
"family": "AI Elements",
|
|
5338
|
+
"kind": "util",
|
|
5077
5339
|
"importPath": "@actioneer/ads",
|
|
5078
|
-
"module": "
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
"
|
|
5340
|
+
"module": "voice"
|
|
5341
|
+
},
|
|
5342
|
+
{
|
|
5343
|
+
"name": "VOICE_VARIANTS",
|
|
5344
|
+
"family": "AI Elements",
|
|
5345
|
+
"kind": "util",
|
|
5346
|
+
"importPath": "@actioneer/ads",
|
|
5347
|
+
"module": "voice"
|
|
5082
5348
|
},
|
|
5083
5349
|
{
|
|
5084
5350
|
"name": "AssistantActionBar",
|
|
@@ -5290,16 +5556,6 @@
|
|
|
5290
5556
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export.",
|
|
5291
5557
|
"showcaseUrl": "https://ads.actioneer.dev/#/demo/ask"
|
|
5292
5558
|
},
|
|
5293
|
-
{
|
|
5294
|
-
"name": "CONTEXT_MIME",
|
|
5295
|
-
"family": "Chat",
|
|
5296
|
-
"kind": "component",
|
|
5297
|
-
"importPath": "@actioneer/ads",
|
|
5298
|
-
"module": "composer-add-context",
|
|
5299
|
-
"vendored": true,
|
|
5300
|
-
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export.",
|
|
5301
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/demo/ask"
|
|
5302
|
-
},
|
|
5303
5559
|
{
|
|
5304
5560
|
"name": "DeepResearchProvider",
|
|
5305
5561
|
"family": "Chat",
|
|
@@ -5330,16 +5586,6 @@
|
|
|
5330
5586
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export.",
|
|
5331
5587
|
"showcaseUrl": "https://ads.actioneer.dev/#/demo/ask"
|
|
5332
5588
|
},
|
|
5333
|
-
{
|
|
5334
|
-
"name": "EMPTY_COMPONENTS",
|
|
5335
|
-
"family": "Chat",
|
|
5336
|
-
"kind": "component",
|
|
5337
|
-
"importPath": "@actioneer/ads",
|
|
5338
|
-
"module": "thread-context",
|
|
5339
|
-
"vendored": true,
|
|
5340
|
-
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export.",
|
|
5341
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/demo/ask"
|
|
5342
|
-
},
|
|
5343
5589
|
{
|
|
5344
5590
|
"name": "ErrorRoot",
|
|
5345
5591
|
"family": "Chat",
|
|
@@ -5430,16 +5676,6 @@
|
|
|
5430
5676
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export.",
|
|
5431
5677
|
"showcaseUrl": "https://ads.actioneer.dev/#/demo/ask"
|
|
5432
5678
|
},
|
|
5433
|
-
{
|
|
5434
|
-
"name": "HARNESS_MIME",
|
|
5435
|
-
"family": "Chat",
|
|
5436
|
-
"kind": "component",
|
|
5437
|
-
"importPath": "@actioneer/ads",
|
|
5438
|
-
"module": "composer-harness",
|
|
5439
|
-
"vendored": true,
|
|
5440
|
-
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export.",
|
|
5441
|
-
"showcaseUrl": "https://ads.actioneer.dev/#/demo/ask"
|
|
5442
|
-
},
|
|
5443
5679
|
{
|
|
5444
5680
|
"name": "Image",
|
|
5445
5681
|
"family": "Chat",
|
|
@@ -6129,6 +6365,24 @@
|
|
|
6129
6365
|
"vendored": true,
|
|
6130
6366
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6131
6367
|
},
|
|
6368
|
+
{
|
|
6369
|
+
"name": "useComposer",
|
|
6370
|
+
"family": "Chat",
|
|
6371
|
+
"kind": "hook",
|
|
6372
|
+
"importPath": "@actioneer/ads",
|
|
6373
|
+
"module": "primitives",
|
|
6374
|
+
"vendored": true,
|
|
6375
|
+
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6376
|
+
},
|
|
6377
|
+
{
|
|
6378
|
+
"name": "useComposerRuntime",
|
|
6379
|
+
"family": "Chat",
|
|
6380
|
+
"kind": "hook",
|
|
6381
|
+
"importPath": "@actioneer/ads",
|
|
6382
|
+
"module": "primitives",
|
|
6383
|
+
"vendored": true,
|
|
6384
|
+
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6385
|
+
},
|
|
6132
6386
|
{
|
|
6133
6387
|
"name": "useLocalRuntime",
|
|
6134
6388
|
"family": "Chat",
|
|
@@ -6138,6 +6392,15 @@
|
|
|
6138
6392
|
"vendored": true,
|
|
6139
6393
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6140
6394
|
},
|
|
6395
|
+
{
|
|
6396
|
+
"name": "ACTIONEER_FILE_ACCEPT",
|
|
6397
|
+
"family": "Chat",
|
|
6398
|
+
"kind": "util",
|
|
6399
|
+
"importPath": "@actioneer/ads",
|
|
6400
|
+
"module": "attachment",
|
|
6401
|
+
"vendored": true,
|
|
6402
|
+
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6403
|
+
},
|
|
6141
6404
|
{
|
|
6142
6405
|
"name": "ActioneerFileAttachmentAdapter",
|
|
6143
6406
|
"family": "Chat",
|
|
@@ -6165,6 +6428,15 @@
|
|
|
6165
6428
|
"vendored": true,
|
|
6166
6429
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6167
6430
|
},
|
|
6431
|
+
{
|
|
6432
|
+
"name": "CONTEXT_MIME",
|
|
6433
|
+
"family": "Chat",
|
|
6434
|
+
"kind": "util",
|
|
6435
|
+
"importPath": "@actioneer/ads",
|
|
6436
|
+
"module": "composer-add-context",
|
|
6437
|
+
"vendored": true,
|
|
6438
|
+
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6439
|
+
},
|
|
6168
6440
|
{
|
|
6169
6441
|
"name": "ContextAttachmentAdapter",
|
|
6170
6442
|
"family": "Chat",
|
|
@@ -6183,6 +6455,15 @@
|
|
|
6183
6455
|
"vendored": true,
|
|
6184
6456
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6185
6457
|
},
|
|
6458
|
+
{
|
|
6459
|
+
"name": "EMPTY_COMPONENTS",
|
|
6460
|
+
"family": "Chat",
|
|
6461
|
+
"kind": "util",
|
|
6462
|
+
"importPath": "@actioneer/ads",
|
|
6463
|
+
"module": "thread-context",
|
|
6464
|
+
"vendored": true,
|
|
6465
|
+
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6466
|
+
},
|
|
6186
6467
|
{
|
|
6187
6468
|
"name": "fileVariants",
|
|
6188
6469
|
"family": "Chat",
|
|
@@ -6219,6 +6500,15 @@
|
|
|
6219
6500
|
"vendored": true,
|
|
6220
6501
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6221
6502
|
},
|
|
6503
|
+
{
|
|
6504
|
+
"name": "HARNESS_MIME",
|
|
6505
|
+
"family": "Chat",
|
|
6506
|
+
"kind": "util",
|
|
6507
|
+
"importPath": "@actioneer/ads",
|
|
6508
|
+
"module": "composer-harness",
|
|
6509
|
+
"vendored": true,
|
|
6510
|
+
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6511
|
+
},
|
|
6222
6512
|
{
|
|
6223
6513
|
"name": "HarnessAttachmentAdapter",
|
|
6224
6514
|
"family": "Chat",
|
|
@@ -6290,6 +6580,15 @@
|
|
|
6290
6580
|
"module": "tool-group",
|
|
6291
6581
|
"vendored": true,
|
|
6292
6582
|
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6583
|
+
},
|
|
6584
|
+
{
|
|
6585
|
+
"name": "unstable_useSlashCommandAdapter",
|
|
6586
|
+
"family": "Chat",
|
|
6587
|
+
"kind": "util",
|
|
6588
|
+
"importPath": "@actioneer/ads",
|
|
6589
|
+
"module": "primitives",
|
|
6590
|
+
"vendored": true,
|
|
6591
|
+
"note": "Vendored assistant-ui component. Props follow upstream assistant-ui, not ADS conventions; the chat family needs an <AssistantRuntimeProvider> (chat runtime) and a <TooltipProvider> ancestor. Import from \"@actioneer/ads\" like any ADS export."
|
|
6293
6592
|
}
|
|
6294
6593
|
],
|
|
6295
6594
|
"principles": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actioneer/ads-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "ADS MCP server: lets an agent in Claude Code / Cursor discover and import the Actioneer Design System",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -31,8 +31,12 @@
|
|
|
31
31
|
"typescript": ">=5"
|
|
32
32
|
},
|
|
33
33
|
"peerDependenciesMeta": {
|
|
34
|
-
"@actioneer/ads": {
|
|
35
|
-
|
|
34
|
+
"@actioneer/ads": {
|
|
35
|
+
"optional": true
|
|
36
|
+
},
|
|
37
|
+
"typescript": {
|
|
38
|
+
"optional": true
|
|
39
|
+
}
|
|
36
40
|
},
|
|
37
41
|
"publishConfig": {
|
|
38
42
|
"access": "public"
|