JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 18
  • Score
    100M100P100Q51119F
  • License MIT

Local-first CLI tool for analyzing conversation transcripts and detecting memory drift

Package Exports

  • @memograph/cli
  • @memograph/cli/dist/cli.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@memograph/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Memograph CLI

Quickly inspect conversation transcripts and detect memory drift in AI assistants.

Install

Option A: Run instantly (no install)

npx memograph-cli

Option B: Install globally

npm i -g memograph-cli

After install, the command is memograph.

Quickstart

# Launch the guided menu
npx memograph-cli

Follow the prompts to configure your AI provider and inspect a transcript.

2) CLI mode (for scripts)

# Inspect a transcript file
memograph inspect -i ./transcript.json

# JSON output (for automation)
memograph inspect -i ./transcript.json --json

Example transcript format

{
  "schema_version": "1.0",
  "messages": [
    { "idx": 0, "role": "user", "content": "My name is Tusher" },
    { "idx": 1, "role": "assistant", "content": "Nice to meet you!" },
    { "idx": 2, "role": "user", "content": "Please reply in Bangla from now on" },
    { "idx": 3, "role": "assistant", "content": "Sure." },
    { "idx": 4, "role": "user", "content": "Reply in Bangla please (I told you before)" }
  ]
}

For help: memograph --help