Skip to content

v0.1

Choose a tag to compare

@duck8823 duck8823 released this 07 Apr 14:48
2d94046

Traceary v0.1

Released on April 7, 2026.

Traceary v0.1 establishes the local-first baseline for recording and searching AI agent work history across Claude Code, Codex CLI, and Gemini CLI.

Included in v0.1

  • SQLite-backed local store at ~/.config/traceary/traceary.db
  • Core CLI commands:
    • traceary init
    • traceary log
    • traceary audit
    • traceary list
    • traceary search
    • traceary session start
    • traceary session end
    • traceary gc
  • MCP server with:
    • add_log
    • add_audit
    • search
    • get_context
  • Hook integration assets for Claude Code, Codex CLI, and Gemini CLI
    • session lifecycle hook script
    • shell-command audit hook script
    • example config files
    • setup guide

Highlights

  • local-first, single-binary Go implementation
  • shared event model with client, agent, session_id, and work-context attribution
  • text and date-range search over recorded events
  • retention / garbage-collection support for long-running local use
  • dogfood-validated hook flow from session start to audit to session end

Delivered through

  • #11 bootstrap CLI and SQLite store
  • #12 log / list
  • #13 session start / end
  • #14 audit log
  • #15 gc / retention
  • #16 search / work context
  • #17 MCP server
  • #18 hooks integration