@webmcp-auto-ui/agent 2.5.24 → 2.5.26
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 +1 -1
- package/src/autoui-server.ts +17 -0
- package/src/diagnostics.ts +6 -6
- package/src/discovery-cache.ts +17 -3
- package/src/index.ts +3 -3
- package/src/loop.ts +27 -19
- package/src/providers/wasm.ts +184 -330
- package/src/recipes/_generated.ts +273 -0
- package/src/recipes/canary-data.md +50 -0
- package/src/recipes/canary-display.md +99 -0
- package/src/recipes/canary-middle.md +32 -0
- package/src/recipes/hummingbird-data.md +32 -0
- package/src/recipes/hummingbird-display.md +36 -0
- package/src/recipes/hummingbird-middle.md +18 -0
- package/src/tool-layers.ts +303 -31
- package/src/types.ts +6 -1
- package/tests/loop.test.ts +2 -2
- package/src/providers/gemma.worker.legacy.ts +0 -123
- package/src/providers/litert.worker.ts +0 -294
- package/src/recipes/widgets/actions.md +0 -28
- package/src/recipes/widgets/alert.md +0 -27
- package/src/recipes/widgets/cards.md +0 -41
- package/src/recipes/widgets/carousel.md +0 -39
- package/src/recipes/widgets/chart-rich.md +0 -51
- package/src/recipes/widgets/chart.md +0 -32
- package/src/recipes/widgets/code.md +0 -21
- package/src/recipes/widgets/d3.md +0 -36
- package/src/recipes/widgets/data-table.md +0 -46
- package/src/recipes/widgets/gallery.md +0 -39
- package/src/recipes/widgets/grid-data.md +0 -57
- package/src/recipes/widgets/hemicycle.md +0 -43
- package/src/recipes/widgets/js-sandbox.md +0 -32
- package/src/recipes/widgets/json-viewer.md +0 -27
- package/src/recipes/widgets/kv.md +0 -31
- package/src/recipes/widgets/list.md +0 -24
- package/src/recipes/widgets/log.md +0 -39
- package/src/recipes/widgets/map.md +0 -49
- package/src/recipes/widgets/profile.md +0 -49
- package/src/recipes/widgets/recipe-browser.md +0 -102
- package/src/recipes/widgets/sankey.md +0 -54
- package/src/recipes/widgets/stat-card.md +0 -43
- package/src/recipes/widgets/stat.md +0 -35
- package/src/recipes/widgets/tags.md +0 -30
- package/src/recipes/widgets/text.md +0 -19
- package/src/recipes/widgets/timeline.md +0 -38
- package/src/recipes/widgets/trombinoscope.md +0 -39
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
widget: trombinoscope
|
|
3
|
-
description: People grid with badges
|
|
4
|
-
group: rich
|
|
5
|
-
schema:
|
|
6
|
-
type: object
|
|
7
|
-
required:
|
|
8
|
-
- people
|
|
9
|
-
properties:
|
|
10
|
-
title:
|
|
11
|
-
type: string
|
|
12
|
-
people:
|
|
13
|
-
type: array
|
|
14
|
-
items:
|
|
15
|
-
type: object
|
|
16
|
-
required:
|
|
17
|
-
- name
|
|
18
|
-
properties:
|
|
19
|
-
name:
|
|
20
|
-
type: string
|
|
21
|
-
subtitle:
|
|
22
|
-
type: string
|
|
23
|
-
badge:
|
|
24
|
-
type: string
|
|
25
|
-
color:
|
|
26
|
-
type: string
|
|
27
|
-
columns:
|
|
28
|
-
type: number
|
|
29
|
-
---
|
|
30
|
-
|
|
31
|
-
## When to use
|
|
32
|
-
Display a grid of people — team, group members, participants. Each person can have a badge and a distinctive color.
|
|
33
|
-
|
|
34
|
-
## How to use
|
|
35
|
-
1. Retrieve the list of people via MCP
|
|
36
|
-
2. Call `autoui_webmcp_widget_display('trombinoscope', { title: 'Dev Team', people: [{ name: 'Alice', subtitle: 'Lead', badge: 'PM', color: '#4CAF50' }], columns: 3 })`
|
|
37
|
-
|
|
38
|
-
## Common mistakes
|
|
39
|
-
- NEVER fabricate image URLs for the `avatar` field. Use ONLY the URLs returned by MCP tools. If no URL is available, do not include an avatar field — the widget will display initials automatically.
|