init: 知识库/原子库/README.md
Browse files- 知识库/原子库/README.md +44 -0
知识库/原子库/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 原子库
|
| 2 |
+
|
| 3 |
+
> 灵感来自 dbskill `知识库/原子库/atoms.jsonl`
|
| 4 |
+
|
| 5 |
+
每一条是从 Gingiris 运营实战(发文、投流、访谈、对手复盘)里提炼的一条可复用知识点。
|
| 6 |
+
|
| 7 |
+
## 字段说明
|
| 8 |
+
|
| 9 |
+
```json
|
| 10 |
+
{
|
| 11 |
+
"id": "2026Q2_001",
|
| 12 |
+
"knowledge": "canonical 合并后 3-7 天排名才反应,不要当天就判失败",
|
| 13 |
+
"source": "https://github.com/Gingiris/growth-tools",
|
| 14 |
+
"date": "2026-04-14",
|
| 15 |
+
"topics": ["seo", "canonical"],
|
| 16 |
+
"skills": ["gr-seo-patrol", "gr-blog-post"],
|
| 17 |
+
"type": "lesson",
|
| 18 |
+
"confidence": "high"
|
| 19 |
+
}
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
## 字段
|
| 23 |
+
|
| 24 |
+
| 字段 | 说明 |
|
| 25 |
+
|---|---|
|
| 26 |
+
| `id` | `{YYYYQx}_{NNN}` 季度 + 编号 |
|
| 27 |
+
| `knowledge` | 提炼后的 1 句话 |
|
| 28 |
+
| `source` | 原始来源 URL(博客、截图、访谈) |
|
| 29 |
+
| `topics` | seo / geo / ph / oss / aso / blog / b2b / i18n |
|
| 30 |
+
| `skills` | 关联的 gr-* skill |
|
| 31 |
+
| `type` | `principle` / `method` / `lesson` / `anti-pattern` / `case` |
|
| 32 |
+
| `confidence` | `high` / `medium` / `low` |
|
| 33 |
+
|
| 34 |
+
## 使用方式
|
| 35 |
+
|
| 36 |
+
1. **给 AI 做 RAG**:`atoms.jsonl` 导向量库
|
| 37 |
+
2. **给 Skill 运行时参考**:运行 `gr-*` 时按 skill 过滤
|
| 38 |
+
3. **给人读**:过滤 `topics` 或 `type` 自己翻
|
| 39 |
+
|
| 40 |
+
---
|
| 41 |
+
|
| 42 |
+
## 增量规则
|
| 43 |
+
|
| 44 |
+
每周一 `weekly-growth-tools-update` scheduled task 自动从上周的运营日志提炼 3-10 条新原子,PR 到 `atoms.jsonl`。
|