经 AI Skill Hub 精选评估,开源AI工作流 获评「推荐使用」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
Skills, rules, and validation hooks that teach AI coding agents to generate corr,提高开发效率和准确性。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
Skills, rules, and validation hooks that teach AI coding agents to generate corr,提高开发效率和准确性。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 克隆仓库 git clone https://github.com/niaka3dayo/agent-skills-vrc-udon cd agent-skills-vrc-udon # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 agent-skills-vrc-udon --help # 基本运行 agent-skills-vrc-udon [options] <input> # 详细使用说明请查阅文档 # https://github.com/niaka3dayo/agent-skills-vrc-udon
# agent-skills-vrc-udon 配置说明 # 查看配置选项 agent-skills-vrc-udon --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export AGENT_SKILLS_VRC_UDON_CONFIG="/path/to/config.yml"
English | 日本語 | 简体中文 | 繁體中文 | 한국어
<p align="center"> <img src="https://img.shields.io/badge/VRChat_SDK-3.7.1--3.10.3-00b4d8?style=for-the-badge" alt="VRChat SDK" /> <img src="https://img.shields.io/badge/UdonSharp-C%23_%E2%86%92_Udon-5C2D91?style=for-the-badge&logo=csharp&logoColor=white" alt="UdonSharp" /> <img src="https://img.shields.io/badge/AI_Agent-Skills_%26_Rules-ff6b35?style=for-the-badge" alt="Agent Skills" /> <img src="https://img.shields.io/github/license/niaka3dayo/agent-skills-vrc-udon?style=for-the-badge" alt="License" /> </p>
<p align="center"> <img src="https://img.shields.io/npm/v/agent-skills-vrc-udon?style=flat-square&label=npm" alt="npm version" /> <img src="https://img.shields.io/npm/dm/agent-skills-vrc-udon?style=flat-square&label=downloads" alt="npm downloads" /> <img src="https://img.shields.io/github/actions/workflow/status/niaka3dayo/agent-skills-vrc-udon/ci.yml?branch=dev&style=flat-square&label=CI" alt="CI" /> </p>
<p align="center"> <b>Skills, rules, and validation hooks that teach AI coding agents to generate correct UdonSharp code</b> </p>
<p align="center"> <a href="#about">About</a> • <a href="#install">Install</a> • <a href="#structure">Structure</a> • <a href="#skills">Skills</a> • <a href="#rules">Rules</a> • <a href="#hooks">Hooks</a> • <a href="#contributing">Contributing</a> • <a href="#disclaimer">Disclaimer</a> </p>
---
VRChat world development with UdonSharp (C# → Udon Assembly) has strict compile constraints that differ significantly from standard C#. Features like List<T>, async/await, try/catch, LINQ, and lambdas cause compile errors.
This repository provides AI coding agents with the knowledge to generate correct UdonSharp code from the start.
| Problem | Solution |
|---|---|
AI generates List<T>, async/await, etc. | Rules + hooks auto-detect and warn |
| Sync variable bloat | Decision tree + data budget |
| Incorrect networking patterns | Pattern library + anti-patterns |
| SDK version feature differences | Version table with feature mapping |
| Late Joiner state inconsistency | Sync pattern selection framework |
This is NOT: - A VRChat SDK or UdonSharp distribution - A Unity project (no executable code) - A replacement for official VRChat documentation - A guarantee of all AI behaviors
Issues: Bug reports and knowledge requests are welcome via GitHub Issues. PRs: Pull Requests are not accepted. See CONTRIBUTING.md for details.
---
Migrating from fork/clone? — Since v1.0.0, this project is distributed as an npm package. You no longer need to fork or clone the repository. Simply run one of the install commands below inside your VRChat Unity project. If you previously cloned this repo, you can safely delete the cloned directory and switch to the npm-based install.
npx skills add niaka3dayo/agent-skills-vrc-udon
This uses the skills.sh ecosystem to install skills into your project.
World-level scene setup, component placement, and optimization.
| Area | Content |
|---|---|
| **Scene Setup** | VRC_SceneDescriptor, spawn points, Reference Camera |
| **Components** | VRC_Pickup, Station, ObjectSync, Mirror, Portal, CameraDolly |
| **Layers** | VRChat reserved layers and collision matrix |
| **Performance** | FPS targets, Quest/Android limits, optimization checklist |
| **Lighting** | Baked lighting best practices |
| **Audio/Video** | Spatial audio, video player selection (AVPro vs Unity) |
| **Upload** | Build and upload workflow, pre-upload checklist |
---
Rules are constraint files that guide AI agents before code generation.
| Rule File | Content |
|---|---|
udonsharp-constraints | Blocked C# features, code generation rules, attributes, syncable types |
udonsharp-networking | Ownership model, sync modes, anti-patterns, NetworkCallable constraints |
udonsharp-sync-selection | Sync decision tree, data budget targets, 6 minimization principles |
| SDK Version | Key Features | Status |
|---|---|---|
| **3.7.1** | StringBuilder, Regex, System.Random | Supported |
| **3.7.4** | Persistence API (PlayerData / PlayerObject) | Supported |
| **3.7.6** | Multi-platform Build & Publish (PC + Android) | Supported |
| **3.8.0** | PhysBone dependency sorting, Force Kinematic On Remote | Supported |
| **3.8.1** | [NetworkCallable] parameterized events, Others/Self targets | Supported |
| **3.9.0** | Camera Dolly API, Auto Hold pickup | Supported |
| **3.10.0** | VRChat Dynamics for Worlds (PhysBones, Contacts, VRC Constraints) | Supported |
| **3.10.1** | Bug fixes, stability improvements | Supported |
| **3.10.2** | EventTiming.PostLateUpdate/FixedUpdate, PhysBones fixes, shader time globals | Supported |
| **3.10.3** | VRCPlayerApi.isVRCPlus, VRCRaycast (avatar), Mirror render-order fix | Latest Stable |
Note: SDK < 3.9.0 was deprecated on December 2, 2025. New world uploads require 3.9.0+.
---
claude plugin add niaka3dayo/agent-skills-vrc-udon
该项目提供了一个开源的AI工作流,用于教会AI编码代理生成准确的代码,提高开发效率和准确性,但需要进一步优化和测试
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:开源AI工作流 的核心功能完整,质量良好。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | agent-skills-vrc-udon |
| 原始描述 | 开源AI工作流:Skills, rules, and validation hooks that teach AI coding agents to generate corr。⭐162 · C# |
| Topics | workflowai-agentclaude-codecodex-cligemini-cliudonsharpc# |
| GitHub | https://github.com/niaka3dayo/agent-skills-vrc-udon |
| License | MIT |
| 语言 | C# |
收录时间:2026-05-23 · 更新时间:2026-05-23 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端