feat: add GitHub Topics method to Glue Coding guide
- Add prompt template for finding relevant GitHub Topics - Add common topics examples table - Add advanced tips for GitHub Topics and Trending
This commit is contained in:
parent
f8fdfa8de9
commit
d93279decd
|
|
@ -250,6 +250,32 @@ Leverage GPT's internet capabilities (e.g., Grok):
|
||||||
* Check for reusable components.
|
* Check for reusable components.
|
||||||
* Compare quality, implementation methods, licenses, etc.
|
* Compare quality, implementation methods, licenses, etc.
|
||||||
|
|
||||||
|
#### 🔍 Using GitHub Topics to Find the Right Wheels
|
||||||
|
|
||||||
|
**Method**: Ask AI to find the GitHub Topic for your requirement, then browse popular repos under that topic.
|
||||||
|
|
||||||
|
**Example Prompt**:
|
||||||
|
```
|
||||||
|
I need to implement [your requirement], please help me:
|
||||||
|
1. Analyze what technical areas this requirement might involve
|
||||||
|
2. Recommend corresponding GitHub Topics keywords
|
||||||
|
3. Provide GitHub Topics links (format: https://github.com/topics/xxx)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Common Topics Examples**:
|
||||||
|
| Requirement | Recommended Topic |
|
||||||
|
|:---|:---|
|
||||||
|
| Telegram Bot | [telegram-bot](https://github.com/topics/telegram-bot) |
|
||||||
|
| Data Analysis | [data-analysis](https://github.com/topics/data-analysis) |
|
||||||
|
| AI Agent | [ai-agent](https://github.com/topics/ai-agent) |
|
||||||
|
| CLI Tool | [cli](https://github.com/topics/cli) |
|
||||||
|
| Web Scraping | [web-scraping](https://github.com/topics/web-scraping) |
|
||||||
|
|
||||||
|
**Advanced Tips**:
|
||||||
|
- [GitHub Topics Homepage](https://github.com/topics) - Browse all topics
|
||||||
|
- [GitHub Trending](https://github.com/trending) - Discover hot new projects
|
||||||
|
- Combine multiple Topics: `https://github.com/topics/python?q=telegram`
|
||||||
|
|
||||||
### **4.4 Download and Organize Repositories**
|
### **4.4 Download and Organize Repositories**
|
||||||
|
|
||||||
Pull the selected repositories locally and organize them by category.
|
Pull the selected repositories locally and organize them by category.
|
||||||
|
|
|
||||||
|
|
@ -250,6 +250,32 @@ AI 不再需要"发明"任何东西。它只需要:
|
||||||
* 检查是否存在可复用组件
|
* 检查是否存在可复用组件
|
||||||
* 对比质量、实现方式、许可证等
|
* 对比质量、实现方式、许可证等
|
||||||
|
|
||||||
|
#### 🔍 使用 GitHub Topics 精准找轮子
|
||||||
|
|
||||||
|
**方法**:让 AI 帮你找到需求对应的 GitHub Topic,然后浏览该主题下的热门仓库
|
||||||
|
|
||||||
|
**示例提示词**:
|
||||||
|
```
|
||||||
|
我需要实现 [你的需求],请帮我:
|
||||||
|
1. 分析这个需求可能涉及哪些技术领域
|
||||||
|
2. 推荐对应的 GitHub Topics 关键词
|
||||||
|
3. 给出 GitHub Topics 链接(格式:https://github.com/topics/xxx)
|
||||||
|
```
|
||||||
|
|
||||||
|
**常用 Topics 示例**:
|
||||||
|
| 需求 | 推荐 Topic |
|
||||||
|
|:---|:---|
|
||||||
|
| Telegram Bot | [telegram-bot](https://github.com/topics/telegram-bot) |
|
||||||
|
| 数据分析 | [data-analysis](https://github.com/topics/data-analysis) |
|
||||||
|
| AI Agent | [ai-agent](https://github.com/topics/ai-agent) |
|
||||||
|
| CLI 工具 | [cli](https://github.com/topics/cli) |
|
||||||
|
| Web 爬虫 | [web-scraping](https://github.com/topics/web-scraping) |
|
||||||
|
|
||||||
|
**进阶技巧**:
|
||||||
|
- [GitHub Topics 首页](https://github.com/topics) - 浏览所有主题
|
||||||
|
- [GitHub Trending](https://github.com/trending) - 发现热门新项目
|
||||||
|
- 组合多个 Topic 筛选:`https://github.com/topics/python?q=telegram`
|
||||||
|
|
||||||
### **4.4 下载并整理仓库**
|
### **4.4 下载并整理仓库**
|
||||||
|
|
||||||
将选定的仓库拉取到本地,分类整理
|
将选定的仓库拉取到本地,分类整理
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue