mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-06-02 22:30:36 +08:00
chore: 添加开源社区基础设施和项目文档
- 添加 README、LICENSE (MIT)、CONTRIBUTING、CHANGELOG - 添加 GitHub Issue/PR 模板和 FUNDING 配置 - 添加 CI/CD 工作流(ci.yml + release.yml) - 添加项目文档页面 (docs/index.html) - 添加 logo 和社群二维码图片资源 - 添加开发和构建脚本 (dev.sh + build.sh) - 更新 package-lock.json 依赖
This commit is contained in:
93
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
93
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
name: Bug 报告
|
||||
description: 提交一个 Bug 报告,帮助我们改进 ClawPanel
|
||||
title: "[Bug] "
|
||||
labels: ["bug"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
感谢你提交 Bug 报告!请尽量详细地填写以下信息,以便我们快速定位和修复问题。
|
||||
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: 问题描述
|
||||
description: 清晰简洁地描述你遇到的问题。
|
||||
placeholder: 请描述你遇到了什么问题...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: reproduce
|
||||
attributes:
|
||||
label: 复现步骤
|
||||
description: 按顺序列出复现该问题的操作步骤。
|
||||
placeholder: |
|
||||
1. 打开应用
|
||||
2. 进入 '...' 页面
|
||||
3. 点击 '...' 按钮
|
||||
4. 出现错误
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: expected
|
||||
attributes:
|
||||
label: 期望行为
|
||||
description: 描述你期望应该发生什么。
|
||||
placeholder: 我期望...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: os
|
||||
attributes:
|
||||
label: 操作系统
|
||||
description: 你使用的操作系统是什么?
|
||||
options:
|
||||
- macOS (Apple Silicon)
|
||||
- macOS (Intel)
|
||||
- Windows 11
|
||||
- Windows 10
|
||||
- Ubuntu / Debian
|
||||
- Fedora / RHEL
|
||||
- Arch Linux
|
||||
- 其他 Linux 发行版
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
id: os-version
|
||||
attributes:
|
||||
label: 系统版本
|
||||
description: 操作系统的具体版本号。
|
||||
placeholder: "例如: macOS 15.3, Windows 11 24H2, Ubuntu 24.04"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
id: app-version
|
||||
attributes:
|
||||
label: ClawPanel 版本
|
||||
description: 你使用的 ClawPanel 版本号(可在「关于」页面查看)。
|
||||
placeholder: "例如: v0.1.0"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: screenshots
|
||||
attributes:
|
||||
label: 截图或日志
|
||||
description: 如果有的话,请附上截图或相关错误日志,有助于更快地定位问题。
|
||||
placeholder: 拖拽图片到此处上传,或粘贴错误日志...
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: textarea
|
||||
id: additional
|
||||
attributes:
|
||||
label: 补充信息
|
||||
description: 其他你认为可能有帮助的信息。
|
||||
placeholder: 任何额外的上下文信息...
|
||||
validations:
|
||||
required: false
|
||||
60
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
60
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
name: 功能请求
|
||||
description: 提出一个新功能或改进建议
|
||||
title: "[功能] "
|
||||
labels: ["enhancement"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
感谢你提出功能建议!请详细描述你的想法,帮助我们让 ClawPanel 变得更好。
|
||||
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: 功能描述
|
||||
description: 清晰简洁地描述你希望添加的功能。
|
||||
placeholder: 我希望 ClawPanel 能够...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: use-case
|
||||
attributes:
|
||||
label: 使用场景
|
||||
description: 描述这个功能会在什么场景下使用,解决什么问题。
|
||||
placeholder: |
|
||||
当我在使用 ClawPanel 时,经常需要...
|
||||
目前的做法是...
|
||||
如果有这个功能,我就可以...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: solution
|
||||
attributes:
|
||||
label: 可能的实现方案
|
||||
description: 如果你有实现思路,请在这里描述。
|
||||
placeholder: |
|
||||
我认为可以通过以下方式实现:
|
||||
1. ...
|
||||
2. ...
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: textarea
|
||||
id: alternatives
|
||||
attributes:
|
||||
label: 替代方案
|
||||
description: 你是否考虑过其他替代方案?
|
||||
placeholder: 我也考虑过...
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: textarea
|
||||
id: additional
|
||||
attributes:
|
||||
label: 补充信息
|
||||
description: 其他相关信息,如参考链接、截图、类似产品的实现等。
|
||||
placeholder: 参考资料或额外说明...
|
||||
validations:
|
||||
required: false
|
||||
Reference in New Issue
Block a user