freshcrate
Skin:/
Home > AI Agents > kdcube-ai-app

kdcube-ai-app

Ship customer-facing AI with isolation, spend controls, and provenance.

Why this rank:Recent releaseHealthy release cadenceStrong adoption

Description

Ship customer-facing AI with isolation, spend controls, and provenance.

README

KDCube — Agentic AI Platform & SDK

KDCube is a self‑hosted multi‑tenant, multi‑user platform + SDK for building custom AI assistants, copilots, and agentic apps.

Run a copilot for your customers, not just for yourself — use the built‑in ReAct workflow or bring your own.

KDCube provides the runtime, streaming protocol, tools, memory, and operations stack so you can ship AI products with production‑grade reliability. cubes.png

Highlights

  • Full stack: from streaming protocols to tool execution, memory, economics, and ops.
  • Agent‑first: a ready‑made, versatile ReAct‑style agent that can be extended or replaced.
  • No tool‑calling lock‑in: the agent runs on plain prompt/completion while fully emulating tool‑calling (and more).
  • Built for real apps: multi‑tenant isolation, backpressure, rate limits, and observability.
  • Channeled streaming + live widgets: animate UX with streaming channels and custom widgets.
  • Provenance by default: source pools and citations to prove how answers were built.
  • Feedback‑aware: user feedback is captured and can be fed back into workflows.

Quickstart

Install the bootstrap CLI and launch the setup wizard:

pipx install kdcube-cli
kdcube-setup

Alternative (pip):

pip install -kdcube-cli
kdcube-setup

Prerequisites: Python 3.9+, Git, and Docker (Docker Desktop on macOS/Windows).

Docs:


Out of the Box

Runtime & streaming

  • Streaming chat over SSE / REST / Socket.IO with step/delta/status events
  • Fine‑grained streaming channels (answer, reasoning, artifacts, subsystem payloads)
  • Session‑aware relay + fan‑out for multiple tabs/clients

Agent capabilities

  • Versatile ReAct‑style solver (planning, tool‑first/code‑first flows)
  • Skills + tools (local + MCP) with easy custom wiring
  • Built‑in web search and citations pipeline

Execution & artifacts

  • Isolated code execution (Docker + Fargate)
  • Attachments + generated artifacts with storage + indexing
  • Antivirus scanning for uploads
  • Dynamic widgets (interactive timeline banners + live content: web search/fetch, exec panels, bundle‑driven panels)

Memory & context

  • Turn/context memories, conversation memories, retrieval
  • Source pools per conversation (Perplexity‑style traceability)
  • Structured sources + citations (with in‑stream rendering)

Operations & safety

  • Multi‑tenant / multi‑project isolation
  • Gateway: auth, rate limits, backpressure, circuit breakers
  • Economics & accounting (usage, budgets, rate limits)
  • Monitoring + metrics service for autoscaling
  • Feedback system (user feedback signals integrated into workflow)
  • Role‑based event filtering (stream only what each role is allowed to see)
  • Dynamic bundle UIs (React interfaces exposed by bundles, authorization‑guarded)

Platform Components

SDK (build your AI app)

  • Agent runtime: ReAct v2 + planning and tool/code orchestration
  • Streaming protocol: step/delta/status + widget channels
  • Tools & skills: MCP + custom tools
  • Context & memory: turn memories, signals, retrieval
  • Execution runtime: isolated code execution
  • Bundle API: wrap workflows into deployable bundles

Platform (host & scale)

  • Ingress service: SSE/REST/Socket.IO + gateway checks
  • Processor service: queue‑driven execution of bundles
  • Metrics service: aggregated stats for autoscaling & ops
  • Storage: Postgres + Redis + object store integration

ReAct v2 — Timeline‑First Agent (KDCube Signature)

KDCube’s ReAct v2 agent is timeline‑first: every turn event is captured as structured blocks onto turn timeline that become the source of truth for memory, artifacts, and future reasoning.
Turn timeline evolves into a running conversation timeline. This is not a thin wrapper around tool calls — it’s a full stateful operating layer.

Highlights

  • Timeline as ground truth: user prompts, tool calls/results, artifacts, and decisions are stored as blocks.
  • Rendering: timeline can be rendered differently to an agent based on filters / cache TTL / compaction state.
  • Compaction + cache checkpoints: stable prefixes + safe tail edits at scale.
  • Source pools + citations: Perplexity‑style traceability with stable source IDs.
  • Artifact paths & rehydration: fi:/ar:/so:/tc: logical paths + rehosting on demand.
  • Tool‑aware UX: widgets stream into timeline banners (web search, fetch, exec, panels).
  • ReAct tools: react.read, react.write, react.hide, react.memsearch, react.patch to recover or reshape context.
  • Turn snapshots & versioning: each turn persists a timeline snapshot + data snapshot; edits produce a new version in the current turn namespace, making state recoverable and replayable.

