Skip to content

Releases: hydro13/kanbu

v0.1.0 — OpenClaw Agent Dispatch

23 Feb 16:14

Choose a tag to compare

Highlights

  • 🤖 OpenClaw agent dispatch — dispatch tasks to AI agents from the Agent tab on every task
  • 📋 Run history with responses — every agent run logged with status, duration, and full response
  • 🔐 OAuth 2.1 for MCP Server — secure OAuth flow for MCP client authorization
  • 🛠️ MCP Services admin page — manage OAuth applications and tokens
  • 📄 MIT license — free to use, fork, and build on
  • 🧠 Knowledge graph graceful degradation — graph features show a clear 'not available' state when Graphiti is not running
  • 🐳 One-command full install — new docker-compose.full.yml spins up the complete stack including knowledge graph

OpenClaw setup

Add to apps/api/.env:

OPENCLAW_GATEWAY_URL=http://127.0.0.1:18789
OPENCLAW_GATEWAY_TOKEN=your-token-here

Then restart the API. The Agent tab will appear on every task.

Self-hosting

Basic install (no knowledge graph):

git clone https://github.com/hydro13/kanbu.git
cd kanbu/docker
cp .env.example .env
# Edit .env — change passwords and JWT_SECRET
docker compose -f docker-compose.selfhosted.yml up -d

Full install (with knowledge graph — requires OpenAI API key):

git clone https://github.com/hydro13/kanbu.git
cd kanbu/docker
cp .env.example .env
# Edit .env — add OPENAI_API_KEY + change passwords
docker compose -f docker-compose.full.yml up -d

See CHANGELOG.md and README.md for full details.

v0.1.0-beta.4 - Complete Backup System

18 Jan 22:48

Choose a tag to compare

Highlights

  • 🔐 Backup Encryption — AES-256-GCM encryption at rest
  • Backup Verification — SHA-256 checksum integrity verification
  • 📋 Backup Self-Service — list, download, delete via UI
  • Backup Automation — scheduling, retention policies, restore wizard
  • 🛠️ Pre-commit Hooks — Husky + lint-staged
  • 📄 License changed to MIT — use it, fork it, build on it

Note: This release was originally published under AGPL-3.0. The license was changed to MIT after this release. All versions from this point forward are MIT.

See CHANGELOG.md for full details.

Coming next (on develop): OpenClaw agent dispatch — dispatch tasks to AI agents directly from the task view.

v0.1.0-beta.3 - Production-Ready Docker Deployment

17 Jan 13:14

Choose a tag to compare

Highlights

  • 🚀 Production-Ready Docker Deployment - Fully working self-hosted deployment
  • 🔐 Bootstrap Admin - First user automatically becomes Domain Admin
  • 🛡️ Registration Control - Disable self-registration via system settings

What's New

Bootstrap Admin Setup

First-time installation now works out of the box:

  • First registered user automatically gets ADMIN role
  • domain-admins group created with full system access (ACL 31)
  • First user added to domain-admins group
  • No manual database setup required

Registration Control

  • security.registration_enabled setting now enforced by API
  • When disabled: "Self-registration is disabled. Please contact an administrator for an invite."
  • First user registration always allowed (bootstrap)

Project Wiki Pages UI

  • New UI for project-level wiki pages

Docker Deployment (Complete Overhaul)

Production deployment now fully functional:

API Container:

  • esbuild for optimized production builds
  • Automatic database migrations on startup
  • Proper pnpm workspace structure preservation
  • Correct Prisma client version (6.x)

Web Container:

  • nginx reverse proxy for /trpc, /socket.io, /health
  • SPA routing with fallback to index.html
  • Gzip compression and security headers

Coolify PaaS Support:

  • Internal networking (expose vs ports)
  • Named volumes for data persistence
  • Health checks for all services

Bug Fixes

  • TypeScript build errors resolved
  • Removed non-existent dependencies from lockfile
  • Unix line endings for shell scripts (Alpine compatibility)
  • Prisma version mismatch in production containers

Technical Stats

  • 20 commits since beta.2
  • Self-hosted requirements: ~1GB RAM, supports ~15 concurrent users

Upgrade Notes

No breaking changes. Existing databases will continue to work.
New installations will automatically set up the admin user on first registration.

Full Changelog: v0.1.0-beta.2...v0.1.0-beta.3

v0.1.0-beta.2 - Wiki MCP Tools & Editor Styling

