Skip to main content

Kumiho Memory

📄 Paper: Graph-Native Cognitive Memory for AI Agents — formal belief-revision semantics for versioned memory (arXiv:2603.17244)


Client-side memory provider for AI agents — working memory, consolidation, and belief revision on the Kumiho Cognitive Memory graph


Status

Privacy invariant: every write path — session mining, commit mining, skill ingestion — and every LLM-bound packet passes the same per-atom PII/credential boundary. Credential-bearing atoms are dropped, never stored.

Stable (1.x) Follows semantic versioning — the documented public API is stable and breaking changes bump the major version. Latest release: 1.5.0 (2026-09-10) — Revision-aware insight and experience learning: bounded host synthesis, explicit experience/outcome tracking, qualified recall, and retryable belief replacement with resumable grounding invalidation. See RELEASE_NOTES.md for the full history.


What this package is

kumiho-memory is a client-side memory provider: it buffers working memory in Redis, consolidates conversations into the Kumiho Cognitive Memory graph, and layers belief-revision policy (evidence grading, corroboration, deployment-controlled deprecation) on top — all without requiring changes to the Kumiho server.

It is designed to be:

  • Lightweight
  • Model-agnostic
  • Framework-agnostic
  • Safe to use in local or sandboxed environments

What this package is NOT

kumiho-memory is a client of the Kumiho graph, not the graph itself:

  • ❌ It does not implement the graph store, hybrid search, or edge storage — that's the Kumiho server (kumiho-server), reached through the core kumiho SDK.
  • ❌ It does not run its own consolidation server — DreamState and SpaceProfiler are library/CLI/MCP-invoked passes over the graph, not a standing service.

Within those bounds, this package does implement working-memory buffering, LLM-based consolidation, offline consolidation (Dream State), graph-augmented recall, and evidence-aware belief revision — all client-side, no server changes required.


Features

  • Working memory — Redis-backed session buffering (RedisMemoryBuffer), proxy/auth-resilient.
  • Consolidation — LLM summarization + PII redaction into versioned graph revisions (UniversalMemoryManager.consolidate_session).
  • Dream State — offline consolidation pass: relevance assessment, deprecation (capped, published-protected), tag/metadata enrichment, relationship discovery. Accepts deployment policy via extra_instructions.
  • Write-time ontology (0.10, on by default) — every consolidation is decomposed into a typed knowledge graph (entities / facts / decisions / events / actions / questions) with deterministic edges; recall consumes the structure via an entity-bridge join and a fact-recall leg, both strictly additive (structural evidence never displaces conversation evidence). Opt out with KUMIHO_MEMORY_ONTOLOGY=0.
  • Decision Memory (0.11, opt-in) — a second, code-domain profile: mine git commits into decision nodes with rationale, verbatim evidence atoms, and {repo, commit, file, line} anchors, then ask why("why is this file like this?", file=...) mid-session. See the section below.
  • Graph-augmented recall — multi-query reformulation + edge traversal + semantic fallback (GraphAugmentedRecall).
  • Sibling revision filtering — BM25-light or embedding-based filtering of stacked-item history.
  • Auto-assessment — background write-time screening (create_llm_assessor) with a heuristic pre-filter and graph novelty check before any LLM call.
  • Level-of-Evidence belief revision — memories carry an evidence grade (official / corroborated / single_source / unverified); a corroboration-aware assessor grades claims automatically, recall reranks and badges by grade, and Dream State respects grade-aware deployment policy. See below for details.
  • Space profiles — per-Space churn/evidence/stability signals classify each Space (canonical / working / correspondence) so extraction strategy can adapt per collection.
  • Skill ingest — parse and version SKILL.md files and reference docs into the graph (kumiho-memory ingest-skill).
  • MCP tools — 20 tools with default ontology enabled (24 with Decision Memory enabled), auto-discovered by the core kumiho MCP server (see table below).

Belief-grounded insight (available in 1.5.0)

For a question involving earlier decisions, request a bounded insight brief on that turn's first engage call:

{
  "query": "Should we revisit the deployment choice given our new constraints?",
  "limit": 5,
  "recall_mode": "summarized",
  "include_insights": true
}

The additional insight_brief gives the answering agent source-backed review prompts for changed premises, stored conflicts and prior decisions. It includes revision references, bounded evidence snippets and questions to check before applying a past belief. These are hypothesis prompts, not verified insights or accepted decisions. An answer can still be direct when no connection helps.

