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

推荐订阅源

V
Visual Studio Blog
爱范儿
爱范儿
GbyAI
GbyAI
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
云风的 BLOG
云风的 BLOG
C
Check Point Blog
H
Help Net Security
P
Proofpoint News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Y
Y Combinator Blog
U
Unit 42
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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 - mertdeveci5/gora: Search all your local AI codin...
warthog · 2026-06-20 · via Hacker News: Show HN

Gora header

Search all your local AI coding chats.

gora indexes chat history from Codex, Claude Code, and Pi into one local SQLite archive. Use it when you need to remember what you asked a model, what a coding agent changed, which repo a conversation belonged to, or which harness and model were used.

Why

Coding-agent history is spread across different local folders. Some harnesses also prune or rewrite old logs. gora gives you one place to search them.

Common uses:

  • Find an old debugging session by keyword.
  • Check what a coding agent did in a repo last week.
  • Recover a command, error, plan, or explanation from a past chat.
  • See tool calls and command output inline with the chat transcript.
  • Search across Codex, Claude Code, and Pi at the same time.
  • Filter history by harness, repo, role, or model.

Supported History

gora reads local history files from:

Codex       ~/.codex/sessions/**/*.jsonl
Claude Code ~/.claude/projects/**/*.jsonl
Pi          ~/.pi/agent/sessions/**/*.jsonl

No cloud service is required. The index stays on your machine.

Install

uv tool install gora-cli
gora

The PyPI package is gora-cli. The installed command is gora.

Install directly from GitHub:

uv tool install git+https://github.com/mertdeveci5/gora

For local development:

git clone <repo-url>
cd gora
uv tool install --editable .

Quick Start

  1. Check what Gora can see:
  1. Import local history:

The TUI also refreshes the index in the background on launch, so new chats and new repos appear automatically after running gora.

  1. Open the terminal UI:
  1. Search from the CLI:
gora search "aws deploy"
gora search "ctx7 login" --provider codex
gora search "database migration" --model "model-from-gora-models"
  1. Show a full transcript:
gora show codex:<session-id>

Agent Memory Prompt

Add this to AGENTS.md or CLAUDE.md to let coding agents use Gora as a simple local memory of what you asked, what changed, and why.

## Local Chat Memory

Use Gora to search prior local AI coding chats before answering questions that
depend on earlier work, decisions, bugs, commands, or repo history.

Useful commands:

- `gora search "<keywords>" --limit 5`
- `gora search "<keywords>" --cwd <repo-name> --limit 5`
- `gora show <session-id>`

Prefer focused searches with repo names, file paths, error text, command names,
or feature names. Treat Gora results as memory, then verify against the current
repo before changing code.

Terminal UI

Run:

The interactive UI is a Bubble Tea app built with Bubbles components. Gora builds a cached local helper from the bundled Go source on first launch when Go is available. For a prebuilt local helper:

go -C gora/go_tui build -o ../../dist/gora-tui .
GORA_TUI_BIN=dist/gora-tui gora

Live search starts after two characters and updates as you type. The TUI starts a background import on launch. Use gora --no-auto-import to open the UI without refreshing the index.

Controls:

Type             search chats
Tab              move focus between search, filters, and results
Ctrl-F           open the filter popup
Enter            open the selected chat or edit focused filters
Click Filters    open the filter popup
Type             narrow the current filter list in the filter popup
Space            select or clear a filter option in the filter popup
1 2 3 4          jump between filter popup steps
Enter            select a filter option and move to the next filter step
Up/Down          move through results or filter options
M                export the selected chat as Markdown from results/transcript
T                export the selected chat as plain text from results/transcript
Left/Esc         return from transcript or apply filters and go back
Ctrl-U           clear search or all filters in the filter popup
Ctrl-X           clear the current filter popup step
Esc              clear search, clear active filters, or quit

The filter popup supports multi-select harnesses, repos, and models. For example, type part of a repo path, select two repos, then select Claude Code to show only Claude Code sessions from those repos.

Exports are written to ~/Downloads/gora-exports and keep the transcript in a portable Markdown or plain-text file.

CLI Commands

gora doctor
gora import
gora harnesses
gora repos
gora models
gora recent
gora list --limit 20
gora search "query"
gora show <session>

Filters:

gora list --provider codex
gora list --cwd tlmc
gora list --model "model-from-gora-models"
gora list --include-children
gora search "auth bug" --provider claude --model "model-from-gora-models"
gora search "review output" --include-children
gora show <session> --role user --role assistant

Most list-style commands print numbered results and a quick command for the top result.

Example:

1. Model: gpt-5.4
   Provider: openai
   Chats: 460
   Messages: 43079

2. Model: gpt-5.3-codex
   Provider: openai
   Chats: 333
   Messages: 14585

Quick command:
  gora search "<query>" --model gpt-5.4

Useful one-shot commands:

gora harnesses
gora repos --limit 10
gora models --limit 10
gora recent --provider codex --limit 5
gora search "migration bug" --cwd tlmc
gora search "auth bug" --model "model-from-gora-models"
gora show claude:<session-id>

Import Behavior

gora import is archive-oriented.

Once a chat is imported, Gora keeps it searchable even if the original harness later deletes, prunes, or rewrites its local log file. Refreshing a changed source file merges in new messages but does not delete messages already in the archive.

Tool calls and tool-result output are imported by default so transcripts show what the agent actually ran. Gora redacts common token shapes before storing message text.

Codex can create child rollout files for subagents and review tasks. Gora stores those records with their parent thread metadata, but normal list, recent, repos, search, and TUI views show root user chats by default. Use --include-children on CLI list and search style commands when you want to inspect child rollout records too.

Models

Gora does not use a fixed model-name list.

It extracts model metadata from each harness's logged structure:

Codex        turn context model metadata
Claude Code  assistant message model metadata
Pi           model change records and message metadata

List indexed models:

Filter by an indexed model:

gora search "cache bug" --model gpt-5.5

Data Location

Default index path:

macOS  ~/Library/Application Support/gora/history.sqlite
Linux  ~/.local/share/gora/history.sqlite

Use another path:

GORA_DB=/path/to/history.sqlite gora import
gora --db /path/to/history.sqlite search "query"

The default data directory is created with owner-only permissions.

Development

uv run python -m unittest
uv run python -m compileall gora tests main.py
uv build