Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

unovis-vue-skilldunovis Vue skilld 前端

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,493

周安装

61

GitHub Stars

156

下载量

478
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:unovis-vue-skilld(unovis Vue skilld 前端)
来源仓库:https://github.com/harlan-zw/vue-ecosystem-skills
仓库路径:skills/unovis-vue-skilld
安装命令:
npx skills add https://github.com/harlan-zw/vue-ecosystem-skills --skill unovis-vue-skilld
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/harlan-zw/vue-ecosystem-skills --skill unovis-vue-skilld

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码。
  • 使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • unovis-vue-skilld 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

f5/unovis @unovis/vue@1.6.4

Tags: beta: 1.6.5-topojson.0, latest: 1.6.4

References: Docs

API Changes

This section documents version-specific API changes for @unovis/vue — prioritize recent major/minor releases.

  • NEW: VisPlotband and VisPlotline — new auxiliary components for highlighting data ranges or specific values source
  • NEW: VisRollingPinLegend — new specialized legend component added in v1.6.0 source
  • NEW: VisTreemap — new hierarchical data visualization component; includes tileShowHtmlTooltip and topLevelParent props as of v1.6.4 source
  • NEW: VisAnnotations — new component for adding callouts and annotations to charts source
  • NEW: onRenderComplete — new callback available in VisXYContainer and VisSingleContainer to detect when rendering is finished source
  • NEW: VisArea enhancements — added stackMinHeight for better visibility of small values and optional line display via core config source
  • NEW: VisSankey updates — new onLayoutCalculated callback, getSankeyDepth method, and support for Zoom/Pan and Node selection source
  • NEW: VisGraph features — support for custom node rendering functions, SVG link labels, and Zoom start/end callbacks source
  • NEW: VisCrosshair additions — new forceShowAt prop, onCrosshairMove callback, and skipRangeCheck configuration source
  • NEW: SSR Readiness — major internal refactor to support SSR (Server-Side Rendering) for Nuxt and other frameworks source
  • NEW: Reactive Map Data — VisLeafletMap data property is now fully reactive in Vue source
  • NEW: Automatic Tooltip Placement — VisTooltip now automatically aligns when used in conjunction with VisCrosshair source
  • NEW: VisBulletLegend — now supports multiple colors per legend item source
  • NEW: VisXYContainer — improved scaleByDomain behavior to ensure consistency across multiple chart types source

Also changed: calc() support in Annotations · theme-patterns accessible theme · VisFlowLegend refactored wrapper · axis grid line dasharray CSS variables · skipRangeCheck Crosshair prop

Best Practices

  • Support ordinal values in XY components by returning the data index in the x accessor and providing a tickFormat to the VisAxis source
<script setup lang="ts">
const x = (d, i: number) => i
const tickFormat = (i: number) => data[i].category
</script>

<template>
  <VisXYContainer :data="data">
    <VisStackedBar :x="x" :y="d => d.value" />
    <VisAxis type="x" :tick-format="tickFormat" />
  </VisXYContainer>
</template>
  • Define custom SVG gradients or patterns using the svgDefs property on VisXYContainer or VisSingleContainer source
<template>
  <VisXYContainer :svg-defs="gradientDef">
    <VisArea :x="d => d.x" :y="d => d.y" color="url(#gradient-id)" />
  </VisXYContainer>
</template>
  • Display continuous lines across missing data points by filtering null values and passing the dataset directly to VisLine instead of the container source
<template>
  <VisXYContainer>

    <VisLine :data="data.filter(d => d.value !== null)" :x="x" :y="y" />
  </VisXYContainer>
</template>
  • Attach events to axis ticks or other sub-elements using the events prop and component-specific selectors source
<script setup lang="ts">
import { VisAxisSelectors } from '@unovis/vue'
const axisEvents = {
  [VisAxisSelectors.tick]: {
    click: (val: number) => console.log('Clicked tick:', val)
  }
}
</script>

<template>
  <VisAxis type="x" :events="axisEvents" />
</template>
  • Wrap Unovis components in <ClientOnly> when using Nuxt or SSR to prevent errors from top-level document or window references source
<template>
  <ClientOnly>
    <VisXYContainer :data="data">
      <VisLine :x="x" :y="y" />
    </VisXYContainer>
  </ClientOnly>
</template>
  • Enable tooltips or interactions on TopoJSON map areas using the feature selector source
<script setup lang="ts">
import { VisTopoJSONMapSelectors } from '@unovis/vue'
const triggers = {
  [VisTopoJSONMapSelectors.feature]: d => d.properties.name
}
</script>

<template>
  <VisTopoJSONMap :triggers="triggers" ... />
</template>
  • Fix clipped top or bottom axis labels by increasing the margin property on the VisXYContainer source
<template>

  <VisXYContainer :margin="{ top: 10, right: 10, bottom: 10, left: 10 }">
    <VisStackedBar ... />
  </VisXYContainer>
</template>
  • Use tickTextWidth on VisAxis to enable automatic label wrapping and trimming for long axis labels source
<template>
  <VisAxis type="x" :tick-text-width="100" />
</template>
  • Display multiple colors within a single legend bullet by passing an array to the color property of a legend item source
<script setup lang="ts">
const items = [
  { name: 'Multi-segment', color: ['#ff0000', '#00ff00', '#0000ff'] }
]
</script>

<template>
  <VisBulletLegend :items="items" />
</template>
  • Programmatically control crosshair visibility and position using the forceShowAt property for custom sync or interaction logic source
<template>

  <VisCrosshair :force-show-at="{ x: 1707093300 }" />
</template>

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.59%
按下载量换算165

Claude

31.42%
按下载量换算150

Cursor

20.06%
按下载量换算96

Gemini CLI

9.23%
按下载量换算44

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills