tessera-codegraph 0.8.0

A local, deterministic semantic code graph and MCP server for AI coding agents. 11 languages, personalized PageRank impact, hallucination validator, call-path tracing, graph export, incremental indexing.
Documentation
require 'set'

module Sample
  class UserService
    def find_by_id(id)
      render(load_user(id))
    end

    def render_user(id)
      find_by_id(id)
    end

    private

    def load_user(id)
      "user##{id}"
    end

    def render(user)
      "[#{user}]"
    end
  end
end