vault backup: 2026-02-25 16:53:37
This commit is contained in:
@@ -87,7 +87,9 @@ out/
|
|||||||
.env
|
.env
|
||||||
.env.local
|
.env.local
|
||||||
.env.*.local
|
.env.*.local
|
||||||
|
.env.memory
|
||||||
.smart-env/
|
.smart-env/
|
||||||
|
.venv-memory/
|
||||||
|
|
||||||
# MCP Configuration (may contain secrets)
|
# MCP Configuration (may contain secrets)
|
||||||
.mcp.json
|
.mcp.json
|
||||||
@@ -189,6 +191,7 @@ tramp
|
|||||||
*.log
|
*.log
|
||||||
logs/
|
logs/
|
||||||
*.log.*
|
*.log.*
|
||||||
|
.memory-sync.log
|
||||||
|
|
||||||
# --------------------------------------------
|
# --------------------------------------------
|
||||||
# Other Common Ignores
|
# Other Common Ignores
|
||||||
@@ -212,6 +215,7 @@ coverage/
|
|||||||
*.db
|
*.db
|
||||||
*.sqlite
|
*.sqlite
|
||||||
*.sqlite3
|
*.sqlite3
|
||||||
|
memory_eval/results/
|
||||||
|
|
||||||
# --------------------------------------------
|
# --------------------------------------------
|
||||||
# Project Specific
|
# Project Specific
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
A 06_Metadata/AGENT_MEMORY_DEPLOYMENT_PLAN.md
|
||||||
|
A 06_Metadata/AGENT_MEMORY_IMPLEMENTATION_TASKS_2026-02-25.md
|
||||||
|
A 06_Metadata/AGENT_MEMORY_STRATEGY.md
|
||||||
Vendored
+5
-1
@@ -3,5 +3,9 @@
|
|||||||
|
|
||||||
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
*No recent activity*
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 |
|
||||||
</claude-mem-context>
|
</claude-mem-context>
|
||||||
Vendored
-2
@@ -5,8 +5,6 @@
|
|||||||
"obsidian-style-settings",
|
"obsidian-style-settings",
|
||||||
"quickadd",
|
"quickadd",
|
||||||
"any-block",
|
"any-block",
|
||||||
"obsidian-opencode",
|
|
||||||
"opencode-obsidian",
|
|
||||||
"omnisearch",
|
"omnisearch",
|
||||||
"obsidian-local-rest-api",
|
"obsidian-local-rest-api",
|
||||||
"obsidian-kanban",
|
"obsidian-kanban",
|
||||||
|
|||||||
+1
Submodule .obsidian/plugins/claudian/.claude/plugins/obsidian added at 2302b8e4cf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -10,7 +10,7 @@ if [[ -z "$QUERY" ]]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
PROMPT_FILE="$(mktemp /tmp/mem-prompt-XXXXXX.md)"
|
PROMPT_FILE="$(mktemp -t mem-prompt.XXXXXX)"
|
||||||
trap 'rm -f "$PROMPT_FILE"' EXIT
|
trap 'rm -f "$PROMPT_FILE"' EXIT
|
||||||
|
|
||||||
echo "[memory] 正在检索本地语义记忆..." >&2
|
echo "[memory] 正在检索本地语义记忆..." >&2
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
import csv
|
||||||
|
import math
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
csv_path = Path('memory_eval/results/cold_start_20_runs_2026-02-25.csv')
|
||||||
|
rows = list(csv.DictReader(csv_path.open(encoding='utf-8')))
|
||||||
|
vals = sorted(float(r['elapsed_s']) for r in rows if r.get('exit_code') == '0')
|
||||||
|
|
||||||
|
if not vals:
|
||||||
|
print('no successful samples')
|
||||||
|
raise SystemExit(0)
|
||||||
|
|
||||||
|
def pct(vs, q):
|
||||||
|
i = max(0, math.ceil(len(vs) * q) - 1)
|
||||||
|
return vs[i]
|
||||||
|
|
||||||
|
p50 = pct(vals, 0.50)
|
||||||
|
p95 = pct(vals, 0.95)
|
||||||
|
print({'success_samples': len(vals), 'p50_s': round(p50, 4), 'p95_s': round(p95, 4), 'target_le_4_5s': p95 <= 4.5})
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# 2026-01-30
|
|
||||||
|
|
||||||
## Capture
|
|
||||||
<!-- Quick thoughts, links, ideas throughout the day -->
|
|
||||||
-
|
|
||||||
|
|
||||||
## Questions
|
|
||||||
<!-- What am I curious about today? -->
|
|
||||||
-
|
|
||||||
|
|
||||||
## Insights
|
|
||||||
<!-- What did I learn or realize? -->
|
|
||||||
-
|
|
||||||
|
|
||||||
## Connections
|
|
||||||
<!-- Links to other notes or ideas -->
|
|
||||||
-
|
|
||||||
|
|
||||||
## For Tomorrow
|
|
||||||
<!-- What needs follow-up? -->
|
|
||||||
-
|
|
||||||
|
|
||||||
---
|
|
||||||
← [[2026-01-29]] | [[2026-01-31]] →
|
|
||||||
|
|
||||||
*End of day: Ask Claude Code to review and find connections*
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1213 | 10:29 AM | 🔵 | Vault underwent formal review and improvement planning in February 2026 | ~630 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# 改进计划(基于评审意见,排除 CLAUDE-BOOTSTRAP.md 相关问题)
|
# 改进计划(基于评审意见,排除 CLAUDE-BOOTSTRAP.md 相关问题)
|
||||||
|
|
||||||
**计划日期**: 2026-02-03
|
**计划日期**: 2026-02-03
|
||||||
**适用范围**: README、QUICK_REFERENCE、WORKFLOWS、WEEKLY_REVIEW、package.json、06_Metadata 模板与附件管理文档
|
**适用范围**: README、QUICK_REFERENCE、WORKFLOWS、WEEKLY_REVIEW、package.json、06_Metadata 模板与附件管理文档
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1214 | 10:29 AM | 🔵 | Inconsistent frontmatter usage and exposed credentials in vault | ~384 |
|
||||||
|
| #1206 | 10:25 AM | 🔵 | Personal vault structure and content patterns | ~372 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1214 | 10:29 AM | 🔵 | Inconsistent frontmatter usage and exposed credentials in vault | ~384 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -8,7 +8,7 @@ updated: 2025-12-29
|
|||||||
|
|
||||||
### Notes
|
### Notes
|
||||||
```dataview
|
```dataview
|
||||||
table file.ctime as Date from "200-area/Blog"
|
table file.ctime as Date from "02_Areas/Blog"
|
||||||
sort file.name
|
sort file.name
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 |
|
||||||
|
| #1214 | " | 🔵 | Inconsistent frontmatter usage and exposed credentials in vault | ~384 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 |
|
||||||
|
| #1206 | 10:25 AM | 🔵 | Personal vault structure and content patterns | ~372 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -8,7 +8,7 @@ updated: 2025-12-29
|
|||||||
|
|
||||||
### Notes
|
### Notes
|
||||||
```dataview
|
```dataview
|
||||||
table file.ctime as Date from "200-area/Finance"
|
table file.ctime as Date from "02_Areas/Finance"
|
||||||
sort file.name
|
sort file.name
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
title: GFW
|
||||||
|
type: area-hub
|
||||||
|
tags: [area, para, gfw, network]
|
||||||
|
created: 2026-02-25
|
||||||
|
updated: 2026-02-25
|
||||||
|
---
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
```dataview
|
||||||
|
table file.ctime as Date from "02_Areas/GFW"
|
||||||
|
where file.name != this.file.name
|
||||||
|
sort file.name asc
|
||||||
|
```
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -8,7 +8,7 @@ updated: 2025-12-29
|
|||||||
|
|
||||||
### Notes
|
### Notes
|
||||||
```dataview
|
```dataview
|
||||||
table file.ctime as Date from "200-area/Health"
|
table file.ctime as Date from "02_Areas/Health"
|
||||||
sort file.name
|
sort file.name
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -8,7 +8,7 @@ updated: 2025-12-29
|
|||||||
|
|
||||||
### Notes
|
### Notes
|
||||||
```dataview
|
```dataview
|
||||||
table file.ctime as Date from "200-area/House"
|
table file.ctime as Date from "02_Areas/House"
|
||||||
sort file.name
|
sort file.name
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
title: Job
|
||||||
|
type: area-hub
|
||||||
|
tags: [area, para, job, career]
|
||||||
|
created: 2026-02-25
|
||||||
|
updated: 2026-02-25
|
||||||
|
---
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
```dataview
|
||||||
|
table file.ctime as Date from "02_Areas/Job"
|
||||||
|
where file.name != this.file.name
|
||||||
|
sort file.name asc
|
||||||
|
```
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
title: Lifestyle
|
||||||
|
type: area-hub
|
||||||
|
tags: [area, para, lifestyle]
|
||||||
|
created: 2026-02-25
|
||||||
|
updated: 2026-02-25
|
||||||
|
---
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
```dataview
|
||||||
|
table file.ctime as Date from "02_Areas/Lifestyle"
|
||||||
|
where file.name != this.file.name
|
||||||
|
sort file.name asc
|
||||||
|
```
|
||||||
@@ -8,6 +8,6 @@ updated: 2025-12-29
|
|||||||
|
|
||||||
### Notes
|
### Notes
|
||||||
```dataview
|
```dataview
|
||||||
table file.ctime as Date from "200-area/Network & VPN"
|
table file.ctime as Date from "02_Areas/Network & VPN"
|
||||||
sort file.name
|
sort file.name
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ updated: 2025-12-29
|
|||||||
|
|
||||||
### Notes
|
### Notes
|
||||||
```dataview
|
```dataview
|
||||||
table file.ctime as Date from "200-area/Personal Development"
|
table file.ctime as Date from "02_Areas/Personal Development"
|
||||||
sort file.name
|
sort file.name
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -8,7 +8,7 @@ updated: 2025-12-29
|
|||||||
|
|
||||||
### Notes
|
### Notes
|
||||||
```dataview
|
```dataview
|
||||||
table file.ctime as Date from "200-area/Productivity"
|
table file.ctime as Date from "02_Areas/Productivity"
|
||||||
sort file.name
|
sort file.name
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<claude-mem-context>
|
||||||
|
# Recent Activity
|
||||||
|
|
||||||
|
<!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
|
||||||
|
|
||||||
|
### Feb 25, 2026
|
||||||
|
|
||||||
|
| ID | Time | T | Title | Read |
|
||||||
|
|----|------|---|-------|------|
|
||||||
|
| #1206 | 10:25 AM | 🔵 | Personal vault structure and content patterns | ~372 |
|
||||||
|
</claude-mem-context>
|
||||||
@@ -1,5 +1,12 @@
|
|||||||
|
---
|
||||||
|
title: 酸黄瓜制作
|
||||||
|
created: 2025-12-30
|
||||||
|
updated: 2026-02-25
|
||||||
|
tags: [cooking, recipe, pickled-cucumber]
|
||||||
|
type: resource-note
|
||||||
|
---
|
||||||
|
|
||||||
## 2023.4.18 尝试
|
## 配方记录(2023-04-18)
|
||||||
小黄瓜原料:1044 克
|
小黄瓜原料:1044 克
|
||||||
盐:21.7 克
|
盐:21.7 克
|
||||||
糖:11.7 克
|
糖:11.7 克
|
||||||
@@ -7,3 +14,16 @@
|
|||||||
姜末
|
姜末
|
||||||
蒜苔切碎
|
蒜苔切碎
|
||||||
芝麻
|
芝麻
|
||||||
|
|
||||||
|
## 通用做法
|
||||||
|
1. 准备一个干净干燥的玻璃罐,黄瓜或白萝卜切块/切片。
|
||||||
|
2. 加入蒜、辣椒粉,按黄瓜重量约 2% 加盐、1% 加糖。
|
||||||
|
3. 轻揉 10-15 分钟让其出水。
|
||||||
|
4. 压实入罐并尽量浸没在渗出液中。
|
||||||
|
5. 室温发酵约 24 小时后检查气泡情况。
|
||||||
|
6. 达到目标酸度后冷藏保存。
|
||||||
|
|
||||||
|
## 注意事项
|
||||||
|
- 原料和容器需清洁、无明显残留水。
|
||||||
|
- 盐糖比例会显著影响发酵结果。
|
||||||
|
- 发酵期建议使用可微放气的封口方式,避免完全密封导致胀罐。
|
||||||
|
|||||||
@@ -1,48 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: Pickled Cucumber (Merged)
|
||||||
|
created: 2026-02-25
|
||||||
|
type: redirect-note
|
||||||
|
---
|
||||||
|
|
||||||
制作泡菜酸黄瓜的步骤如下:
|
此笔记已并入:[[03_Resources/Cooking/Pickled-Cucumber-Recipe]]
|
||||||
|
|
||||||
材料:
|
|
||||||
|
|
||||||
- 新鲜的黄瓜或白萝卜,切成小块或薄片
|
|
||||||
- 大蒜,切成小块或泥
|
|
||||||
- 辣椒粉或新鲜的辣椒,根据口味添加
|
|
||||||
- 盐,约为黄瓜重量的2%
|
|
||||||
- 白糖,约为黄瓜重量的1%
|
|
||||||
|
|
||||||
步骤:
|
|
||||||
|
|
||||||
1. 准备一个干净的玻璃罐或容器,将黄瓜或白萝卜放入其中。注意,容器应该干燥,因为任何水分都可能影响发酵过程。
|
|
||||||
|
|
||||||
2. 在黄瓜中加入大蒜和辣椒粉,然后在上面撒上盐和白糖。
|
|
||||||
|
|
||||||
3. 用手轻轻地搓揉黄瓜,使它们与盐和糖混合,并开始释放水分。这个过程可能需要10到15分钟。
|
|
||||||
|
|
||||||
4. 将黄瓜压入罐中,使其尽可能地浸泡在其自身的水分中。如果水分不足,可以加入一些水,但不要让水超过黄瓜。
|
|
||||||
|
|
||||||
5. 将容器密封好,然后放置在室温下24小时。在此时间内,黄瓜将开始发酵。
|
|
||||||
|
|
||||||
6. 过了24小时后,打开罐子检查发酵情况。如果你看到了气泡和泡沫,那么你就成功地制作出了泡菜酸黄瓜!此时,你可以将其放入冰箱保存。
|
|
||||||
|
|
||||||
7. 等待几天或一周,黄瓜会越来越酸,并且味道会越来越好。你可以在任何时候品尝,直到你得到最喜欢的味道为止。
|
|
||||||
|
|
||||||
|
|
||||||
注意事项:
|
|
||||||
|
|
||||||
- 在制作泡菜酸黄瓜时,要确保使用新鲜干净的材料,并在制作前彻底清洗。
|
|
||||||
- 要准确地称量盐和糖的数量,因为这会影响到发酵的过程和结果。
|
|
||||||
- 为了防止发酵过程中产生的气体无法逸出,可以选择松散的封口方式,如盖上一个松紧度适中的盖子或覆盖上一块纱布。不要使用密封的盖子,否则可能会导致容器爆裂。
|
|
||||||
|
|
||||||
如果您想为泡菜酸黄瓜添加其他香料以提升其风味,以下是一些常见的选择:
|
|
||||||
|
|
||||||
1. 姜:将姜切成小片或末,加入到泡菜酸黄瓜中。姜的味道会使泡菜酸黄瓜更具有咬劲和辛辣感。
|
|
||||||
|
|
||||||
2. 蒜薹:切碎一些蒜薹,加入到泡菜酸黄瓜中。蒜薹的味道会使泡菜酸黄瓜更加香气扑鼻。
|
|
||||||
|
|
||||||
3. 芝麻:将一些芝麻炒香,然后磨成粉末状,加入到泡菜酸黄瓜中。芝麻的味道会增加泡菜酸黄瓜的浓郁感。
|
|
||||||
|
|
||||||
4. 茴香籽:加入一些茴香籽到泡菜酸黄瓜中。茴香籽的味道会使泡菜酸黄瓜更加清爽和芳香。
|
|
||||||
|
|
||||||
5. 花椒:加入一些花椒到泡菜酸黄瓜中。花椒的味道会使泡菜酸黄瓜更加香辣和麻味。
|
|
||||||
|
|
||||||
|
|
||||||
您可以根据自己的口味和喜好选择合适的香料,并根据量的大小和搭配程度进行调整,以获得您想要的口感和风味。
|
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
title: PKM (Merged)
|
||||||
|
created: 2026-02-25
|
||||||
|
type: redirect-note
|
||||||
|
---
|
||||||
|
|
||||||
|
该入口已合并至:[[03_Resources/Personal Knowledge Management/Personal Knowledge Management]]
|
||||||
|
|
||||||
|
历史目录保留于:`04_Archive/Legacy-Structure/PKM-merged-2026-02-25`
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user