The timeline is temporal and single‑source‑of‑truth:

  • It powers UI reconstruction (user messages, attachments, artifacts created, sources used, canvas streams, thinking blocks).
  • It powers agent context rendering (the model sees the same ordered timeline, filtered by policy).
  • The agent can reshape the tail (e.g., hide large blocks) to keep context clean and efficient.
  • Cache‑aware visibility: cache TTL is tracked so older context can be briefly surfaced (not compacted away) with re‑read paths for recovery.
  • Announce system: ephemeral signals to the agent (recent pruning, active plans, important memories, current sources pool).

Timeline sketch (schematic):

graph LR
  H[History blocks] --> CP1[CP prev]
  CP1 --> C[Current turn blocks]
  C --> CP2["CP pre‑tail"]
  CP2 --> CP3[CP tail]
  CP3 --> SP[Sources pool]
  SP --> A[Announce]

  R["react.read(fi:/ar:/so:/tc:)"] -.-> H
  HIDE["react.hide(path)"] -.-> CP3
Loading

At a glance (timeline‑first loop):

graph LR
  U[User + Attachments] --> TL[Timeline Blocks]
  T[Tools / Exec] --> TL
  TL --> SP[Sources Pool]
  TL --> R[Render + Cache/Compaction]
  R --> D[ReAct Decision]
  D --> T
  TL --> UI[Timeline UI / Widgets]
Loading

System at a Glance

graph TD
  UI[Web UI / Client] -->|HTTPS| NGINX[Web Proxy]
  AUTH[Delegated Auth / SSO] -->|token exchange| NGINX

  NGINX -->|SSE/REST| INGRESS[Chat Ingress]
  INGRESS -->|enqueue| Q[Redis Queues]
  Q --> PROC[Chat Processor]

  PROC --> BUNDLES[Bundles / Workflows]
  BUNDLES -->|events| RELAY[ChatRelay + Redis PubSub]
  RELAY -->|fan-out| INGRESS

  BUNDLES --> CTX[Context & Memory]
  CTX --> PG[(Postgres)]
  CTX --> S3[(Object Storage)]

  PROC --> EXEC[Isolated Exec]
  PROC --> TOOLS[External Tools/APIs]

  INGRESS --> METRICS[Metrics Service]
  PROC --> METRICS

  classDef infra fill:#f7f2ff,stroke:#b69ad6,color:#2b1b4f;
  classDef aws fill:#e8f4ff,stroke:#7aa7d6,color:#0b2b4f;

  class INGRESS,PROC,RELAY,METRICS infra;
  class PG,S3 aws;
Loading

Status & Roadmap (near‑term)

  • ECS deployment with proper autoscaling (in progress)
  • Copilot‑style workspace UX (new timeline/announce events/workspace organization)
  • Modeling external processes and ontologies with tools/skills/runtime and ReAct

Planned deployment options (next steps):

  • AWS ECS/Fargate (first‑class)
  • Kubernetes (EKS / GKE / AKS) Docker Compose is already supported for local and small‑scale (with EC2) setups.

Documentation

Highlights (what’s uniquely strong here)

  • ReAct v2 + Timeline UX: app/ai-app/docs/sdk/agents/react/turn-data-README.md
  • Streaming protocol & SSE events: app/ai-app/docs/clients/sse-events-README.md
  • Bundles (multi‑workflow hosting on shared capacity): app/ai-app/docs/sdk/bundle/bundle-README.md
  • Economics & accounting: app/ai-app/docs/sdk/infra/economics
  • Monitoring & autoscaling metrics: app/ai-app/docs/service/README-monitoring-observability.md

Core Docs

  • Architecture (short): app/ai-app/docs/arch/architecture-short.md
  • Gateway config & ops: app/ai-app/docs/service/gateway-README.md
  • SDK index: app/ai-app/docs/sdk

Deep Dives (platform‑defining)

  • Smart timeline + compaction: app/ai-app/docs/sdk/agents/react/turn-data-README.md
  • Tooling + isolated runtime (tools inside code): app/ai-app/docs/sdk/runtime
  • Attachments, artifacts, and traceability: app/ai-app/docs/sdk

Community

We’re actively looking for collaborators and early adopters. If you’re building AI assistants or copilots and want to ship fast with control over runtime, tooling, and costs—KDCube is for you.

Project site: https://kdcube.tech/

Release History