The flag adds no retrieval, model call or memory write. Existing recall settings still apply; context and default behavior are unchanged. Missing related sources stay explicitly missing, and no hypothesis is automatically persisted. Set the flag on the first recall: engage's existing duplicate guard still applies. Python callers with already-retrieved, authorized results can use from kumiho_memory.insight import build_insight_brief directly.

The same call also returns synthesis_request: bounded source summaries, current context/goals, and a JSON answer contract for the host model. Use kumiho_memory_validate_insight_response to check structure and citation membership; semantic correctness still needs review. No additional provider API is required. Include the flag on the first engage call because dedup is shared.

For learning across decisions, explicitly record record_experience and separate record_outcome observations. The keyless Dream State workflow is prepare_patterns -> host proposal -> store_pattern -> check_pattern before reuse (all tool names carry the kumiho_memory_ prefix). Proposals retain sources, conditions and counterexamples; changed premises trigger a stale review result. No automatic publishing or belief promotion occurs. Add include_learned_sources: true alongside include_insights: true to discover those separately stored experiences/patterns for the current answer; this adds bounded searches and current-source checks. See the workflow and limits, real-memory pilot, and second-paper research outline.

See the development plan for the current contract, answer-quality evaluation, outcome tracking and Dream State follow-up phases.


Typical use cases

  • Production memory backend for AI agents and MCP-compatible runtimes
  • Multi-agent and collaborative AI systems that need shared, versioned long-term memory
  • Applications that must weigh conflicting information by source credibility (news, claims, multi-source corroboration)

Installation

pip install kumiho-memory

Minimal example

from kumiho_memory import RedisMemoryBuffer

memory = RedisMemoryBuffer()

memory.add_message(
    project="example",
    session_id="demo-session",
    role="user",
    content="Hello!"
)

This example demonstrates temporary, short-term buffering only. It does not represent long-term memory persistence.


Architectural note

kumiho-memory is one component within a larger, model-agnostic memory architecture. Persistent storage, hybrid search, and edge/relationship storage live in the Kumiho server (kumiho-server), reached through the core kumiho SDK — this package never talks to the server directly.

Working-memory buffering, consolidation, offline lifecycle management (Dream State, SpaceProfiler), and belief-revision policy are all implemented client-side, in this package, calling the server only through the standard SDK operations (create/read revisions, tags, metadata, edges). No server changes are required for any feature in this package, including the Level-of-Evidence subsystem below.


Evidence levels

Memories can carry an evidence grade describing how trustworthy they are. The grade is stored in two mirrored places:

carrier key / format why
revision metadata evidence_level (+ optional source, confidence) canonical value, machine-readable
graph tag evidence:<level> tags get server-side time-range history → point-in-time audits

When the carriers diverge (tag application is best-effort per-tag), the metadata value winsparse_evidence(meta, tags) implements this.

Levels (most → least trustworthy):

level meaning
official explicit operator/ingest flag — never LLM-inferred; SHOULD be paired with the published tag so Dream State's deprecation protection applies
corroborated ≥ N independent agreeing sources, none contradicting
single_source identified source, no corroboration
unverified everything else

Promotion / demotion state machine:

  • unverified → single_source — first stored occurrence with an identified source
  • single_source → corroborated — an assessor finds ≥ N independent agreeing memories, none contradicting
  • * → official — only via explicit flag (evidence_level="official" on ingest/consolidate/CLI), never LLM-inferred
  • demotion — only via Dream State policy or explicit API, never silently at write time

Usage:

from kumiho_memory import UniversalMemoryManager, evidence_tag, parse_evidence

manager = UniversalMemoryManager()

# Grade at ingest time — stashed in session metadata, applied at consolidation
await manager.ingest_message(
    user_id="u1",
    message="Acme announced record earnings.",
    evidence_level="official",
    source="press-release:acme",
)

# ...or explicitly at consolidation (overrides the ingest-time grade)
await manager.consolidate_session(
    session_id=session_id,
    evidence_level="corroborated",
    source="news:reuters",
)

# Recall results expose the grade when present
results = await manager.recall_memories("acme earnings")
results[0].get("evidence_level")  # "official"

CLI: kumiho-memory ingest-skill doc.md --evidence-level official

