feat: Add CI workflows, issue templates, examples, and prompts

This commit is contained in:
tukuaiai
2025-12-18 17:01:47 +08:00
parent 5423dd1fe8
commit 9523f1575d
13 changed files with 252 additions and 1881 deletions
+6 -9
View File
@@ -1,11 +1,8 @@
# .github/ISSUE_TEMPLATE/config.yml
# 配置 Issue 模板选择器
blank_issues_enabled: true
contact_links:
- name: 💬 Telegram 交流群
url: https://t.me/glue_coding
about: 加入我们的 Telegram 群组讨论问题
- name: 📢 Telegram 频道
url: https://t.me/tradecat_ai_channel
about: 关注项目更新和资讯
- name: 📖 在线提示词表格
url: https://docs.google.com/spreadsheets/d/1ngoQOhJqdguwNAilCl1joNwTje7FWWN9WiI2bo5VhpU/edit?gid=2093180351
about: 查看和使用提示词库
- name: 🤔 提问与讨论
url: https://github.com/tukuaiai/vibe-coding-cn/discussions
about: 请使用 GitHub Discussions 进行提问或发起讨论。
+38 -25
View File
@@ -1,29 +1,42 @@
---
name: 文档改进
about: 报告文档问题或建议改进
title: "[Docs]: "
labels: documentation
assignees: ''
name: "📖 文档改进"
description: "提出关于文档的改进建议或报告错误。"
title: "docs: "
labels: ["documentation"]
body:
- type: markdown
attributes:
value: |
感谢您花时间来改进我们的文档!
---
- type: textarea
id: problem-description
attributes:
label: "您想改进或报告的问题是什么?"
description: "请清晰、简洁地描述问题。例如:某个链接失效、某个步骤不清晰、某个概念解释有误等。"
validations:
required: true
**文档位置**
请提供需要改进的文档路径或链接。
- type: textarea
id: suggested-solution
attributes:
label: "您的建议方案"
description: "您认为应该如何修正?请提供具体的修改建议。"
validations:
required: true
**问题类型**
- [ ] 内容错误
- [ ] 内容过时
- [ ] 内容缺失
- [ ] 表述不清
- [ ] 链接失效
- [ ] 格式问题
- [ ] 翻译问题
**问题描述**
清晰描述文档存在的问题。
**建议改进**
如果有具体的改进建议,请在此描述。
**附加信息**
任何其他相关信息。
- type: dropdown
id: document-scope
attributes:
label: "涉及的文档范围"
description: "这个问题主要影响哪个部分的文档?"
multiple: true
options:
- "README 主页"
- "Wiki"
- "实战案例"
- "教程与指南"
- "方法论与原则"
- "其他"
validations:
required: true
+44 -33
View File
@@ -1,38 +1,49 @@
---
name: 提示词贡献
about: 分享一个有用的提示词
title: "[Prompt]: "
labels: prompts, contribution
assignees: ''
name: "💡 贡献新的提示词 (Prompt)"
description: "分享一个您认为有价值的编程或 AI 相关的提示词。"
title: "prompt: "
labels: ["prompt", "enhancement"]
body:
- type: markdown
attributes:
value: |
非常感谢您愿意分享您的宝贵提示词!一个好的提示词能极大地提升我们的工作效率。
---
- type: input
id: prompt-name
attributes:
label: "提示词名称"
description: "给您的提示词起一个简洁明了的名称。"
placeholder: "例如:代码调试专家 (Debug Expert)"
validations:
required: true
**提示词名称**
给这个提示词起一个简洁的名字。
- type: textarea
id: prompt-content
attributes:
label: "提示词内容"
description: "请在此处粘贴您的完整提示词内容。请使用 Markdown 代码块进行格式化。"
render: "markdown"
validations:
required: true
**提示词分类**
- [ ] 系统提示词 (system_prompts)
- [ ] 编程提示词 (coding_prompts)
- [ ] 用户提示词 (user_prompts)
- [ ] 辅助提示词 (assistant_prompts)
- [ ] 元提示词 (meta_prompts)
- type: textarea
id: use-case
attributes:
label: "使用场景和说明"
description: "请描述这个提示词主要用于解决什么问题?它的效果如何?如果有任何使用的注意事项,也请一并说明。"
validations:
required: true
**提示词内容**
```
在这里粘贴你的提示词内容
```
**使用场景**
描述这个提示词适用于什么场景。
**效果示例**
如果可能,提供使用这个提示词的效果示例或截图。
**适用模型**
- [ ] Claude
- [ ] GPT
- [ ] Gemini
- [ ] 其他: ___
**附加说明**
任何其他需要说明的内容。
- type: checkboxes
id: checklist
attributes:
label: "确认清单"
description: "在提交前,请确认以下事项。"
options:
- label: "我确认这个提示词是我原创或有权分享的。"
required: true
- label: "我已经在本地测试过这个提示词,并确认其有效性。"
required: true
- label: "我同意将这个提示词以项目所使用的 [MIT License](LICENSE) 授权给社区。"
required: true