Files
Fu-Jie_openwebui-extensions/CONTRIBUTING_CN.md

33 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 贡献指南
感谢你对 **OpenWebUI Extras** 感兴趣!我们欢迎任何形式的贡献,无论是提示词还是插件。
## 🚀 快速贡献流程
1. **Fork** 本仓库并克隆到本地。
2. **修改/添加** 内容:
- **提示词**: 放入 `prompts/` 对应分类。
- **插件**: 放入 `plugins/` 对应分类Actions, Filters, Pipes, Tools
3. **提交 PR**: 提交你的修改,我们会尽快审核。
## 💡 插件开发建议
为了让你的插件能被自动识别和发布,请确保:
- 包含完整的元数据Frontmatter
```python
"""
title: 插件名称
author: 你的名字
version: 0.1.0
description: 简短描述
"""
```
- 如果是更新已有插件,请记得**增加版本号**(如 `0.1.0` -> `0.1.1`),这样系统会自动同步到 OpenWebUI 社区。
## 🛠️ 简单规范
- **好用优先**:代码逻辑清晰,关键地方有简单注释即可。
- **本地测试**:提交前请确保在你的 OpenWebUI 环境中能正常运行。
再次感谢你的贡献!🚀