Grades are only stamped when provided — memories stored without an evidence level keep their existing metadata and tag set unchanged, and parse_evidence returns None for them (callers may treat that as unverified via DEFAULT_EVIDENCE_LEVEL).

Evidence assessor (automatic grading)

create_evidence_assessor plugs into the write-time screening seat (UniversalMemoryManager(auto_assess_fn=...)) and grades incoming claims automatically:

rule condition outcome
official pinning claim contradicts a memory tagged evidence:official stored unverified, conflict recorded in conflicts_with; the pinned belief is never revised
corroboration ≥ N agreeing memories with distinct sources, none contradicting corroborated, memory_type forced to fact, optional SUPPORTS edges to corroborators
single source claim has an identified source, no corroboration single_source
default unverified

The assessor never emits official — that grade stays operator-only. Corroboration counting needs source metadata on the recalled memories, so it only fires once sources are being written (see the schema section).

The bare published tag deliberately does not trigger pinning by default — this codebase stamps published on virtually every stored revision as its currency tag. Deployments that use published as a curated marker can opt in: EvidencePolicy(official_tags=frozenset({"evidence:official", "published"})).

from kumiho_memory import EvidencePolicy, create_evidence_assessor

assessor = create_evidence_assessor(
    adapter,
    policy=EvidencePolicy(min_corroboration=2, create_supports_edges=True),
)
manager = UniversalMemoryManager(auto_assess_fn=assessor)

MCP env wiring: KUMIHO_EVIDENCE_ASSESSOR=1 (takes precedence over KUMIHO_AUTO_ASSESS when both are set), KUMIHO_EVIDENCE_MIN_CORROBORATION (default 2), KUMIHO_EVIDENCE_SUPPORTS_EDGES=1 for evidence-chain edges. SUPPORTS edges are followed by graph-augmented recall (included in the default GraphAugmentationConfig.edge_types).

Dream State deployment policy

Dream State's assessment prompt accepts deployment-specific policy via extra_instructions — appended under a fenced ## DEPLOYMENT POLICY section. Three injection routes (precedence: explicit arg > env var; pass "" to explicitly disable the env policy):

DreamState(extra_instructions="Never propose deprecation for memories "
                              "tagged evidence:official. Prefer deprecating "
                              "unverified duplicates over corroborated ones.")
kumiho-memory dream --policy "Never propose deprecation for memories tagged evidence:official."
export KUMIHO_DREAM_EXTRA_INSTRUCTIONS="..."   # fallback when no arg given

The MCP tool kumiho_memory_dream_state accepts the same text via its extra_instructions argument. Each memory in the assessment payload carries its evidence_level and policy-relevant revision_tags (published, evidence:*) so the policy has data to act on.

Hard guardrails are not overridable by policy — they apply in code after the LLM's suggestions: the max_deprecation_ratio cap, published-revision protection (allow_published_deprecation=False), and the conservative-KEEP rule (the core prompt states it takes precedence over deployment policy). Run results and the Markdown report record the active policy text for auditability.

Evidence-weighted recall (reranking + badges)

Server-side hybrid search ranks by relevance only — a rumor can outrank an official statement. kumiho-memory adjusts scores client-side with a deterministic delta per grade (no extra LLM calls, O(k)):

grade default delta
official +0.15
corroborated +0.08
single_source 0.0
unverified −0.10

Before/after example — query returns rumor (0.60, unverified) and statement (0.50, official): unweighted order is rumor, statement; weighted order is statement (0.65), rumor (0.50).

Applied in both plain recall and graph-augmented recall (before each result cap, idempotently — the original score is kept in the documented base_score result field). Default ON, with a strict no-op guarantee: when no retrieved memory carries a grade, results are byte-identical to previous behavior. Kill switch: KUMIHO_EVIDENCE_RERANK=0. Library use: UniversalMemoryManager(evidence_rank=EvidenceRankConfig(...)).

Context badgesbuild_recalled_context (used by kumiho_memory_engage) prefixes graded memories so the answering model can weigh sources: [official] Acme Q2: record earnings..., [unverified] Forum post: .... single_source/ungraded memories get no badge. kumiho_memory_recall returns raw dicts — there the grade surfaces as the evidence_level field instead of a text badge.

