发布检查
双端组件已经通过。
Projects AgentStreamSnapshot into reasoning, tools, response, and approval UI.
双端组件已经通过。
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-uiRegistry 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.
<script setup lang="ts">
import { AgentEventRenderer } from '@/components/agent-ui'
</script>
<template>
<AgentEventRenderer :snapshot="snapshot" @approve="approve" />
</template>| Prop | Type | Default | Description |
|---|---|---|---|
snapshot | AgentStreamSnapshot | required | Event stream snapshot |
| Event | Payload | Description |
|---|---|---|
approve | string | Approve |
reject | void | Reject |
retry | void | Retry |
| Slot | Description |
|---|---|
actions | Completion actions |
default | Trailing content |
| Target | Import |
|---|---|
| H5 | Named export from @/components/agent-ui |
| weapp | @/components/agent-ui/AgentEventRenderer.vue |
The public API stays aligned across targets; DOM/WXML, scheduling, and native events are target-owned.