Skip to main content
                                                _
 _ __ ___   ___ _ __ ___   ___  _ __       __ _(_)
| '_ ` _ \ / _ \ '_ ` _ \ / _ \| '__|____ / _` | |
| | | | | |  __/ | | | | | (_) | | |_____| (_| | |
|_| |_| |_|\___|_| |_| |_|\___/|_|        \__,_|_|

  Measured memory and opt-in token savings for coding agents.

License: MIT Tests Python PyPI

Automatic background memory for Claude Code, Cursor, Codex, Copilot, Kimi, Goose, and Jcode — plus optional local token savings for Claude Code and Codex. Memory is fire-and-forget; proxy is opt-in. No Memor API key required.

Memor watches your coding sessions, extracts decisions and patterns, and recalls relevant context on every prompt. Optionally, a local proxy compresses tool payloads before they reach the provider and tracks measurable token savings on the dashboard.


Quick Start

# Install globally (recommended)
pipx install memor-cli

# Install the hook + download embedding model (~60MB)
memor install-hook                  # interactive — pick an agent
memor install-hook --agent kimi     # or pass directly (claude, codex, copilot, kimi, goose, jcode)

# Start as a background service (macOS/Linux)
memor service install

# Or run in the foreground
memor daemon

That's it. Every prompt now gets automatic context recall. memor service install also starts the dashboard as a background service, so it's already live at http://localhost:8420 (and is recycled whenever you stop/restart/uninstall the service). To run it in the foreground instead:

memor dashboard
# Opens http://localhost:8420

Alternative install: pip install memor-cli works too — just make sure ~/.local/bin is on your PATH so the memor command is available.

Optional: Token savings proxy

Memory works out of the box via hooks. To also compress tool payloads and track token savings:

memor install-proxy --agent claude   # or: codex, goose, kimi, cursor, cline, opencode

This points your agent at a local proxy on 127.0.0.1:8421, compresses tool payloads before they reach the provider, and logs savings to the dashboard. For proxied agents, hooks skip inject and recall is served by the proxy instead; Cursor and Copilot always use hooks only.

A proxy is handed an HTTP request and nothing else — no working directory — so it works out which project a request belongs to by reading the request itself: the working directory the agent states in its system prompt, and failing that the git root shared by the absolute file paths its tool calls name. If neither yields a real repository, recall falls back to global memories rather than guessing at a project.

memor service restart (e.g. after pipx upgrade) keeps the proxy running when it was opted in. If the proxy fails its health check on install, Memor restores your agent’s original API URLs so calls are not left pointing at a dead localhost port. memor service stop warns while agents still point at the proxy; memor service uninstall restores direct API configs for proxy-enabled agents.

To revert: memor uninstall-proxy --agent claude

Codex support is experimental. The proxy implements the OpenAI Chat Completions API (/v1/chat/completions). Codex CLI may instead use the Responses API (/v1/responses) depending on version and model, in which case requests will not route through the proxy and you will see no savings. Memory via hooks is unaffected. Track it in #26.

Optional: Full Cursor install (recommended)

Memory alone still only needs memor install-hook (Claude covers Cursor). For token savings on Cursor, one command enables the full stack:

memor install-proxy --agent cursor

That flow:

  1. Explains what will be installed, then asks you to confirm
  2. Installs memory hooks (if missing) + Shell compress hooks + BYOK on :8421

Flags: --yes to accept without prompting.

memor uninstall-proxy --agent cursor   # restore original settings
memor service restart                  # recycle services after an upgrade

Compression reaches Cursor through the Shell compress hooks, which crush terminal and tool output before Cursor ingests it. Subscription Composer traffic is not intercepted — see Why no Composer interception.


Dual-Path Architecture

Memor runs two complementary local paths — combine them or use either alone:

                         ┌──────────────────────────────────────┐
                         │        Memor (localhost)             │
                         │  daemon · hooks · proxy · dashboard  │
                         └──────────────────┬───────────────────┘
                                            │
              ┌─────────────────────────────┼─────────────────────────────┐
              ▼                             ▼                             ▼
       Path A: Hooks                 Path B: Proxy                 Shared store
       (memory, all agents)          (memory + savings)            SQLite + vec
              │                             │                      + FTS + ledger
              │ recall inject               │ recall inject +
              │ always on after             │ compress tool payloads;
              │ install-hook                │ forward; CCR originals
              ▼                             ▼
       Claude · Cursor · Codex         Anthropic / OpenAI
       Copilot · Kimi · Goose          (your existing credentials)
       Jcode (ingest + MCP)
              ▲
              │
       Daemon ingests sessions ── Claude ~/.claude/projects/
                                  Kimi   ~/.kimi/sessions/
                                  Goose  ~/.local/share/goose/...
                                  Jcode  ~/.jcode/sessions/
Path Purpose Default
Hooks Shared memory recall across all agents On after memor install-hook
Proxy Recall + compress tool payloads; ledger token savings Opt-in via memor install-proxy

Memory is fire-and-forget — install hooks once, every prompt gets relevant context. Proxy is opt-in — for Claude Code, Codex, Goose, and Kimi when you want measurable token savings on top. Proxied agents skip hook inject and are served recall by the proxy instead; Cursor and Copilot always use hooks. The proxy forwards your existing Anthropic/OpenAI credentials; Memor does not require its own API key.

Both paths write to the same recall ledger, including recalls that return nothing — a retrieval that found no match is the only direct evidence that retrieval was asked a question it could not answer, so it is recorded rather than discarded.


How It Works (hooks path)

  You type a prompt
  (Claude · Cursor · Codex · Copilot · Kimi · Goose · Jcode)
      |
      v
  Hook fires — auto-detects which agent
      |
      v
  Embed query locally (model2vec, ~2ms)
      |
      v
  Hybrid retrieval: dense vectors + lexical BM25, fused (RRF)
      |
      v
  Relevance gate drops off-topic matches (inject nothing if nothing fits)
      |
      v
  Rank: similarity + recency + kind weight + quality
      |
      v
  Inject relevant context into prompt
      |
      v
  Your agent sees past decisions, bugfixes,
  architecture choices — without you re-explaining

Agent matrix

Agent Memory (hooks) Proxy / savings
Claude Code Yes Yes — memor install-proxy --agent claude
Codex CLI Yes Experimental — memor install-proxy --agent codex (Chat Completions only)
Cursor Yes BYOK proxy + Shell compress hooks
Copilot CLI Yes No — hooks only
Kimi CLI Yes Yes — memor install-proxy --agent kimi
Goose Yes Yes — memor install-proxy --agent goose (auto-detects common Desktop custom providers like custom_deepseek; use --upstream-url if yours is custom)
Jcode Ingest via hooks; recall via MCP — memor install-hook --agent jcode then memor install-mcp --agent jcode No — hooks + MCP only
Cline No Yes — memor install-proxy --agent cline
OpenCode No Yes — memor install-proxy --agent opencode

Hook install details

Agent Hook protocol Config location Install
Claude Code UserPromptSubmit + additionalContext ~/.claude/settings.json memor install-hook --agent claude
Codex CLI UserPromptSubmit + additionalContext ~/.codex/hooks/hooks.json memor install-hook --agent codex
Copilot CLI userPromptSubmitted + additionalContext ~/.copilot/hooks/memor.json memor install-hook --agent copilot
Cursor beforeSubmitPrompt + additionalContext ~/.claude/settings.json (loaded as Claude user hooks) automatic — covered by the Claude install
Kimi CLI UserPromptSubmit + plain-text context ~/.kimi/config.toml memor install-hook --agent kimi
Goose UserPromptSubmit + additionalContext ~/.agents/plugins/memor/ memor install-hook --agent goose
Jcode turn_end / session_end (ingest only — jcode hooks are observers and cannot inject) ~/.jcode/config.toml memor install-hook --agent jcode

A single memor-hook binary auto-detects which agent is calling it — no separate entry points needed. Kimi and Goose installs stamp MEMOR_HOOK_AGENT so Claude-shaped payloads stay correctly labeled. Cursor loads the same Claude user hooks, so installing for Claude Code covers Cursor too. When an agent is proxied, its hook skips inject and memory comes from the proxy path; Cursor and Copilot always inject via hooks. The dashboard tracks recalls per agent so you can see usage across all your environments.

Goose note: Memory inject needs a Goose build with advise-tier additionalContext support. DeepSeek (or any other provider) is configured inside Goose — Memor talks to Goose's hooks, not to the model provider.

Jcode note: Jcode is the one agent whose read and write paths are split, because every jcode hook except pre_tool is a detached observer: it fires and forgets, and its stdout is discarded. That makes hooks an excellent ingest trigger — turn_end carries the session id and cwd, and a slow ingest can never delay your turn — but it leaves no channel to inject memories into a prompt. Recall is therefore served by MCP, as a memor_recall tool the model calls for itself:

memor install-hook --agent jcode   # writes: jcode work becomes memory
memor install-mcp  --agent jcode   # reads: memor_recall tool

Restart jcode afterwards so it loads the MCP server. Pass project= explicitly when calling memor_recall: the MCP server's working directory is whatever launched the agent, so the default is often not the project you are in. A miss names the projects that do have memories.

Note: Cloud-hosted agents (Codex cloud, Copilot cloud agent) run in remote sandboxes and cannot reach local hooks. MCP server support for sandboxed agents is planned (#26).

Background processes (supervised by memor service install):

  1. Daemon — polls local agent session stores (Claude Code ~/.claude/projects/, Kimi ~/.kimi/sessions/, Goose ~/.local/share/goose/sessions/sessions.db), embeds chunks, runs distillation, analyzes feedback (Claude), promotes cross-project patterns to global scope, compacts duplicates, auto-compacts the vector index when bloated, tracks session-level token usage. Model providers are not ingest sources — only the agent that owns the session. All local. Use memor backfill for a one-shot ingest of past sessions.
  2. Hook — fires on every prompt, recalls relevant memories, injects them as context. Sub-15ms. Works across Claude Code, Cursor, Codex, Copilot, Kimi, and Goose.
  3. Proxy (optional) — intercepts Anthropic/OpenAI API calls on 127.0.0.1:8421, serves recall, compresses tool payloads, forwards to your provider, and writes savings and recall ledgers. Started automatically by memor install-proxy.

No Memor API key required. Embeddings and compressors run locally. The proxy forwards your existing Anthropic/OpenAI credentials — keys are never stored. Vectors stored in sqlite-vec. Everything runs on your machine.


Hybrid Retrieval

Memor retrieves over two channels and fuses them, so it catches both semantic matches and exact terms:

  • Dense — local vector similarity (model2vec) for semantic recall.
  • Lexical — SQLite FTS5 / BM25 over the raw text, to recover exact identifiers, error strings, and API names that static embeddings blur together.

The two rankings are combined with Reciprocal Rank Fusion (RRF). A relevance gate drops anti-correlated (off-topic) candidates before ranking, so an unrelated prompt injects nothing rather than the least-bad guess. The lexical channel only activates when the dense channel finds the query on-topic, preventing generic words from pulling in noise.

Tunable via MEMOR_MIN_SIMILARITY (relevance floor, default 0.0) and MEMOR_MAX_TOKENS (injection budget, default 1500).

Scoring

Surviving candidates are ranked by four signals:

Signal Weight How it works
Semantic similarity 50% Dense + lexical relevance, fused via RRF
Recency 25% Exponential decay with 14-day half-life — recent decisions rank higher
Kind weight 15% Distilled memories (1.3x) rank above raw session chunks (1.0x)
Quality 10% Bayesian score from implicit feedback, bounded to [0, 1] — memories the agent actually uses rank higher

This means a relevant decision from yesterday beats a vaguely-related chunk from a month ago — even if the raw embedding similarity is similar.

Every term is normalized to [0, 1] and the weights sum to 1.0, so no single signal can outweigh the rest. That matters more than it sounds: quality is derived from counters, and if those counters go wrong an unbounded quality term stops being a tie-breaker and silently becomes the entire ranking. Scores are clamped on write, on read, and again at the point of use, and counts that violate their own invariant — an artifact used more often than it was recalled — fall back to the neutral prior instead of producing a number from corrupt input.

Feedback Loop

Memor tracks whether recalled memories actually get used by the agent — and whether they actively hurt. After each session, the daemon analyzes the transcript in both directions:

  • Positive signal — n-gram overlap or semantic similarity between recalled content and the agent's response. Memories that consistently prove useful get quality boosts.
  • Negative signal — user rejection ("no that's wrong", "we switched to X") or assistant contradiction ("however, looking at the current code, we actually use Y"). Memories that get corrected receive a quality penalty, making them less likely to be recalled next time.

The quality formula is Bayesian: (uses - negatives + 1) / (recalls + 2), clamped to [0, 1]. One correction weighs as much as one positive use, so harmful memories drop fast. Memories never recalled in 30+ days get automatically deactivated. Near-duplicate memories are compacted into one.

Known limitation. The analyzer currently over-counts in both directions: it attributes usage by time window rather than per recall, so on a long-running session an artifact can accrue more uses than it had recalls, and one rejection phrase anywhere in a session penalizes every artifact recalled in it. Quality scores derived from such counts fall back to the neutral prior, so ranking is unaffected — but the per-memory used / rejected figures are not yet trustworthy, and the dashboard hides that table until they are.


What Gets Stored

Kind Source Description
session_chunk Daemon auto-ingest Filtered turns from Claude / Kimi / Goose sessions
memory Extractive distillation Key decisions, patterns, bugfixes per session

Memories are automatically classified as decision, bugfix, lesson, snippet, or generic extract based on content patterns. The daemon runs a signal filter that keeps decisions, bugfixes, lessons, and code rationale while skipping noise (tool calls, file listings, boilerplate).


Global Memories

Some patterns aren't project-specific — they're yours. "Always use type hints." "Structure FastAPI apps with a routes/ directory." "Prefer composition over inheritance."

Memor detects these automatically. When the same pattern appears in 3 or more projects (measured by embedding similarity), the daemon promotes it to a _global scope:

  • Global memories are recalled everywhere — they show up in every project's search results alongside project-specific memories.
  • Source duplicates are deactivated — the per-project copies get superseded by the single global version, reducing clutter.
  • No manual tagging — promotion is fully automatic, based on cross-project clustering.

This means your coding habits and preferences follow you into new projects from the first prompt, without you having to re-explain anything.


Dashboard

memor dashboard

Trading-desk style UI with an Overview plus per-agent panes (Claude, Cursor, Codex, Copilot, Kimi, Goose):

  • Overview — status chips (proxy / hook / daemon), portfolio KPIs, cumulative tokens-saved equity curve, recall activity, efficiency, projects, quality, recent recalls
  • Agent desks — click a tab (or a desk tile) for that environment’s hit rate, latency, proxy savings %, recall volume chart, savings curve, and filtered recalls
  • Proxy savings by agent — every agent routed through the proxy

Local distillation (optional, no API key)

memor can distill sessions with a small local model (offline, in-process, ingest-only — recall never uses an LLM). Enable it:

pip install "memor-cli[llm]"   # or: pip install "llama-cpp-python>=0.3.0"
export MEMOR_LLM_DISTILL=1
memor daemon

On first run it downloads ~1.1 GB (Qwen2.5-1.5B GGUF, Apache-2.0), cached thereafter. On CPUs without AVX2, or if the wheel can't build, install a prebuilt CPU wheel:

pip install llama-cpp-python --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu

If the model is unavailable, distillation falls back to extractive mode automatically.


Commands

memor help                           Print the full manual
memor install-hook                   Install hook + download model (interactive agent picker)
  --agent claude|codex|copilot|kimi|goose   Choose agent directly
memor install-proxy                  Install local proxy for token savings
  --agent claude|codex|goose|kimi|cursor|cline|opencode
memor uninstall-proxy                Restore original agent config
memor proxy                          Run proxy server in foreground (localhost:8421)
memor install-cursor-compress-hooks  Cursor Shell output compression (subscription)
memor uninstall-cursor-compress-hooks
memor daemon                         Auto-ingest + distill (Claude, Kimi, Goose)
memor backfill                       One-shot ingest of past local agent sessions
memor dashboard                      Web dashboard on localhost:8420
memor version                        Print installed version
memor service install                Run daemon + dashboard as background services (launchd/systemd)
  --no-dashboard                     Install only the daemon
memor service restart                Restart services (keeps proxy if opted in; use after `pipx upgrade`)
memor service stop                   Stop services (warns if agents still point at the proxy)
memor service uninstall              Remove services + restore proxy agent API configs
memor service status                 Show daemon + dashboard (+ proxy) status
  (dashboard port: set MEMOR_DASHBOARD_PORT, default 8420)
memor query <text>                   Search memories from the CLI
memor reingest                       Wipe DB and re-ingest everything
memor reingest --project <name>      Re-ingest only one project
memor forget-stale                   Deactivate memories unused for 30+ days
memor compact                        Rebuild vector index, reclaim wasted space
memor scan                           Audit DB for leaked secrets
memor scan --purge                   Redact secrets in place
memor setup-model                    Download/retry the embedding model
memor ingest-cc <file>               Ingest a single transcript
memor ingest-project <dir>           Bulk ingest a project directory
memor ingest-doc <file>              Ingest a markdown document
memor distill --project <name>       Run distillation manually
memor eval <cases.json>              Run eval suite
memor eval-counterfactual --project  Win/tie/loss vs no-memory baseline
memor bench-embed --project <name>   Compare embedding models

Architecture

memor/
+-- types.py / interfaces.py   Core types + Embedder/LLM/MemoryStore protocols
+-- cli.py                     Typer CLI (hooks, proxy, daemon, eval, service)
+-- daemon.py                  Multi-agent ingest + distill + compaction
+-- recall.py                  Shared recall core (hook + skill + proxy inject)
+-- service.py                 launchd/systemd: daemon + dashboard (+ proxy)
+-- redact.py / feedback.py    Secret redaction; positive/negative quality loop
+-- global_memories.py         Cross-project promotion to _global scope
|
+-- ingest/
|   +-- claude_code.py         ~/.claude/projects/ JSONL
|   +-- kimi.py                ~/.kimi/sessions/ wire.jsonl
|   +-- goose.py               Goose sessions.db
|   +-- sources.py             Registry used by daemon + backfill
|
+-- hook_cli.py / hook_server.py
|                              Hook entry + agent detect/format
|                              (Claude, Cursor, Codex, Copilot, Kimi, Goose)
|
+-- proxy/                     Opt-in token-savings path (localhost:8421)
|   +-- server.py / pipeline.py  Compress → forward → ledger
|   +-- install.py               Wire agent config + backups
|   +-- mcp_retrieve.py          memor_retrieve MCP tool
|
+-- compress/                  Structure-preserving crushers: code (AST /
|                                 tree-sitter), search, log, JSON, text
|
+-- retrieve/retriever.py      Hybrid dense + BM25 (RRF) + relevance gate
+-- store/sqlite_store.py      SQLite + sqlite-vec + FTS5 + proxy_savings
|
+-- dashboard/                 FastAPI + static UI (status, savings, agents)
+-- distill/                   Extractive default; optional local GGUF LLM
+-- embed/                     model2vec local (default) + API/fake
+-- eval/                      Counterfactual, proxy benchmark fixtures, baselines
+-- llm/                       Anthropic / OpenAI-compat / llama.cpp backends

skill/recall.py                Standalone recall script

Security

Nothing leaves your machine. In the default configuration (hooks only, no proxy):

  • No telemetry, no analytics, no phone-home. Memor itself makes zero outbound network calls.
  • Embeddings run locally via model2vec static token embeddings — no inference runtime, no GPU (one-time model download from HuggingFace — no user data sent).
  • Hook transport is a Unix socket (~/.memor/hook.sock), not a network port.
  • Dashboard binds localhost only (127.0.0.1:8420).

With the proxy enabled, Memor is on the wire. memor install-proxy puts Memor in the path of every request your agent makes to Anthropic or OpenAI:

  • The proxy binds localhost only (127.0.0.1:8421) and accepts no remote connections.
  • It makes the outbound call your agent would have made anyway, to the same provider endpoint, carrying your existing provider API key. Keys are forwarded, never stored or logged.
  • It rewrites request bodies — compressing tool payloads and appending recalled memories to the latest user message — so what the provider receives is not byte-identical to what your agent sent. Originals stay local in the CCR store.

Why no Composer interception

Memor does not MITM Cursor's subscription traffic. An earlier attempt was measured and abandoned: with a local proxy in Cursor's path covering both its Node and Chromium network stacks, only control-plane traffic (telemetry, dashboard, model lists) appeared — no conversation RPC. And the exchange that actually gets billed, Cursor's servers to the model, never touches your machine at all, so any local savings figure would be unverifiable.

Compression for Cursor therefore happens where it can be measured honestly: the Shell compress hooks crush tool output before Cursor ingests it. No CA trust, no TLS interception, nothing to break when Cursor updates.

The only other optional network paths are the LLM-based abstractive distiller (requires explicitly setting ANTHROPIC_API_KEY) and the API embedding backend — both off by default.

Secret redaction

Memor automatically redacts secrets at ingest, before anything is embedded or stored:

  • API keys (AWS AKIA..., OpenAI sk-..., Anthropic sk-ant-..., GitHub ghp_..., Stripe, Slack)
  • JWTs, PEM private key blocks
  • Connection strings (postgres://, mongodb://, redis://, etc.)
  • .env-style assignments (DB_PASSWORD=..., API_KEY=...)
  • High-entropy tokens (Shannon entropy > 4.0, length > 20)

Redacted content is replaced with [REDACTED] in place, preserving surrounding context. To audit and clean an existing database: memor scan (audit) or memor scan --purge (redact in place).

Contradiction handling

When a new memory contradicts an older one in the same project (detected via replacement cues like "switched from X to Y", "no longer", "ripped out"), the older memory is automatically deactivated. This prevents stale decisions from being recalled and misleading the agent.

Local storage

The memory database (~/.memor/memor.db) is stored as plaintext SQLite on disk. For at-rest protection, we recommend enabling OS-level full-disk encryption (FileVault on macOS, LUKS on Linux) which covers all local files with zero performance overhead.


Development

git clone https://github.com/bnimit/memor-ai.git
cd memor-ai
python3 -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"

pytest  # 445 tests

License

MIT. See LICENSE for the full text.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

memor_cli-0.12.0.tar.gz (336.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

memor_cli-0.12.0-py3-none-any.whl (237.5 kB view details)

Uploaded Python 3

File details

Details for the file memor_cli-0.12.0.tar.gz.

File metadata

  • Download URL: memor_cli-0.12.0.tar.gz
  • Upload date:
  • Size: 336.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.15

File hashes

Hashes for memor_cli-0.12.0.tar.gz
Algorithm Hash digest
SHA256 8ce074b3b5852200cbacf5619822193a343e246515b0fb7629fdfb4baa4d5468
MD5 345efa77e2dfb5bd09b9d8ea1fce2983
BLAKE2b-256 c95685225cb87c440525666aee31dea23e8b7a911ce4e6bca0bf0c80f456d4b5

See more details on using hashes here.

File details

Details for the file memor_cli-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: memor_cli-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 237.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.15

File hashes

Hashes for memor_cli-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 48290d546afa76cd728bfe15218dddc431aaf08da820ae4fd1f1c2e99f81ba7a
MD5 345e5600a98b227b942d1e5153e90d3d
BLAKE2b-256 696dc131f5af60b1ca7e68e0ef6692699f2dd938cc6cd688ff3850a0bb88ba6c

See more details on using hashes here.

Release history Release notifications | RSS feed

0.13.0

2 files

This release

0.12.0 This release

2 files

0.11.0

2 files

0.10.1

2 files

0.10.0

2 files

0.9.0

2 files

0.8.0

2 files

0.7.1

2 files

0.7.0

2 files

0.6.1

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page