Note: min_score filtering (KUMIHO_MEMORY_MIN_RELEVANCE_SCORE) applies to the adjusted score — an unverified memory sitting just above the threshold can drop below it. That is the intended screening behavior; use the base_score result field if you need the raw retrieval score.

Space profiles (per-collection extraction strategy)

A collection's observed dynamics are a signal about what kind of knowledge lives in it. SpaceProfiler aggregates per-Space statistics from existing SDK queries (pure aggregation, no LLM):

signal source
churn revisions per item, revision rate in the window (latest tag-move proxy), SUPERSEDES chain depth
evidence histogram evidence_level metadata per revision
deprecation ratio deprecated flags on items/revisions
stability published share, median revision age

…and classifies each Space:

label meaning thresholds
canonical established concepts stability ≥ 0.6, churn ≤ 0.4, and evidence ≥ 0.3 when any revision carries a grade (ungraded corpora are not penalized)
correspondence claims / requests / responses churn ≥ 0.6 and stability ≤ 0.4
working active projects/notes everything else

Stability and evidence describe the live (non-deprecated) revisions only; churn counts historical stacking. Empty spaces are not classified or persisted — "no data" is not a label.

The profile persists as a kind="space-profile" Item — one per Space, one revision per run, with SUPERSEDES edges linking runs so profile drift is itself a versioned chain. A Space owner pins the label with the space_class Space attribute; the profiler then never relabels, and instead reports pin/observation disagreement as drift (the observed label is persisted alongside the pin as observed_label).

kumiho-memory profile --dry-run          # classify without persisting
kumiho-memory profile --window-days 14

MCP tool: kumiho_memory_space_profile. Read side for strategy consumers (assessor / Dream State policy / recall):

from kumiho_memory import get_space_profile

profile = get_space_profile("CognitiveMemory", "/CognitiveMemory/news")
if profile and profile.label == "correspondence":
    # e.g. store claims as events, never promote to fact
    ...

The extraction rule this enables: in correspondence spaces, claims are events, not facts — store them attributed ("X claimed Y on DATE") and raise corroboration thresholds, instead of promoting them into the belief set. (Consumption hooks land with the assessor/Dream State/recall pieces of the epic; the profiler + get_space_profile are the foundation.)

Note: true latest tag-move counting is not possible client-side (the SDK exposes point-in-time tag resolution, not tag-move events) — revision-creation frequency is the documented proxy, valid because latest moves on every create_revision.


Decision Memory — the why-layer for a codebase (0.11, opt-in)

git is a lossless graph of what/when/who; it cannot hold the why. Decision Memory mines commits into typed decision nodes (title, decision, rationale, the why-question they answer), verbatim evidence atoms (measurements, review findings — quoted, never paraphrased), and git anchors. Code is never copied: anchors are {repo, commit_hash, file, line_range} pointers, and node identity is sha-free (title + author-date), so rebases and squashes converge instead of duplicating — the memory does not rot as history rewrites.

export KUMIHO_MEMORY_DECISIONS=1      # opt-in gate (default off; legacy KUMIHO_MEMORY_CODE still honored)
kumiho-memory code-ingest . --range HEAD~30..HEAD   # idempotent; re-runs cost zero LLM calls
result = await manager.code_why(
    "why is rerank_async a single-worker executor?",
    file="kumiho_memory/recall_rerank.py", line=420,
)
# → decisions with rationale + evidence chains + superseded_by status,
#   plus an inject-ready markdown context block

Key properties:

  • Three query legs, lexicographic fusion — a deterministic anchor leg (file → decisions, zero search), a semantic leg, and an evidence-bridge leg. Anchor facts always outrank cross-encoder probabilities.
  • Belief revision — a reversed decision is linked with SUPERSEDES, demoted in ranking, and always carries superseded_by; an agent never receives a reversed decision as the answer without seeing its replacement.
  • Physical isolation — code nodes live in a dedicated {project}-decisions kumiho project; conversation recall is untouched by construction (and by test).
  • Design doc: docs/DECISION_MEMORY_DESIGN.md. Live-verified on this repo's own history: "why is the executor single-worker?" answers with the actual offload commit and its concurrency measurement as evidence.

MCP Tools

20 tools with default ontology enabled (24 with KUMIHO_MEMORY_DECISIONS=1), auto-discovered by the core kumiho MCP server:

