#2 Ran ls /Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/ 32 chars
ls /Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/
{
"description": "List dp_006 workspace contents"
} agent_memory AGENTS.md CLAUDE.md
#3 Ran ls /Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/agent_memory/ 50 chars
ls /Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/agent_memory/
{
"description": "List agent_memory contents"
} code email issues memory notes pr_threads releases
#4 Ran ls /Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/agent_memory/pr_threads/ /Users/prasanna/Doc… 1,053 chars
ls /Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/agent_memory/pr_threads/ /Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/agent_memory/releases/
{
"description": "List PR threads and releases"
} /Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/agent_memory/pr_threads/: pr-007-readme-grammar-fixes.md pr-015-first-external-typo-fix.md pr-022-org-todo-keywords.md pr-029-asciidoc-tables.md pr-038-tokio-panic-fix.md pr-044-tree-sitter-upgrade.md pr-052-terminal-a11y.md pr-058-error-messages-cleanup.md pr-061-windows-line-endings-fix.md pr-067-path-tr…
#5 Edited agent_memory/pr_threads/pr-084-concurrent-processing.md 18,600 chars
{
"file_path": "/Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/agent_memory/pr_threads/pr-084-concurrent-processing.md"
} 1 # PR #84: perf(cli): concurrent file processing for batched conversions (closes #41) 2 3 **Branch:** `hiroshi-n/concurrent-processing` → `main` 4 **Opened:** 2026-05-30 by @hiroshi-n 5 **Merged:** 2026-06-08 by @lior-bz 6 **Diff:** 14 files changed, +423 −158 7 **Status:** Merged ✅ — v0.5.0 8 9 --- 10 11 ## Description 12 13 ### Problem 14 15 Batched conversions on corpora larger than ~50MB…
#6 Edited agent_memory/releases/release-v0.5.0-2026-06-08.md 15,908 chars
{
"file_path": "/Users/prasanna/Documents/supermemoryai/supermemoryfs/.scratch/eval/eval/workspace/fs/dp_006/agent_memory/releases/release-v0.5.0-2026-06-08.md"
} 1 # kitabi v0.5.0 (2026-06-08) — Concurrent file processing 2 3 > **Breaking change:** plugin-API ABI version bumped from 1 → 2. Plugin authors must rebuild against `kitabi-plugin-api` 0.5.x. See [CHANGELOG-PLUGIN-API.md](../../CHANGELOG-PLUGIN-API.md) and the migration section below. 4 5 --- 6 7 ## Highlights 🚀 8 9 - **5× throughput improvement** on multi-file batches. A 60 MB Wikipedia subs…
#8 Reasoning 2,001 chars
## Hardware in PR #84 The PR's benchmarks ran on an **Apple M2 Max, 12 physical cores, 32 GB RAM, macOS Sequoia 15.3**, with `--max-concurrency=12`, on a 60 MB Wikipedia markdown subset of **3,142 files** (median 19 KB, largest 1.2 MB). Methodology: `hyperfine`, 10 warm runs after 3 cold discards. Reported time: **278.3 ms ± 6.4 ms** (rounded to 280 ms in the PR body), with the cold-room caveat that Hiroshi ran the final bench at 06:30 JST on a Sunday with no Spotlight/background tasks. ## v0.5.0 release-notes figure for the same corpus The release notes (`releases/release-v0.5.0-2026-06-08.md`, "Benchmark detail") report the Large / Wikipedia-subset row as **280 ms** on v0.5.0 vs 7,400 ms on v0.4.2 — a 26.4× speedup. But the surrounding caption disagrees with the PR on several environment details: | Field | PR #84 | v0.5.0 notes | |---|---|---| | Wall-clock (60 MB) | **280 ms** | **280 ms** | | `--max-concurrency` | 12 | 8 (table caption) | | File count in 60 MB corpus | 3,142 | 1,200 | | macOS version | Sequoia 15.3 | 14.5 | | Runs | 10 warm + 3 cold discards | median of 5, `--warmup 2` | ## Consistency The **headline number is identical (280 ms)** but the **measurement conditions reported around it are not**. Same hardware family (M2 Max), but different concurrency setting, different corpus file count for the "same" 60 MB Wikipedia subset, different macOS version, and a different `hyperfine` run plan. The most plausible explanation — given the surrounding evidence in the docs themselves — is that the release-notes table reused the 280 ms cell from the PR while pairing it with a separately-drafted environment caption. Two specific hints support this: 1. The release notes' own "Notes" line says "the 26× gain ... is partly from the AST flattening fix (#41) and partly from parallelism … the flattening fix alone gave ~3.2×; concurrency gave the remainder." The PR thread frames the same 26× as v0.4.x→PR #84 (sequential→concurrent dispatch) with the bumpalo step…