Skip to content

Releases: cloudclaw-dev/cloudclaw

v1.0.1

23 May 08:55

Choose a tag to compare

[1.0.1] - 2026-05-23

Added

  • Multi-Agent Workflow β€” 5 orchestration modes for multi-agent collaboration:
    • Pipeline: sequential step execution with output chaining
    • Parallel: simultaneous execution with merge strategies (concat / LLM summarize)
    • Router: LLM-based intent classification routes to best-matching sub-agent
    • Supervisor: iterative planner/reviewer delegates tasks to specialist sub-agents
    • Handoff: conversation transfer between agents with independent context
  • Workflow execution UI β€” real-time status panel showing pipeline steps, parallel node progress, router decisions, supervisor delegation, and handoff targets
  • System info API β€” /api/admin/stats/info returns version and active Spring profile
  • Version & mode display β€” Logo bar shows current version and run mode (standalone / cluster)
  • Frontend performance optimization:
    • highlight.js reduced from 100+ languages to 12 commonly used (93% smaller)
    • manualChunks splits vendor libs (element-plus, vue, markdown-it) into independent cacheable chunks
    • Tomcat gzip compression enabled for JS/CSS/JSON responses
    • Main index chunk: 1,094 KB β†’ 32 KB (-97%)

Fixed

  • RouterConfig JSON deserialization failure β€” added missing @JsonProperty("allow_fallback") annotation, which caused router-mode agents to fall back to simple chat
  • Workflow panel not rendering during streaming β€” parent v-if condition now includes || workflowState so panel appears before text content arrives
  • Session content leaking when switching agents/sessions β€” all streaming state cleared immediately on switch
  • Supervisor mode SocketTimeoutException β€” LLM read timeout increased from 60s to 300s
  • Prompt logging for multi-agent sub-nodes β€” all 5 executors now log system/user prompts with {agentId}/{nodeName} context
  • Agent assistant-role messages excluded from prompt logs
  • Sidebar menu icon duplicates resolved β€” each menu item now has a unique icon
  • System monitor missing nav.session i18n key β€” added to both zh/en locales
  • Unique credential constraint handling on repeated seed script runs

Changed

  • Version upgraded from 1.0.1-SNAPSHOT to 1.0.1 release

v1.0.0

21 May 08:34

Choose a tag to compare

CloudClaw v1.0.0 β€” First Stable Release

CloudClaw is an open-source enterprise-grade AI Agent platform built on Spring AI, providing comprehensive Agent management capabilities.

Core Features

  • Multi-Agent Management β€” Independent configs, independent context, flexible orchestration
  • MCP Gateway β€” Connection pooling, tool routing, protocol translation
  • Skill System β€” Progressive disclosure (metadata β†’ instructions β†’ files)
  • Memory Service β€” Pluggable engines (JDBC / Mem0)
  • Session Management β€” Persistence, context caching, message history
  • Sandbox β€” Python/JS/Shell/Java code execution (Local / Docker / E2E backends)
  • LLM Multi-Provider Management β€” Multiple providers, credential encryption, usage statistics
  • JWT Authentication β€” Admin/User role separation (RBAC)
  • Dual UI β€” Vue 3 admin dashboard + chat interface (Element Plus)
  • Streaming Chat β€” SSE streaming with async polling fallback

Deployment Modes

Mode Storage MQ Use Case
Standalone SQLite In-memory Development, personal use
Cluster PostgreSQL Redis Production, horizontal scaling

Tech Stack

Java 17 Β· Spring Boot 3.4.5 Β· Spring AI 1.1.5 Β· Vue 3 Β· Element Plus Β· PostgreSQL / SQLite Β· Redis Β· Docker

Downloads

File Description
cloudclaw-1.0.0-release.zip Binary release (JAR, configs, startup scripts)
cloudclaw-1.0.0-source.tar.gz Source archive

Quick Start

# Extract
unzip cloudclaw-1.0.0-release.zip

# Start (Standalone mode, zero dependencies)
chmod +x start.sh stop.sh
./start.sh

# Visit http://localhost:8080
# Default admin: admin / admin123

Requirements

  • Java 17+
  • (Cluster mode) PostgreSQL 16+, Redis 7+