Tool Description
kumiho_chat_add Add message to Redis working memory
kumiho_chat_get Retrieve session messages
kumiho_chat_clear Clear session working memory
kumiho_memory_ingest Buffer message + recall context
kumiho_memory_add_response Add assistant response to buffer
kumiho_memory_consolidate Summarize, redact, store to graph
kumiho_memory_recall Semantic search with dedup guard
kumiho_memory_discover_edges Link new memory to related memories
kumiho_memory_store_execution Store tool/command results
kumiho_memory_engage Recall + build context in one call
kumiho_memory_reflect Buffer response + store captures
kumiho_memory_dream_state Run Dream State consolidation cycle
kumiho_memory_space_profile Profile each Space's knowledge dynamics
kumiho_memory_decompose Decompose a memory into typed graph records
kumiho_memory_record_experience Record a decision, expectations, and source lineage
kumiho_memory_record_outcome Append an observed outcome separately from acceptance
kumiho_memory_prepare_patterns Prepare bounded experience evidence for host review
kumiho_memory_store_pattern Store an unverified pattern candidate
kumiho_memory_check_pattern Recheck a candidate against current source markers
kumiho_memory_validate_insight_response Validate answer structure and reference membership
kumiho_code_why (opt-in) Why is this code the way it is? — anchored decisions + evidence
kumiho_code_ingest (opt-in) Mine a git commit range into decision nodes (idempotent)
kumiho_code_capture (opt-in) Record explicit code decisions and evidence
kumiho_code_mine_session (opt-in) Extract decisions from a session transcript

Modules

Module Public API
memory_manager UniversalMemoryManager, AutoAssessFn, MemoryAssessResult, get_memory_space
redis_memory RedisMemoryBuffer
summarization MemorySummarizer, LLMAdapter, EmbeddingAdapter, OpenAICompatAdapter, OpenAICompatEmbeddingAdapter, AnthropicAdapter
privacy PIIRedactor, CredentialDetectedError
retry RetryQueue
dream_state DreamState, MemoryAssessment, DreamStateStats
graph_augmentation GraphAugmentedRecall, GraphAugmentationConfig
assessors create_llm_assessor, create_evidence_assessor, EvidencePolicy, grade_evidence, heuristic_prefilter, DEFAULT_STORAGE_POLICY
evidence evidence_tag, parse_evidence, OFFICIAL, CORROBORATED, SINGLE_SOURCE, UNVERIFIED, EVIDENCE_LEVELS, DEFAULT_EVIDENCE_LEVEL
evidence_rank apply_evidence_weights, evidence_badge, EvidenceRankConfig
space_profiler SpaceProfiler, SpaceProfile, SpaceSignals, get_space_profile, SPACE_CLASSES
skill_ingest ingest_skill, ingest_file, ingest_batch, parse_skill
ontology write-time typed decomposition (facts/entities/decisions/events)
relations deterministic edge derivation (ABOUT, DEPENDS_ON, SUPERSEDES)
entity_promotion EntityPromotionConfig — entity anchor hubs
context_compose compose_context, collect_top_revisions, DEFAULT_CONTEXT_TOP_K
recall_rerank RerankConfig, rerank, rerank_async, two_pass_rerank
code_decisions Decision Memory schema: CodeMemoryConfig, slugs, anchors
code_capture ingest_repo, IngestStats — git commit mining
code_query why, compose_why_context — the 3-leg why engine
mcp_tools MEMORY_TOOLS, MEMORY_TOOL_HANDLERS

