了解创新项目模板包含什么、每个部分的作用,以及如何根据你的需求自定义扩展。
Learn what the innovation project template contains, the purpose of each section, and how to customize and extend it to fit your needs.
模板(Template Repository)是一个已经准备好的项目骨架,帮助你跳过繁琐的初始化工作,直接进入核心内容。
The Template Repository is a pre-built project skeleton that helps you skip tedious initialization work and jump straight into the core content.
使用 template-innovation-repo 创建的项目默认包含以下结构:
Projects created using template-innovation-repo include the following structure by default:
这是你的项目最重要的文件。模板已预设了 Problem、Idea、Status 等字段,帮助你结构化地描述项目。
This is the most important file in your project. The template comes with pre-set fields like Problem, Idea, and Status to help you describe your project in a structured way.
⭐ 任何人访问你的 Repo,第一眼看到的就是这个文件。
⭐ This is the first thing anyone sees when they visit your Repo.
告诉 Git 哪些文件不需要被跟踪(如临时文件、编译产物、环境变量等)。通常不需要修改。
Tells Git which files should not be tracked (such as temp files, build artifacts, environment variables, etc.). Usually no modifications needed.
定义其他人可以如何使用你的代码。模板默认使用 MIT 协议(最宽松的开源协议)。
Defines how others can use your code. The template uses the MIT License by default (the most permissive open source license).
模板 README 中有几个预设字段,这是它们的含义和填写建议:
The template README has several pre-set fields. Here are their meanings and tips for filling them in:
写什么:你想解决什么问题?谁遇到了这个问题?影响有多大?
What to write: What problem are you solving? Who encounters this problem? How significant is the impact?
怎么写:2-3 句话即可。用具体的场景描述,而不是抽象的目标。
How to write: 2-3 sentences is enough. Use concrete scenarios, not abstract goals.
✅ "团队每周花 2 小时整理会议纪要,经常遗漏 Action Items"
✅ "The team spends 2 hours weekly organizing meeting notes and often misses Action Items"
❌ "提升团队效率"(太抽象)
❌ "Improve team efficiency" (too abstract)
写什么:你打算怎么解决?用什么技术或方法?
What to write: How do you plan to solve it? What technology or approach will you use?
怎么写:初步思路即可,不需要完整方案。
How to write: A rough idea is fine — you don't need a complete solution.
✅ "用 Whisper API 做语音转文字,再用 GPT 自动摘要"
✅ "Use Whisper API for speech-to-text, then GPT for auto-summarization"
❌ "用 AI 解决"(太模糊)
❌ "Use AI to solve it" (too vague)
标记项目当前所处的生命周期阶段:
Mark the current lifecycle stage of your project:
idea — 刚有想法,还没开始动手prototype — 正在做 Demo 或 PoCactive — 已有用户在使用idea — Just an idea, haven't started yetprototype — Building a Demo or PoCactive — Already has users随项目发展及时更新状态。详见 项目生命周期。
Update the status as your project evolves. See Project Lifecycle for details.
当你的项目逐渐成长,可以按需添加以下目录和文件:
As your project grows, you can add the following directories and files as needed: