Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计通过

weapp-vite-vue-sfc-best-practicesweapp Vite Vue SFC 最佳实践

Agent Skill

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

总安装

1,028

周安装

42

GitHub Stars

317

下载量

333
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/weapp-vite/weapp-vite --skill weapp-vite-vue-sfc-best-practices

简介

为微信小程序 Vite + Vue SFC 开发提供最佳实践指导,优化组件结构和样式管理。

  • 适用于 Vue 3 和单文件组件的前端开发场景,支持 Codex、Claude 等环境。
  • 通过 npx skills add 命令从 weapp-vite 仓库安装,支持技能集成。
  • 安装前需确认项目使用 Vue 3 和 Vite,避免技术栈冲突。
  • 可生成或审查 Vue SFC 代码,但需结合项目设计系统和构建流程使用。

SKILL.md

weapp-vite-vue-sfc-best-practices

目的

Implement Vue SFC for mini-programs with a two-layer model: compile-time rules (weapp-vite) and runtime behavior (wevu). Favor predictable compile output and explicit mini-program semantics.

触发信号

  • User asks how to write/refactor mini-program .vue files.
  • User asks about JSON macro usage (definePageJson, defineComponentJson, defineAppJson) or <json> migration.
  • User hits directive compatibility issues (v-model assignment rules, v-bind="object" behavior).
  • User reports SFC compile or runtime mismatch after template/script changes.
  • User asks how to declare usingComponents correctly in SFC.

适用边界

Use this skill when the center of gravity is SFC authoring and compile compatibility.

Do not use this as the primary skill when:

  • The issue is mostly project-level build/CI/subpackage strategy. Use weapp-vite-best-practices.
  • The issue is mostly runtime lifecycle/store/event architecture. Use wevu-best-practices.
  • The task is phased migration from native mini-program. Use native-to-weapp-vite-wevu-migration.

快速开始

  1. Confirm SFC type first: App, Page, or Component.
  2. Pick one JSON macro family that matches the SFC role.
  3. Validate template directives against mini-program compatibility constraints.
  4. Verify runtime API imports and hook timing.
  5. If the project installs weapp-vite, prefer packaged docs under node_modules/weapp-vite/dist/docs/ for current-version examples.

执行流程

  1. Classify the failure stage
  • Compile-time: macro syntax, template transform, usingComponents declaration.
  • Runtime: hook timing, event payload, reactive update expectations.
  • Tooling/type: Volar config, vueCompilerOptions.lib, type resolution.
  1. Enforce SFC boundaries
  • Keep <template>/<script>/<style> responsibilities explicit.
  • Manage mini-program JSON via Script Setup JSON macros first.
  • Use <json> only for legacy compatibility or explicit migration constraints.
  • Do not register mini-program components via script-side ESM registration patterns.
  1. Apply script rules
  • Prefer <script setup lang="ts">.
  • Import runtime APIs from wevu in business logic.
  • Register hooks synchronously in setup() and avoid post-await registration.
  1. Apply macro and template rules
  • Use only one JSON macro per SFC role (defineAppJson / definePageJson / defineComponentJson).
  • Treat definePageMeta as a separate page-meta macro; it may coexist with definePageJson in page SFCs.
  • App -> defineAppJson; Page -> definePageJson; Component -> defineComponentJson.
  • Keep macro calls top-level with a single object argument.
  • For v-model, only use assignable left values: x, x.y, x[i].
  • Avoid unsupported forms such as v-model modifiers/arguments and full-object v-bind expansion assumptions.
  1. Verify narrowly
  • Run targeted checks that match the touched SFC files.
  • Escalate to broader runs only when cross-page behavior is affected.

约束

  • Do not treat mini-program component registration like web Vue component registration.
  • Do not register hooks after await in setup().
  • Do not assume web Vue template features are fully available in mini-program compilation.
  • Do not mix multiple JSON macro families in one SFC.
  • Do not mix SFC syntax fixes with unrelated runtime architecture refactors.
  • Do not ignore project root AGENTS.md guidance in scaffolded templates.

输出要求

When applying this skill, return:

  • Stage-based diagnosis (compile/runtime/tooling).
  • Concrete SFC-level edit list.
  • Compatibility notes for directives/macros used.
  • Minimal verification commands.

完成检查

  • SFC config path is clear and macro-first (avoid new <json> usage by default).
  • usingComponents strategy is deterministic and path-safe.
  • Template usage avoids unsupported directive forms.
  • Runtime API imports come from wevu.
  • Hook timing and page/component context are valid.
  • SFC guidance remains aligned with current template-level AI instructions and packaged docs.

参考资料

  • references/macro-config-checklist.md
  • references/template-compat-matrix.md
  • references/troubleshooting-playbook.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34%
按下载量换算113

Claude

32.71%
按下载量换算109

Cursor

18.79%
按下载量换算63

Gemini CLI

10.23%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills