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

推荐订阅源

Martin Fowler
Martin Fowler
V
Visual Studio Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
B
Blog
I
InfoQ
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs
H
Help Net Security
博客园 - Franky
宝玉的分享
宝玉的分享
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家

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 - tryhardfifi/pocket-ingest
filipeisho · 2026-04-25 · via Hacker News: Show HN

Record a voice memo on your phone. Claude processes it when you get back to your desk.

No apps to install. No servers to run. Just an iOS Shortcut, iCloud, and a Claude Code hook.

  YOU (on the go)                                  CLAUDE CODE (at your desk)
  ──────────────                                   ─────────────────────────

  Press Action Button                              Start a new session
        │                                                 │
        ▼                                                 ▼
  Record voice memo                                SessionStart hook fires
        │                                                 │
        ▼                                                 ▼
  iOS transcribes it                               Finds new .txt files
        │                                                 ▲
        ▼                                                 │
  Save .txt ───────▶  ┌─────────────┐  ────────────────────
                      │ Raw Ingest/ │    iCloud sync
                      │  (iCloud)   │
                      └─────────────┘

Why this exists

I use Karpathy's LLM wiki pattern to run my professional life. Raw sources go into a vault, Claude maintains a structured wiki on top of it. It compounds over time. Best system I've found.

The problem: half my best information comes in when I'm away from my computer. Phone calls, meetings, walking between offices. Voice memos pile up on my phone, disconnected from my vault.

pocket-ingest is async ingestion. Capture on your phone, fast and dumb. Process with Claude, smart and async. That's the whole idea.


What you need

  • iPhone with iOS 18+ (for built-in transcription)
  • A Mac with Claude Code installed
  • iCloud Drive enabled on both devices
  • ~5 minutes to set up

Step 1: Install the iOS Shortcut

Get the Voice Memo Shortcut

Tap the link on your iPhone and add it to your Shortcuts library. The shortcut records audio, transcribes it using iOS built-in speech recognition, and saves the text to your Raw Ingest folder in iCloud Drive.

Shortcut: Record, Transcribe, Save      Save settings: Current Date filename


Step 2: Set up the Action Button (optional but recommended)

Assign the shortcut to your iPhone's Action Button. One press and you're recording.

Open Settings, search for Action Button, set it to Shortcut, and select your shortcut.

Search Action Button      Action Button set to Voice Log      Recording: Tap to finish


Step 3: Create the Raw Ingest folder

On your iPhone, open the Files app, go to iCloud Drive, and create a folder called Raw Ingest.

The shortcut saves transcribed text files here. They sync to your Mac automatically.

iCloud Drive with Raw Ingest folder      Synced text file in Raw Ingest


Step 4: Configure the Claude Code hook

This is a project-level hook. Add it to your vault's .claude/settings.json (the project where you want notes to land). The hook runs once when you start a new Claude Code session in that folder. It checks Raw Ingest/ for new files, moves them into your project, and tells Claude about them.

Create .claude/settings.json in your project root:

{
  "hooks": {
    "SessionStart": [
      {
        "matcher": "startup",
        "hooks": [
          {
            "type": "command",
            "command": "bash -c 'INGEST_DIR=\"$HOME/Library/Mobile Documents/com~apple~CloudDocs/Raw Ingest\"; DEST=\"./raw/notes\"; mkdir -p \"$DEST\"; count=0; for f in \"$INGEST_DIR\"/*.txt; do [ -f \"$f\" ] || continue; ts=$(date +%Y-%m-%d-%H%M%S); mv \"$f\" \"$DEST/call-$ts.txt\"; count=$((count+1)); sleep 1; done; [ $count -gt 0 ] && echo \"INGEST: $count new note(s) moved to raw/notes/. Process them now.\" || true'"
          }
        ]
      }
    ]
  }
}

Change ./raw/notes to wherever you want the notes to land in your project.

The hook only runs in this project's folder. Your other repos are unaffected.

Claude Code picking up and processing the ingested file


How to customize

Change the language: Edit the shortcut's Transcribe action to force a specific language instead of using the phone's default.

Use Siri instead of the Action Button: Trigger the shortcut by saying "Hey Siri, Voice Memo". Works with AirPods too.

Add to Lock Screen: Add the shortcut as a Lock Screen widget for one-tap access.

Multiple projects: Modify the hook's DEST path or add routing logic based on content.

Text notes too: Duplicate the shortcut, replace Record + Transcribe with an "Ask for Input" action. Same pipeline, text instead of voice.


License

MIT


Is this interesting? Are you missing any functionality? Open an issue or reach out at filippo@mobileoperator.com