Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kapillamba4/code-memory
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.28
Choose a base ref
...
head repository: kapillamba4/code-memory
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.29
Choose a head ref
  • 5 commits
  • 8 files changed
  • 3 contributors

Commits on Mar 15, 2026

  1. Speed up database storage with SQLite PRAGMAs and batch operations

    Add synchronous=NORMAL, 64MB cache, temp_store=MEMORY, and 256MB mmap
    PRAGMAs to halve fsync overhead and improve write throughput. Replace
    per-symbol DELETE+INSERT embedding writes with batch executemany inserts,
    use cursor.lastrowid instead of extra SELECT queries for ID retrieval,
    and consolidate multiple commits per file into a single transaction.
    
    Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
    kapillamba4 and claude committed Mar 15, 2026
    Configuration menu
    Copy the full SHA
    518c5df View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2026

  1. feat: add SSE transport support and refactor CLI arg parsing

    Add SSE (Server-Sent Events) transport option to the MCP server, allowing
    a single shared instance to serve multiple MCP host clients over HTTP.
    
    - Add --transport, --port, and --host CLI arguments
    - Extract build_arg_parser() so tests validate the real CLI contract
    - Update README with SSE server setup and MCP host configuration examples
    - Update uv.lock
    Ben Wilson committed Mar 22, 2026
    Configuration menu
    Copy the full SHA
    02f0a33 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2026

  1. Address review: fix README, lift argparse import, simplify tests

    - README: restore `uv build` newline that was clobbered into
      `uv build# Clone the repo`, and drop the duplicated clone/install
      block that landed inside the Development section
    - README: add a security note that the SSE endpoint is unauthenticated
      and should stay bound to 127.0.0.1
    - server.py: move `import argparse` to the module-level imports and
      drop the string-quoted return type on build_arg_parser
    - tests: drop the `pytest.importorskip("sqlite_vec")` (server is already
      imported at module top, so the skip never fires) and the
      `importlib.reload(server)` (no test mutates module source); call
      `server_mod.main()` directly
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    kapillamba4 and claude committed May 10, 2026
    Configuration menu
    Copy the full SHA
    da80510 View commit details
    Browse the repository at this point in the history
  2. Bump version to 1.0.29

    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
    kapillamba4 and claude committed May 10, 2026
    Configuration menu
    Copy the full SHA
    f9a541e View commit details
    Browse the repository at this point in the history
  3. Merge pull request #6 from SlackJaw74/sse

    feat: add SSE transport support and refactor CLI arg parsing
    kapillamba4 authored May 10, 2026
    Configuration menu
    Copy the full SHA
    4a6b0e2 View commit details
    Browse the repository at this point in the history
Loading