惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - madebywelch/recap: A daily knowledge-point brief...
madebywelch · 2026-05-07 · via Hacker News: Show HN

A daily knowledge-point briefing from your coding-agent sessions. Scans the prior N days of Claude Code and Codex transcripts on your machine, finds the moments where you encountered something unfamiliar, and produces a dense few-paragraph explainer of the underlying concepts — so you actually learn what the agent did instead of just merging the diff.

Why

When you offload most of your coding to an AI agent, you stop reading what it produces. The first time it reaches for AT+CGDCONT, ASWebAuthenticationSession, or a quantized GGUF, you skim the explanation and move on. Six months in, you've shipped a lot and learned almost nothing — skill atrophy that compounds quietly.

recap is a counterweight. Every morning it pulls the prior day's sessions, picks the 4–6 highest-leverage things you brushed past, and writes them up as concept explainers — what the thing actually is, how it works, and the rule of thumb worth keeping. Not an activity log. Not a summary of what got done. Just the knowledge.

How it works

~/.claude/projects/<slug>/<uuid>.jsonl     ┐
~/.codex/sessions/YYYY/MM/DD/rollout-*.jsonl ┘
              │
              ▼
   parse  →  pair (user_msg, next_assistant_msg)
              │
              ▼
   score  →  confusion heuristics
              ("?", what/how/why/wait/explain, short reactives,
               slash-command demotion)
              │
              ▼
   top N  →  pipe JSON + system prompt into `claude -p` or `codex exec -`
              │
              ▼
   stdout + ~/.claude/morning-recap/recap-YYYY-MM-DD.md

No API keys, no SDK dependencies. Inference goes through whichever official CLI you already use (claude or codex), so it inherits your auth, your model selection, and your billing.

Install

Requires Go 1.22+, plus at least one of claude (Claude Code CLI) or codex (Codex CLI) on your $PATH.

git clone https://github.com/madebywelch/recap.git
cd recap
go build -o recap ./...
ln -s "$(pwd)/recap" ~/.local/bin/recap   # or any directory on $PATH

Usage

recap                           # past 1 day, both tools, auto-pick inference CLI
recap --days 3                  # 3-day window
recap --since 2026-04-30        # absolute start date
recap --tool claude             # only mine Claude Code sessions
recap --tool codex              # only mine Codex sessions
recap --inference codex         # force Codex as the inference engine
recap --raw                     # skip inference, dump scored candidates as JSON
recap --top 50                  # send more candidates to inference (default 30)
recap --no-archive              # don't write the dated markdown file
recap --timeout 600             # raise inference timeout (default 240s)

Cron / launchd

Run it every morning at 7am:

0 7 * * * /Users/you/.local/bin/recap --days 1 >/dev/null 2>&1

Then cat ~/.claude/morning-recap/recap-$(date +%F).md over coffee.

Example output

Real run, recap --days 3, top of the file:

APN and AT+CGDCONT. A cellular modem doesn't get IP data the moment a SIM slots in — it needs an APN (Access Point Name) string that names which carrier gateway to attach to (e.g., hologram, internet, iot.t-mobile). Configuring it means sending the AT command AT+CGDCONT=1,"IP","hologram"\r over the modem's UART/serial port — context ID 1, IPv4 PDP type, APN string — then activating the PDP context with AT+CGACT=1,1 or dialing *99#. AT commands are the Hayes-era control protocol every cellular modem still speaks: write AT+CMD?\r to query, AT+CMD=value\r to set, expect OK or ERROR. Rule of thumb: if the carrier dashboard shows the SIM "connected" but the device can't reach the internet, the firmware likely registered on the network for SMS/voice without ever telling the modem the APN — a common omission in closed-source firmware blobs that "just work" on consumer SIMs but break on IoT carriers.

generate_204 connectivity probe. http://www.google.com/generate_204 and http://connectivitycheck.gstatic.com/generate_204 are tiny endpoints that respond with HTTP 204 No Content and zero bytes — Android, ChromeOS, and embedded Linux hit them to detect captive portals…

A typical run produces 4–6 such entries.

Configuration

Path Purpose
~/.claude/projects/*/*.jsonl Source: Claude Code session transcripts
~/.codex/sessions/YYYY/MM/DD/*.jsonl Source: Codex session transcripts
~/.claude/morning-recap/recap-YYYY-MM-DD.md Default archive directory (override with --archive-dir)

There is no config file. Everything is a flag.

What it filters out

Both transcript formats include a lot of machinery that isn't user input. recap drops:

  • Tool-call results (Claude masquerades these as type: "user" lines)
  • Sidechains and meta-injected messages (isSidechain, isMeta)
  • System-instruction wrappers (Conductor, hooks, slash-command markers)
  • Bash stdout/stderr blocks, task notifications, environment-context blocks
  • Codex's auto-injected env/permissions turns
  • Slash commands like /agents or /skill foo (scored down)
  • Session-continuation summary blocks that ride along when context fills

What's left is the actual back-and-forth between you and the agent, scored for moments that read like genuine confusion or curiosity.

Privacy

Sessions never leave your machine except via the inference CLI you select. recap itself makes no network calls. The scored candidates are piped over stdin to claude -p or codex exec -, which then send the request through their normal API path under your account. If you don't want session contents going through a hosted model, run --raw and read the candidate JSON yourself.

The archive directory is a plain markdown file. Nothing is uploaded.

Limitations

  • Heuristics are dumb on purpose. A score is just ? + interrogative-prefix + short-reactive bonuses. Works well in practice but will miss subtle confusion phrased as a confident statement.
  • Both source formats are undocumented internals of their respective CLIs and may change. The parser tolerates unknown fields, but a major schema break would need a fix.
  • Claude session files can grow large (multi-MB transcripts). Scanning 60+ sessions with --days 7 is still sub-second; the bottleneck is always the inference call.
  • The recap is only as good as the source material. A day spent purely typing slash commands and accepting suggestions produces a thin recap. That's correct behavior, not a bug.

Project layout

main.go        flag parsing, orchestration, archive
scan.go        date-windowed walk of session directories
parse.go       JSONL parsers for both formats; system-injection filters
score.go       confusion-signal heuristics
inference.go   shell out to claude/codex via stdin
prompt.go      the system prompt sent to the inference CLI

Single Go binary, stdlib only.

License

MIT. See LICENSE.