Skip to content

AgentInsightCard

Paged Agent insights with metrics and action suggestions.

Demo

AgentInsightCardOne public API for H5 and Wevu
Live state
Release readiness workflowAgentInsightCard
Insights1/2
Bundle insight

小程序首屏包体比上次降低 6%。

−6%

Install

bash
pnpm add @varo-ui/ai
pnpm dlx @varo-ui/cli add --target h5 components/agent-ui
pnpm dlx @varo-ui/cli add --target weapp components/agent-ui

Registry installs the UI component into your project, so import it from @/components/agent-ui; @varo-ui/ai provides the event protocol, stream controller, and Markdown primitives—not Vue/Wevu UI components.

Basic Usage

vue
<script setup lang="ts">
import { AgentInsightCard } from '@/components/agent-ui'
</script>

<template>
  <AgentInsightCard v-model:current="current" :insights="insights" />
</template>

Props

PropTypeDefaultDescription
currentnumber0Current page
insightsAgentInsightItem[][]Insights
titlestringInsightsTitle

Events

EventPayloadDescription
actionAgentInsightItemRun action
update:currentnumberUpdate page

Target Notes

TargetImport
H5Named export from @/components/agent-ui
weappDefault export from @/components/agent-ui/AgentInsightCard.vue

The public API stays aligned across targets; DOM/WXML, scheduling, and native events are target-owned.