16 Jan 19:15

Choose a tag to compare

Kanbu v0.1.0-beta.2

Release Date: 2026-01-16


Highlights

  • 18 new Wiki MCP Tools for Claude Code integration
  • Editor CSS improvements - more compact tables and code blocks
  • Bug fixes - React key warnings resolved

New Features

Wiki MCP Tools (Phase 17)

Complete wiki management via Claude Code MCP integration.

Project Wiki Tools (9)

Tool Description
kanbu_list_project_wiki_pages List wiki pages in project
kanbu_get_project_wiki_page Get page details
kanbu_get_project_wiki_page_by_slug Get page by slug/permalink
kanbu_create_project_wiki_page Create new page
kanbu_update_project_wiki_page Update existing page
kanbu_delete_project_wiki_page Delete page
kanbu_get_project_wiki_versions Get version history
kanbu_get_project_wiki_version Get specific version
kanbu_restore_project_wiki_version Restore old version

Workspace Wiki Tools (9)

Same 9 tools for workspace-level wikis.

Wiki Features

  • Version control: Up to 20 versions per page
  • Hierarchical structure: Parent/child page relationships
  • Status management: Draft, Published, Archived
  • Slug permalinks: Human-readable URLs
  • Graphiti integration: AI entity extraction for knowledge graph
  • Cross-references: [[wiki links]], @mentions, #task-refs, #tags

Editor CSS Improvements

Tables

  • Padding: 12px/16px → 4px/8px (more compact)
  • Borders: Better visibility with foreground/0.2
  • Headers: Thicker bottom border (2px) for visual separation

Code Blocks

  • Padding: 16px → 8px/12px (50% reduction)
  • Line-height: 1.6 → 1.5
  • Border-radius: smaller for compact look

Bug Fixes

  • BacklinksPanel.tsx: Fixed duplicate React key warning
  • RichTextEditor.tsx: Added initialMarkdown prop for wiki pages
  • WikiPageView.tsx: Integrated markdown initialization

Technical Stats

  • New files: 2 (wiki.ts, wiki.test.ts)
  • Lines added: ~2000
  • Unit tests: 71 new tests for wiki tools
  • Total MCP tools: 93+

Upgrade Notes

No breaking changes. Wiki tools are available immediately after update.

Full Changelog: v0.1.0-beta.1...v0.1.0-beta.2

Kanbu v0.1.0-beta.1 - First Public Beta

16 Jan 06:45
02eaae8

Choose a tag to compare

Pre-release

🎉 Kanbu v0.1.0-beta.1 - First Public Beta

This is a BETA release. Kanbu is actively under development. Please report issues and provide feedback!

✨ Features

Project Management

  • Kanban boards with drag-and-drop task management
    • Multiple views: Board, List, Calendar, Timeline
    • Sprints & Milestones with burndown charts
    • Real-time collaboration with live sync
      Security (NTFS-Style ACL)
  • Granular permissions: Read, Write, Execute, Delete, Permissions (RWXDP)
    • Permission inheritance: Workspace → Project → Task
    • Deny-first logic with security groups
    • Complete audit logs
      AI Integration
  • 131 MCP tools for Claude Code integration
    • Permission inheritance for Claude Code
    • One-time secure pairing flow
    • Multi-language support
      GitHub Integration
  • Bi-directional issue & PR sync
    • GitHub App with webhook support
    • Auto-link commits to tasks
      Knowledge Wiki
  • Rich editor with knowledge graph
    • Semantic search and temporal queries
    • AI-powered Q&A over documentation

🐛 Known Limitations (Beta)

  • Single-instance deployment only (multi-instance coming soon)
    • Some edge cases in permission calculations
    • Discord integration not yet implemented
    • Advanced reporting features in progress

🚀 Getting Started

git clone https://github.com/hydro13/kanbu.git
cd kanbu
pnpm install
cd packages/shared && pnpm db:push && cd ../..
pnpm dev

Or with Docker:

cd docker
cp .env.example .env
# CHANGE PASSWORDS!
docker compose -f docker-compose.selfhosted.yml up -d

📚 Documentation

  • README - Project overview
    • CONTRIBUTING - How to contribute
    • SECURITY - Security policy

💬 Feedback & Support

⚖️ License

Licensed under AGPL-3.0 - See LICENSE file for details.

Thank you for testing Kanbu! Your feedback helps us improve. 🙏