Roadmap

  • 0.5.x — Graph-augmented recall, sibling filtering, recall dedup
  • 0.6.x — Level-of-Evidence belief revision
  • 0.9.x — Cognitive-recall pipeline consolidated into the SDK
  • 0.10.x — Write-time ontology on by default (typed knowledge graph)
  • 0.11.x — Decision Memory: git-anchored code-decision domain (current)
  • next — Decision Memory Phase 2: agent-session mining, conversation↔code bridges, editor-hook auto-capture (see issue #43 / kumiho-plugins#10)
  • 1.0.0 — Stabilized public API, production-ready client SDK

The scope of this package will remain limited to client-side concerns — no kumiho-server changes are required by anything on this roadmap.


Research

kumiho-memory is the client-side implementation of the memory architecture formalized in:

Graph-Native Cognitive Memory for AI Agents: Formal Belief Revision Semantics for Versioned Memory Architectures — Kumiho Inc. arXiv:2603.17244 (2026), cs.AI. https://arxiv.org/abs/2603.17244

The paper proves a correspondence between the AGM belief-revision framework and the operational semantics of a property-graph memory system — satisfying the basic AGM postulates (K*2–K*6) and Hansson's belief-base postulates (Relevance, Core-Retainment). That is the formal grounding for the consolidation and belief-revision behavior this package exposes on the Kumiho Cognitive Memory graph.

If you use kumiho-memory in academic work, please cite:

@misc{kumiho2026graphnative,
  title         = {Graph-Native Cognitive Memory for AI Agents: Formal Belief Revision Semantics for Versioned Memory Architectures},
  author        = {{Kumiho Inc.}},
  year          = {2026},
  eprint        = {2603.17244},
  archivePrefix = {arXiv},
  primaryClass  = {cs.AI},
  doi           = {10.48550/arXiv.2603.17244},
  url           = {https://arxiv.org/abs/2603.17244}
}

Acknowledgments

  • Hugh Kim (author of memory-bank) — for the independent full-module deep-dive review of v0.18.0 (2026-07-17): it cross-validated this package's measurement discipline from the outside, sharpened the read-path roadmap, and drove the security & reliability workstream (#99–#109). The best kind of peer review — adversarial in method, generous in intent.

License

MIT

Download files

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

Source Distribution

kumiho_memory-1.5.0.tar.gz (667.2 kB view details)

Uploaded Source

Built Distribution

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

kumiho_memory-1.5.0-py3-none-any.whl (408.0 kB view details)

Uploaded Python 3

File details

Details for the file kumiho_memory-1.5.0.tar.gz.

File metadata

  • Download URL: kumiho_memory-1.5.0.tar.gz
  • Upload date:
  • Size: 667.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for kumiho_memory-1.5.0.tar.gz
Algorithm Hash digest
SHA256 11f67c2be643735907e42f3153381b0cc5eb39bd15200821b42c84b57d96e020
MD5 5627f8a52da33360d999dbff0d6cd06e
BLAKE2b-256 d60df724450b965fa8940e9f2ef4fbb005ec8dcb57060f0924f85158700a9d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for kumiho_memory-1.5.0.tar.gz:

Publisher: publish.yml on KumihoIO/kumiho-memory

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file kumiho_memory-1.5.0-py3-none-any.whl.

File metadata

  • Download URL: kumiho_memory-1.5.0-py3-none-any.whl
  • Upload date:
  • Size: 408.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for kumiho_memory-1.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 568dac142b90018ca26684de3fb8d62437b66e38748147fd31c1a43bba8c8547
MD5 58608bd524d3008b1a70716ce14ad243
BLAKE2b-256 1f82dcd98dbe5d021d909cdbf9fe4e0d6ba99da5d1be8e9a135801fa2e9af37a

See more details on using hashes here.

Provenance

The following attestation bundles were made for kumiho_memory-1.5.0-py3-none-any.whl:

Publisher: publish.yml on KumihoIO/kumiho-memory

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.5.0 This release

2 files

1.4.1

2 files

1.4.0

2 files

1.3.1

2 files

1.3.0

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

0.20.0

2 files

0.19.0

2 files

0.18.0

2 files

0.17.4

2 files

0.17.3

2 files

0.17.2

2 files

0.17.1

2 files

0.17.0

2 files

0.16.3

2 files

0.16.2

2 files

0.16.1

2 files

0.16.0

2 files

0.15.0

2 files

0.14.1

2 files

0.14.0

2 files

0.13.0

2 files

0.12.1

2 files

0.12.0

2 files

0.11.0

2 files

0.10.1

2 files

0.10.0

2 files

0.9.0

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.28

2 files

0.3.27

2 files

0.3.26

2 files

0.3.25

2 files

0.3.24

2 files

0.3.23

2 files

0.3.22

2 files

0.3.21

2 files

0.3.20

2 files

0.3.19

2 files

0.3.18

2 files

0.3.17

2 files

0.3.16

2 files

0.3.15

2 files

0.3.14

2 files

0.3.13

2 files

0.3.11

2 files

0.3.10

2 files

0.3.9

2 files

0.3.8

2 files

0.3.7

2 files

0.3.6

2 files

0.3.5

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.2

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