mirror of
https://github.com/wahyd4/kb.git
synced 2026-08-08 21:06:27 +10:00
kb: add README.md + scripts (inbox, search, stats, lint) + status: inbox for all migrated raw files
This commit is contained in:
@@ -0,0 +1,202 @@
|
||||
# KB — Personal Knowledge Base
|
||||
|
||||
> LLM 驱动的第二大脑。原则:**默认全存,人类筛选,Agent 编译。**
|
||||
>
|
||||
> 不再依赖 Obsidian,不再需要 Notion。就是一堆 markdown 文件 + git。
|
||||
|
||||
## 这是什么
|
||||
|
||||
KB 是一个三层知识管理系统:
|
||||
|
||||
```
|
||||
你分享的任何东西 → raw/ (自动保存) → wiki/ (编译后的知识)
|
||||
↑ ↑
|
||||
Agent 即时写入 Agent + 你一起消化
|
||||
```
|
||||
|
||||
- **raw/** — 源材料。你看过的每篇文章、分享的每个链接、聊过的每个话题,都存在这里。按月分桶,永久保留。
|
||||
- **wiki/** — 编译后的知识。从 raw 中提炼出的结构化笔记:投资 thesis、技术 runbook、决策日志。
|
||||
- **SCHEMA.md** — 约定和规范。告诉 Agent(和你)怎么写页面、用什么 tag。
|
||||
|
||||
## 目录结构
|
||||
|
||||
```
|
||||
kb/
|
||||
├── README.md # 你正在看的
|
||||
├── SCHEMA.md # 约定:tag、frontmatter、模板
|
||||
├── log.md # 操作日志(谁在什么时候做了什么)
|
||||
│
|
||||
├── raw/ # 层1 — 不可变源材料
|
||||
│ ├── links/ # 从 Links App 每日自动同步的新闻
|
||||
│ └── YYYY-MM/ # 手动分享的文章、网页、对话提取
|
||||
│
|
||||
├── wiki/ # 层2 — 编译后的知识
|
||||
│ ├── investing/ # 投资:thesis、分析、税务
|
||||
│ ├── tech/ # 技术:K3s、Cloudflare、部署笔记
|
||||
│ ├── life/ # 生活:钢琴、健身、墨尔本
|
||||
│ └── decisions/ # 决策日志:为什么选了 A 不选 B
|
||||
│
|
||||
├── scripts/ # 实用脚本
|
||||
└── _archive/ # 已被取代的旧页面
|
||||
```
|
||||
|
||||
## 不需要 Hermes Agent 也能用
|
||||
|
||||
KB 就是 markdown 文件 + git。你可以:
|
||||
|
||||
- **用 VS Code 打开** → 直接浏览、搜索、编辑
|
||||
- **用 rg/grep 搜索** → `rg "NVIDIA" wiki/ raw/`
|
||||
- **用 GitHub 看** → github.com/wahyd4/kb
|
||||
- **用 Obsidian 打开**(可选)→ 直接作为 vault,`[[wikilinks]]` 即点即用
|
||||
|
||||
## 核心操作
|
||||
|
||||
### Ingest(采集)— Agent 自动做
|
||||
|
||||
你分享 URL 或粘贴内容给 Hermes → Agent 抓取 → 存 `raw/YYYY-MM/YYYY-MM-DD-slug.md`
|
||||
|
||||
raw 文件的 frontmatter:
|
||||
```yaml
|
||||
---
|
||||
source_url: https://example.com
|
||||
ingested: 2026-07-13
|
||||
status: inbox # inbox → absorbed → skipped
|
||||
---
|
||||
```
|
||||
|
||||
### Absorb(消化)— Agent + 你
|
||||
|
||||
把 raw 里的源材料编译成 wiki 页面:
|
||||
|
||||
1. Agent 读 raw 源
|
||||
2. Agent 搜 wiki/ 找相关已有页面
|
||||
3. **优先更新已有页面**(不铺新页)
|
||||
4. 必要时建新页面
|
||||
5. 改 status → `absorbed`
|
||||
|
||||
```bash
|
||||
# 手动 absorb 辅助:列出所有 inbox 条目
|
||||
./scripts/inbox.sh
|
||||
|
||||
# 手动 absorb 辅助:搜索 raw 中相关内容
|
||||
./scripts/search.sh "NVIDIA" raw/
|
||||
|
||||
# 用 Hermes: "absorb raw/2026-07/2026-07-13-nvidia-article.md"
|
||||
```
|
||||
|
||||
### Query(查询)
|
||||
|
||||
```bash
|
||||
# 搜索所有 KB 内容
|
||||
./scripts/search.sh "关键词"
|
||||
|
||||
# 或直接用 ripgrep
|
||||
rg "NVIDIA" ~/Code/kb/wiki/ ~/Code/kb/raw/
|
||||
```
|
||||
|
||||
结果会标注来源类型:wiki 页面是 **已编译**,raw 条目是 **源材料待编译**。
|
||||
|
||||
### Lint(健康检查)
|
||||
|
||||
```bash
|
||||
# 检查断链
|
||||
./scripts/lint.sh
|
||||
```
|
||||
|
||||
Agent 会检查:断链 wikilinks、过期投资页面、孤儿页面。
|
||||
|
||||
## Frontmatter 规范
|
||||
|
||||
### Wiki 页面
|
||||
|
||||
```yaml
|
||||
---
|
||||
title: "页面标题"
|
||||
created: 2026-07-13
|
||||
updated: 2026-07-13
|
||||
tags: [domain/subtag]
|
||||
sources: [raw/YYYY-MM/file.md] # 来源 raw 文件
|
||||
---
|
||||
```
|
||||
|
||||
### Raw 文件
|
||||
|
||||
```yaml
|
||||
---
|
||||
source_url: https://...
|
||||
ingested: 2026-07-13
|
||||
status: inbox | absorbed | skipped | failed_fetch
|
||||
---
|
||||
```
|
||||
|
||||
## Tag 系统
|
||||
|
||||
开放前缀制 — 新 tag 直接用,不审批:
|
||||
|
||||
| 前缀 | 示例 |
|
||||
|------|------|
|
||||
| `tech/` | `infra`, `k3s`, `cf-workers`, `llm`, `agent`, `homelab` |
|
||||
| `inv/` | `semi`, `cloud`, `ai`, `thesis`, `earnings`, `tax`, `valuation` |
|
||||
| `life/` | `music`, `piano`, `health`, `family`, `melbourne` |
|
||||
|
||||
## 页面模板
|
||||
|
||||
### 投资 Thesis
|
||||
```markdown
|
||||
# [Company] Thesis
|
||||
- Conviction: high/medium/low
|
||||
- Thesis: 3-5 个核心理由
|
||||
- Risks: 什么会打破 thesis
|
||||
- Catalysts: 近期催化剂
|
||||
```
|
||||
|
||||
### 技术 Runbook
|
||||
```markdown
|
||||
# [Component] Runbook
|
||||
- Purpose: 干什么的
|
||||
- Location: repo/namespace
|
||||
- Common issues: 常见问题 + 修复
|
||||
```
|
||||
|
||||
### 决策日志
|
||||
```markdown
|
||||
# [Decision]
|
||||
- Date: YYYY-MM-DD
|
||||
- Context: 背景
|
||||
- Options: 考虑过哪些方案
|
||||
- Decision: 选了哪个 + 为什么
|
||||
```
|
||||
|
||||
## 搜索技巧
|
||||
|
||||
```bash
|
||||
# 找所有 inbox 待处理
|
||||
rg "status: inbox" raw/
|
||||
|
||||
# 找所有 NVIDIA 相关内容
|
||||
rg -l "NVIDIA" wiki/ raw/
|
||||
|
||||
# 找所有投资 thesis
|
||||
rg "tags:.*inv/thesis" wiki/
|
||||
|
||||
# 统计
|
||||
./scripts/stats.sh
|
||||
```
|
||||
|
||||
## 自动化
|
||||
|
||||
| 时间 | 做什么 |
|
||||
|------|--------|
|
||||
| 每天 06:30 | Links App → `raw/links/YYYY-MM/` 同步 |
|
||||
| 每天 22:00 | Hermes 对话扫描 → `raw/YYYY-MM/` 提取知识 |
|
||||
| 每周日 | Review inbox → 决定 absorb 哪些 |
|
||||
|
||||
## 隐私
|
||||
|
||||
- GitHub repo = **private**
|
||||
- 不含具体持仓金额、家庭隐私
|
||||
- 投资页面只记录 thesis/分析框架
|
||||
|
||||
## 与旧 one-knowledge 的关系
|
||||
|
||||
`~/junv/one-knowledge` 是旧版知识库。2,815 篇 links-posts 和 19 篇 tech notes 已迁移到 KB。旧 repo 保留但不再主动更新。
|
||||
+4
@@ -1,4 +1,5 @@
|
||||
---
|
||||
status: inbox
|
||||
title: "House prices are falling in some places, but one state keeps charging ahead"
|
||||
source: "https://www.sbs.com.au/news/article/house-prices-are-falling-in-some-places-but-one-state-keeps-charging-ahead/520q3zwnc"
|
||||
author:
|
||||
@@ -9,6 +10,7 @@ description: "A property expert said houses in this capital city are selling at
|
||||
tags:
|
||||
- "clippings"
|
||||
---
|
||||
status: inbox
|
||||
[Australia](https://www.sbs.com.au/news/tag/section/australia)
|
||||
|
||||
## A property expert said houses in this capital city are selling at "crazy" prices.
|
||||
@@ -147,10 +149,12 @@ Another push point for moving regionally is the lack of available rentals in cit
|
||||
The national vacancy rate sat at 1.6 per cent in March, below the decade average of 2.5 per cent, pushing up prices as demand exceeds supply.
|
||||
|
||||
---
|
||||
status: inbox
|
||||
|
||||
***For the latest from SBS News,*** [***download our app***](https://www.sbs.com.au/news/sbs-news-app?cid=sbsnews:cm:editorial:aw:election2025:appush:hi) ***and*** [***subscribe to our newsletter***](https://www.sbs.com.au/news/news-newsletter-sign-up?cid=sbsnews:cm:editorial:aw:election2025:newsletterpush:hi)***.***
|
||||
|
||||
---
|
||||
status: inbox
|
||||
|
||||
Published
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
---
|
||||
status: inbox
|
||||
title: "「論文」英文該用 essay、paper、thesis,還是 dissertation? – 英文庫"
|
||||
source: "https://english.cool/essay-paper-thesis-dissertation/"
|
||||
author:
|
||||
@@ -9,6 +10,7 @@ description:
|
||||
tags:
|
||||
- "clippings"
|
||||
---
|
||||
status: inbox
|
||||
唷齁~大家好,歡迎來到英文庫,我是 Min 👋。今天咱們要來搞定的是「論文」的英文該怎麼說。說到寫論文,每個人應該都會表情開始扭曲吧,光要生出內容就已經令人一個頭兩個大,寫的時候還得顧到格式 APA、MLA、Chicago。
|
||||
|
||||
難怪,無論是學校課程規定要交的論文作業( **essay** 、 **paper** ),或是寫了才能拿到研究所畢業證書的學位論文( **thesis** 、 **dissertation)** ,常會燒死每個同學大量的腦細胞啊啊啊 💀。話說回來,在寫作的過程中突破瓶頸,並在最後產出有價值的論文,可是很有成就感的!接下來,我們來做另一件論文會帶來有成就感的事吧,那就是釐清「論文」的四個英文字。Ready? Let’s go!💃
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
---
|
||||
status: inbox
|
||||
title: "金刚经全文--金刚经原文"
|
||||
source: "http://m.shixiu.net/nanshi/zhuzuo/jgjssm/4391.html"
|
||||
author:
|
||||
@@ -8,11 +9,13 @@ description: "《金刚经全文》:第一品 法会因由分如是我闻。
|
||||
tags:
|
||||
- "clippings"
|
||||
---
|
||||
status: inbox
|
||||
金刚经全文
|
||||
|
||||
\---金刚经说什么
|
||||
|
||||
---
|
||||
status: inbox
|
||||
|
||||

|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-11-05
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/1/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 科技新闻
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-11-07
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/10/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 墨尔本及澳洲新闻简报
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-06
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/100/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
```markdown
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-27
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1000/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
** 科技新闻摘要**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-27
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1001/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
我很抱歉,尽管您提供了非常详尽的列表,我仍然努力为您找到了一幅不在其中的、且具有文化意义的古画——《伯牙鼓琴图》。
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-27
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1002/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 大新闻
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-27
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1003/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球要闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-27
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1004/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 美国进步
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-28
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1005/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-28
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1007/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 观荷图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-28
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1008/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 新闻快讯
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-07
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/101/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻速递**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-28
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1011/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-28
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1012/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 雾海上的漫游者
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-29
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1016/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻摘要**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-29
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1017/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 秋庭戏婴图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-29
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1018/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 焦点新闻
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-29
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1019/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻快报
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-07
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/102/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
Here's the 8-item concise bulletin summary in Chinese and markdown format:
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-29
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1020/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 梅杜莎之筏
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-30
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1022/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-30
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1023/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 清院本清明上河图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-30
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1024/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 世界要闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-30
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1025/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 吃土豆的人
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-31
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1026/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
** 科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-31
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1027/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 柳鸦芦雁图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-31
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1028/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 大新闻
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-31
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1029/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球要闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-07
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/103/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 八条世界新闻简报 (Eight World News Headlines)
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-07-31
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1030/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
《1808年5月3日的枪杀》是一幅由西班牙画家弗朗西斯科·戈雅创作的油画,完成于1814年。这幅画描绘了1808年5月3日,拿破仑军队占领马德里后,对西班牙起义者进行大规模处决的场景。画中,一名身穿白衣的男子高举双臂,面对着荷枪实弹的法国士兵,他的表情充满了恐惧和绝望,而他身旁和身下是已经倒下的受害者。画作通过强烈的对比和戏剧性的光影效果,揭示了战争的残酷和人性的光辉。
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-01
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1031/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
** 科技新闻速览**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-01
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1032/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 写生蛱蝶图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-01
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1033/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 突发新闻
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-01
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1034/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-01
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1035/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 干草车 (The Hay Wain)
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-02
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1036/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**Tech news**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-02
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1037/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
好的,我为您推荐了《潇湘卧游图》。这幅画能够帮助您的孩子了解中国山水画的意境之美和古人寄情山水的生活雅趣。
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-02
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1038/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# Big news
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-02
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1039/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻快讯
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-08
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/104/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-02
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1040/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
好的,我为您推荐了《斗狗扑克牌局》(Dogs Playing Poker) 这幅画作,并提供了相关信息:
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-03
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1041/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
** Tech news**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-03
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1042/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 水月观音图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-03
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1043/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 要闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-03
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1044/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球要闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-03
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1045/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 召唤圣马太 (The Calling of Saint Matthew)
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-04
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1046/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-04
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1047/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 闸口盘车图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-04
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1048/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# Big news
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-04
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1049/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻快报
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-08
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/105/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
Here's the 8-item concise bulletin summary in Chinese, focusing on the most significant news:
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-04
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1050/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 夜间的咖啡馆
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-05
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1051/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-05
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1052/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 孔雀东南飞图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-05
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1053/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# Big news
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-05
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1054/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 戴金翅雀的少女
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-06
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1055/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
** Tech news**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-06
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1056/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 头条新闻
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-06
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1057/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# Big news around the World
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-06
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1058/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
好的,我已经为您推荐了伦勃朗的《浪子回头》,并将其介绍、图片链接和搜索链接保存到了您的 Google Doc 中。希望这幅画能帮助您的儿子更好地了解艺术、绘画和历史!
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-07
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1059/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**Tech news**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-08
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/106/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 世界要闻速览 (World News Bulletin)
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-07
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1060/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 湘夫人图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-07
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1061/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# Big news
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-07
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1062/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻快报
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-07
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1063/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
好的,我为你推荐的这幅世界名画是:
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-08
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1064/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
** 科技新闻速览**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-08
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1065/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
Agent stopped due to max iterations.
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-08
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1066/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 最新速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-08
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1067/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-08
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1068/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 舞蹈 (The Dance)
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-09
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1069/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 十六罗汉图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-09
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/107/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技与全球新闻摘要**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-09
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1070/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 图像的背叛 (The Treachery of Images)
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-09
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1071/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻快讯
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-09
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1072/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
** 科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-10
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1075/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-10
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1076/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
Agent stopped due to max iterations.
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-10
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1077/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 头条新闻
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-10
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1078/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 世界要闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-10
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1079/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 蓝衣少年 (The Blue Boy)
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-09
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/108/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 墨尔本与澳大利亚新闻简报
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-11
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1080/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**科技新闻速览**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-11
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1081/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 二十四孝图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-11
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1082/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 头条新闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-11
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1083/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻快讯
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-11
|
||||
type: summary
|
||||
tags: ["AI", "painting", "world"]
|
||||
external: http://go/ui/posts/1084/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 吹笛少年
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-12
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1085/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
** 科技新闻**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-12
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1086/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 枯木怪石图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-12
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1087/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 头条新闻
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-12
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1088/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球新闻速览
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-13
|
||||
type: summary
|
||||
tags: ["newsletter", "technology"]
|
||||
external: http://go/ui/posts/1089/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
**Tech news**
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2024-12-09
|
||||
type: summary
|
||||
tags: [[]]
|
||||
external: http://go/ui/posts/109/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 八条世界新闻简讯
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-13
|
||||
type: summary
|
||||
tags: ["AI", "china", "painting"]
|
||||
external: http://go/ui/posts/1090/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
## 富贵白头图
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-13
|
||||
type: summary
|
||||
tags: ["local_news", "newsletter"]
|
||||
external: http://go/ui/posts/1091/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# Big news
|
||||
|
||||
@@ -5,6 +5,7 @@ updated: 2025-08-13
|
||||
type: summary
|
||||
tags: ["newsletter", "world_news"]
|
||||
external: http://go/ui/posts/1092/
|
||||
status: inbox
|
||||
---
|
||||
|
||||
# 全球要闻速览
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user