Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

avue-form大道形式

Agent Skill

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

总安装

512

周安装

22

GitHub Stars

343

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/partme-ai/full-stack-skills --skill avue-form

简介

avue-form 辅助生成基于 Avue 框架的动态表单组件。

  • 适用于后台管理系统的前端快速搭建需求。
  • 输出代码需匹配后端接口数据结构。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 部署前应进行表单验证逻辑与安全边界测试。
  • avue-form 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

When to use this skill

Use this skill whenever the user wants to:

  • Install and set up Avue-form in a Vue project
  • Use Avue-form components in Vue applications
  • Configure form options and columns
  • Handle form validation
  • Use form events and methods
  • Customize form components
  • Understand Avue-form API and methods
  • Troubleshoot Avue-form issues

How to use this skill

This skill is organized to match the Avue-form official documentation structure (https://avuejs.com/form/form-doc.html). When working with Avue-form:

  1. Identify the topic from the user's request:

- Installation/安装 → examples/components/installation.md - Basic Usage/基础用法 → examples/components/basic-usage.md - Configuration/配置 → examples/components/configuration.md - Features/功能特性 → examples/features/ - API/API 文档 → api/

  1. Load the appropriate example file from the examples/ directory: Components (组件): Features (功能特性):

- examples/components/intro.md - Introduction to Avue-form - examples/components/installation.md - Installation guide - examples/components/basic-usage.md - Basic usage - examples/components/configuration.md - Configuration - examples/components/options.md - Form options - examples/components/columns.md - Form columns - examples/components/validation.md - Form validation - examples/components/events.md - Form events - examples/components/methods.md - Form methods - examples/features/dynamic-form.md - Dynamic form - examples/features/form-layout.md - Form layout - examples/features/form-rules.md - Form rules - examples/features/form-submit.md - Form submit - examples/features/form-reset.md - Form reset - examples/features/custom-components.md - Custom components - examples/features/form-group.md - Form group - examples/features/form-tabs.md - Form tabs

  1. Follow the specific instructions in that example file for syntax, structure, and best practices Important Notes:

- Avue-form is based on Vue - Components use Vue syntax - Examples include both Options API and Composition API - Each example file includes key concepts, code examples, and key points

  1. Reference API documentation in the api/ directory when needed:

- api/form-api.md - Form component API - api/options-api.md - Options API - api/columns-api.md - Columns API - api/events-api.md - Events API - api/methods-api.md - Methods API

  1. Use templates from the templates/ directory:

- templates/installation.md - Installation templates - templates/basic-form.md - Basic form templates - templates/configuration.md - Configuration templates

1. Understanding Avue-form

Avue-form is a Vue form component library that provides rich form controls and configuration options.

Key Concepts:

  • Form Component: Main form component
  • Options: Form configuration options
  • Columns: Form field definitions
  • Validation: Form validation rules
  • Events: Form events
  • Methods: Form methods

2. Installation

Using npm:

npm install @avue/form

Using yarn:

yarn add @avue/form

Using pnpm:

pnpm add @avue/form

3. Basic Setup

// main.js
import Vue from 'vue'
import Avue from '@avue/form'
import '@avue/form/lib/theme-default/index.css'

Vue.use(Avue)
<template>
  <avue-form :option="option" v-model="form"></avue-form>
</template>

<script>
export default {
  data() {
    return {
      form: {},
      option: {
        column: [
          {
            label: 'Name',
            prop: 'name',
            type: 'input'
          }
        ]
      }
    }
  }
}
</script>

Doc mapping (one-to-one with official documentation)

Examples and Templates

This skill includes detailed examples organized to match the official documentation structure. All examples are in the examples/ directory (see mapping above).

To use examples:

  • Identify the topic from the user's request
  • Load the appropriate example file from the mapping above
  • Follow the instructions, syntax, and best practices in that file
  • Adapt the code examples to your specific use case

To use templates:

  • Reference templates in templates/ directory for common scaffolding
  • Adapt templates to your specific needs and coding style

API Reference

Detailed API documentation is available in the api/ directory, organized to match the official Avue-form API documentation structure:

Form Component API (api/form-api.md)

  • Form component props
  • Form component events
  • Form component slots

Options API (api/options-api.md)

  • Form options configuration
  • Option properties
  • Option methods

Columns API (api/columns-api.md)

  • Column definitions
  • Column properties
  • Column types

Events API (api/events-api.md)

  • Form events
  • Event handlers
  • Event parameters

Methods API (api/methods-api.md)

  • Form methods
  • Method parameters
  • Method return values

To use API reference:

  1. Identify the API you need help with
  2. Load the corresponding API file from the api/ directory
  3. Find the API signature, parameters, return type, and examples
  4. Reference the linked example files for detailed usage patterns
  5. All API files include links to relevant example files in the examples/ directory

Best Practices

  1. Configure options properly: Set up form options correctly
  2. Define columns clearly: Define form columns with proper types
  3. Handle validation: Use validation rules appropriately
  4. Handle events: Use form events for interactions
  5. Use methods: Leverage form methods for operations
  6. Customize components: Customize components when needed
  7. Follow Vue patterns: Follow Vue.js best practices

Resources

Keywords

Avue-form, avue-form, @avue/form, Vue form, form component, 表单组件, 表单配置, 表单验证, 表单事件, 表单方法, form options, form columns, form validation, form events, form methods, dynamic form, form layout, form rules, form submit, form reset, custom components, form group, form tabs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.74%
按下载量换算64

Claude

30.27%
按下载量换算54

Cursor

20.52%
按下载量换算37

Gemini CLI

10%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills