AI Skill Hub 强烈推荐:Vue 终端UI框架 是一款优质的Agent工作流。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
Vue 终端UI框架 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
Vue 终端UI框架 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:npm 全局安装 npm install -g vue-tui # 方式二:npx 直接运行(无需安装) npx vue-tui --help # 方式三:项目依赖安装 npm install vue-tui # 方式四:从源码运行 git clone https://github.com/vuejs-ai/vue-tui cd vue-tui npm install npm start
# 命令行使用
vue-tui --help
# 基本用法
vue-tui [options] <input>
# Node.js 代码中使用
const vue_tui = require('vue-tui');
const result = await vue_tui.run(options);
console.log(result);
# vue-tui 配置说明 # 查看配置选项 vue-tui --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export VUE_TUI_CONFIG="/path/to/config.yml"
Early stage — under active development. Bug reports welcome, but not recommended for production use yet.
The Vue framework for terminal UIs. Build with components, develop with HMR, test with confidence.
<p align="center"> <a href="https://npmx.dev/@vue-tui/runtime"><code>@vue-tui/runtime</code></a> · <a href="https://npmx.dev/@vue-tui/cli"><code>@vue-tui/cli</code></a> · <a href="https://npmx.dev/@vue-tui/testing"><code>@vue-tui/testing</code></a> </p>
<template>, TSX, or both<p align="center"> <a href="./examples/flappy-bird"><em>Flappy Bird</em></a> — one of the <a href="#examples">examples</a> included in the repo <br /><br /> <a href="./examples/flappy-bird"> <img src=".github/assets/flappy-bird-demo.gif" alt="Flappy Bird built with vue-tui" width="690" /> </a> </p>
npx tiged vuejs-ai/vue-tui-starter my-app
cd my-app
npm install
npm run dev
Edit App.vue and watch the terminal update instantly.
// src/main.ts
import { createApp } from "@vue-tui/runtime";
import App from "./App.vue";
createApp(App).mount();
<script setup lang="ts">
import { shallowRef } from "vue";
import { Box, Text, useInput } from "@vue-tui/runtime";
const count = shallowRef(0);
useInput((input) => {
if (input === "+") count.value++;
if (input === "-") count.value--;
});
</script>
<template>
<Box>
<Text>Count: </Text>
<Text bold color="green">{{ count }}</Text>
<Text dimColor> (+/- to change)</Text>
</Box>
</template>
| Example | Description |
|---|---|
[basic-template](./examples/basic-template) | Vue SFC with <template> syntax |
[basic-jsx](./examples/basic-jsx) | Same app in TSX |
[coding-agent](./examples/coding-agent) | AI coding agent with LLM streaming and interactive UI |
[flappy-bird](./examples/flappy-bird) | Physics-based terminal game with reactive state and borders |
| Package | Description |
|---|---|
[@vue-tui/runtime](https://www.npmjs.com/package/@vue-tui/runtime) | The core framework — Vue 3 renderer for the terminal with components (Box, Text, Static, etc.), composables (useInput, useFocus, useExit, etc.), and yoga-based flexbox layout |
[@vue-tui/cli](https://www.npmjs.com/package/@vue-tui/cli) | Development tool — vue-tui dev starts your app with Vite-powered HMR |
[@vue-tui/testing](https://www.npmjs.com/package/@vue-tui/testing) | Test harness — render in an isolated fake terminal, simulate input, assert output frame by frame |
| Component | Description |
|---|---|
[<Box>](./packages/runtime) | Flexbox container — direction, wrap, align, justify, gap, padding, margin, borders, background |
[<Text>](./packages/runtime) | Styled text — color, bold, italic, underline, strikethrough, dimColor, wrap/truncate modes |
[<Spacer>](./packages/runtime) | Expands to fill available space (flex-grow: 1) |
[<Newline>](./packages/runtime) | Inserts line breaks (configurable count) |
[<Static>](./packages/runtime) | Renders a list of items once, above the redrawn region |
[<Transform>](./packages/runtime) | Applies a string transform function to each rendered line |
高质量的Vue终端UI框架,支持AI工作流
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
总体来看,Vue 终端UI框架 是一款质量优秀的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | vue-tui |
| 原始描述 | 开源AI工作流:The Vue framework for terminal UIs. SFC & JSX, Yoga flexbox, HMR, and testing ou。⭐70 · TypeScript |
| Topics | vueterminaluitypescriptai |
| GitHub | https://github.com/vuejs-ai/vue-tui |
| 语言 | TypeScript |
收录时间:2026-05-29 · 更新时间:2026-05-30 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端