feedback_grep-daily-insights-before-repo.md

Source type: memory · Harvested: 2026-05-03 · Original date: 2026-05-03T11:22:58.873Z Metadata: {"original_path":"feedback_grep-daily-insights-before-repo.md"}



name: 建新 working repo 前先 grep daily-insights $ 數字 description: 建立任何 working repo 之前,必須 grep daily-insights 撈過去已查到的 hard data(特別是 dollar amounts、entity names、percentages),不要只 grep keyword type: feedback originSessionId: 1334d29f-647c-4e53-bbf0-b6e326b9a8a6

建 working repo 前先 grep daily-insights $ 數字

規則

建立任何新的 working repo(如 garnet-negotiation、cms-access-model、e2-immigration)之前,必須先做 daily-insights cross-check:

cd ~/.claude/projects/-Users-lunhsiangyuan/memory/daily-insights
 
# 1. 先 grep keyword 找出相關文件
grep -li -E "<topic>|<entity>" *.md
 
# 2. 再 grep 那些文件裡的 hard data(最重要)
for f in $(grep -li "<topic>" *.md); do
  grep -B 2 -A 6 -E '\$[0-9]{3},[0-9]{3}|\$[0-9]+K|\$[0-9]\.[0-9]+M|[0-9]+%|EIN [0-9]' "$f"
done
 
# 3. 不要 head -120 就停,至少看 200-300 行

Why:2026-05-03 建 garnet-negotiation repo 時犯這個錯。原本 4/10 daily-insights 已經查到 Abourbih 716K(從 Garnet Health Doctors PC FY2024 990),但我建 repo 時只看到 4/10 的「Garnet 對你是好的第一站」「Tail coverage」兩段,漏掉同日 20:28 那段「泌尿科 779K rural premium」+ Hoffman 不在 990 訊號。結果整份 walk-away 表用 MGMA / GPT-5.5 推估的 450-640K(差 $115K/年)。後來重新派 agent 去查同樣的 990 才發現自己已經查過——浪費一次 Form 990 lookup + 整份 repo 要 retroactive 校正。

How to apply:任何「建 repo 前的研究」「給數字 ask 之前」「市場 anchor 之前」三類任務的第一動作 = 上述 grep 流程,不是直接動手。Repo 建好後在 CLAUDE.md / sources.md 標註所有 daily-insights 來源(如 4/10 daily-insights — $715K-$779K anchor)以便未來 cross-check。


[← 回 Alfred Brain Hub]