VersionChangesUrgencyDate
2026.6.6.342## What's Changed * Release/2026.6.6.342 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/145 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.6.5.342...2026.6.6.342High6/6/2026
2026.5.29.1534## What's Changed * Fix/telemetry record only types by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/140 * release: 2026.5.29.1534 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/141 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.5.28.210...2026.5.29.1534High5/29/2026
2026.5.24.420## What's Changed * Release/2026.5.24.420 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/132 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.5.23.1825...2026.5.24.420High5/24/2026
2026.5.19.350## What's Changed * Release/2026.5.19.350 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/122 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.5.18.0344...2026.5.19.350High5/19/2026
2026.5.13.117## What's Changed * Release/2026.5.13.117 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/109 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.5.11.2125...2026.5.13.117High5/13/2026
2026.5.7.150## What's Changed * [CLI]: init, bundle command, docs by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/100 * release: 2026.5.7.150 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/104 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.5.4.1846...2026.5.7.150High5/7/2026
2026.5.4.1846## What's Changed * release: 2026.5.4.1846 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/102 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.30.317...2026.5.4.1846High5/4/2026
2026.4.28.2229## What's Changed * [CLI]: Subcommands, deployment guard, operator defaults by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/96 * Fix chat timeline event ordering by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/97 * release: 2026.4.28.2229 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/98 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.23.17...2026.4.28.2229High4/28/2026
2026.4.23.17## What's Changed * release: 2026.4.23.17 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/94 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.22.1914...2026.4.23.17High4/22/2026
2026.4.21.1656## What's Changed * release: 2026.4.21.1656 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/89 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.21.644...2026.4.21.1656High4/21/2026
2026.4.17.247## What's Changed * Feature/logger collector backend by @Evgen-2005-20 in https://github.com/kdcube/kdcube-ai-app/pull/75 * release: 2026.4.17.247 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/85 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.13.205...2026.4.17.247High4/17/2026
2026.4.12.500## What's Changed * Release/2026.4.12.500 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/82 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.12.318...2026.4.12.500High4/12/2026
2026.4.12.318## What's Changed * release: 2026.4.12.318 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/81 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.11.1358...2026.4.12.318Medium4/12/2026
2026.4.11.1358## What's Changed * Release/2026.4.11.1358 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/80 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.11.012...2026.4.11.1358High4/11/2026
2026.4.10.153## What's Changed * Release/2026.4.07.101 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/71 * Bundle roles and schema by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/74 * Evgen/logger collector frontend by @Evgen-2005-20 in https://github.com/kdcube/kdcube-ai-app/pull/73 * release: 2026.4.10.153 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/77 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.07.101...2026.4.10.153Medium4/10/2026
2026.4.07.101## What's Changed * release: 2026.4.07.101 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/70 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.07.059...2026.4.07.101Medium4/6/2026
2026.4.06.2358## What's Changed * Bundle descriptor extension by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/66 * Bundles decorator and public endpoint by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/68 * release: 2026.4.06.2358 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/69 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.04.318...2026.4.06.2358Medium4/6/2026
2026.4.04.318## What's Changed * Release/2026.4.04.318 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/67 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.02.357...2026.4.04.318Medium4/4/2026
2026.4.02.357## What's Changed * release: 2026.4.02.357 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/65 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.4.02.313...2026.4.02.357Medium4/2/2026
2026.3.01.259## What's Changed * release: 2026.3.01.259 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/63 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.31.2236...2026.3.01.259Medium4/1/2026
2026.3.31.203## What's Changed * Release/2026.3.31.203 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/60 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.31.158...2026.3.31.203Medium3/31/2026
2026.3.27.2050## What's Changed * Normalize repo source handling in CLI descriptors by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/54 * Excel export fix by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/52 * release: 2026.3.27.2050 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/56 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.26.1101...2026.3.27.2050Medium3/27/2026
2026.3.26.1101## What's Changed * release: 2026.3.26.1101 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/53 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.25.1215...2026.3.26.1101Medium3/26/2026
2026.3.25.1215## What's Changed * Eco/ux by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/47 * refresh button by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/50 * release: 2026.3.25.1215 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/51 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.22.013...2026.3.25.1215Medium3/25/2026
2026.3.22.013## What's Changed * release: 2026.3.22.013 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/49 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.21.410...2026.3.22.013Low3/21/2026
2026.3.21.410## What's Changed * release: 2026.3.21.410 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/48 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.19.1347...2026.3.21.410Low3/21/2026
2026.3.19.1347## What's Changed * Improve ECS exec diagnostics and timeout reporting by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/45 * release: 2026.3.19.1347 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/46 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.19.311...2026.3.19.1347Low3/19/2026
2026.3.19.311## What's Changed * release: 2026.3.19.311 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/44 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.18.414...2026.3.19.311Low3/19/2026
2026.3.18.414## What's Changed * Evgen/comments by @Evgen-2005-20 in https://github.com/kdcube/kdcube-ai-app/pull/19 * Unify exec runtime profiles and harden isolated execution delivery by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/41 * Economics, email configs and fixes by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/40 * release: 2026.3.17.1155 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/42 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/comparLow3/18/2026
2026.3.17.1155## What's Changed * release: 2026.3.17.1155 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/39 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.17.110...2026.3.17.1155Low3/17/2026
2026.3.17.110## What's Changed * release: 2026.3.17.110 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/38 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.16.2245...2026.3.17.110Low3/16/2026
2026.3.16.2245## What's Changed * release: 2026.3.16.2245 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/37 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.16.2104...2026.3.16.2245Low3/16/2026
2026.3.16.2104## What's Changed * release: 2026.3.16.2104 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/36 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.16.1519...2026.3.16.2104Low3/16/2026
2026.3.16.1519## What's Changed * Add OpenRouter integration with accounting support by @navado in https://github.com/kdcube/kdcube-ai-app/pull/20 * Economics and Stripe integration by @Yarik514 in https://github.com/kdcube/kdcube-ai-app/pull/27 * add properties and secrets link to bundle doc index by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/34 * release: 2026.3.16.1519 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/35 ## New Contributors * @navado made their first contribuLow3/16/2026
2026.3.16.1240## What's Changed * Release/2026.3.16.1240 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/33 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.16.127...2026.3.16.1240Low3/16/2026
2026.3.16.127## What's Changed * release: 2026.3.16.127 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/32 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.16.107...2026.3.16.127Low3/15/2026
2026.3.16.107## What's Changed * release: 2026.3.16.107 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/31 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.15.2147...2026.3.16.107Low3/15/2026
2026.3.15.2147## What's Changed * Release/2026.3.15.2147 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/30 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.15.435...2026.3.15.2147Low3/15/2026
2026.3.15.435## What's Changed * release: 2026.3.15.435. fix: add verify-images job to catch silentl… by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/28 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.14.348...2026.3.15.435Low3/15/2026
2026.3.13.210## What's Changed * release: 2026.3.13.210 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/24 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.12.2356...2026.3.13.210Low3/13/2026
2026.3.12.2356## What's Changed * release: 2026.3.12.2356 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/23 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.12.039...2026.3.12.2356Low3/12/2026
2026.3.11.453## What's Changed * release: 2026.3.11.453 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/18 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.10.209...2026.3.11.453Low3/11/2026
2026.3.10.209## What's Changed * Adding comments for a better user experience by @Evgen-2005-20 in https://github.com/kdcube/kdcube-ai-app/pull/2 * release: 2026.3.10.209 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/17 ## New Contributors * @Evgen-2005-20 made their first contribution in https://github.com/kdcube/kdcube-ai-app/pull/2 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.9.115...2026.3.10.209Low3/10/2026
2026.3.9.115## What's Changed * - document KDCUBE_STORAGE_PATH layout, conversation store split, ex… by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/15 * release: 2026.3.9.115 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/16 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.8.440...2026.3.9.115Low3/8/2026
2026.3.8.440## What's Changed * ci: fix heredoc output handling by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/13 * release: 2026.3.8.440 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/14 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.8.427...2026.3.8.440Low3/8/2026
2026.3.8.351## What's Changed * release: 2026.3.8.351 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/11 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.7.326...2026.3.8.351Low3/8/2026
2026.3.7.326## What's Changed * Release/2026.3.6.2011 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/9 * release: 2026.3.7.326 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/10 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.6.2011...2026.3.7.326Low3/7/2026
2026.3.6.2011## What's Changed * release: 2026.3.6.2011 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/8 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.6.1513...2026.3.6.2011Low3/6/2026
2026.3.6.1513## What's Changed * release: 2026.3.6.1513 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/7 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.6.314...2026.3.6.1513Low3/6/2026
2026.3.6.314## What's Changed * ci: fix CLI version injection from env by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/5 * release: 2026.3.6.314 by @elenaviter in https://github.com/kdcube/kdcube-ai-app/pull/6 **Full Changelog**: https://github.com/kdcube/kdcube-ai-app/compare/2026.3.6.1245...2026.3.6.314Low3/6/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

kaggle-capstone-ai-agent🧠 Build a safe and supportive AI companion for mental health with SereneShield, part of the Kaggle × Google Agents Intensive 2025 Capstone project.main@2026-06-05
adk-pythonAn open-source, code-first Python toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.v2.2.0
agent-osAutonomous multi-agent system that turns tasks into code, PRs, and self-healing workflowsmain@2026-05-15
RAG🧠 Build an offline RAG chatbot to answer questions from PDFs, adapting responses based on user experience levels with a smooth chat interface.main@2026-06-06
deer-flowAn open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles different levels of tamain@2026-06-06

More in AI Agents

hermes-agentThe agent that grows with you
awesome-copilotCommunity-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.
CopilotKitThe Frontend Stack for Agents & Generative UI. React + Angular. Makers of the AG-UI Protocol
e2bE2B SDK that give agents cloud environments