SIDJUA v0.9.7: Open Source Multi-Agent AI with Pre-Action Governance Enforcement

What SIDJUA Does
SIDJUA is an open source multi-agent AI framework focused on governance enforcement. Unlike frameworks that only log actions after they happen, SIDJUA validates every agent action before execution through a 5-step enforcement pipeline. This prevents damage from actions like data leaks or budget overruns by blocking them at the source.
Key Features from v0.9.7
- Governance Enforcement: Blocks agent actions that violate defined rules before execution. Examples include overspending budgets, accessing resources outside assigned division scope, or attempting actions without proper logging.
- Multi-LLM Support: Works with Anthropic, OpenAI, Google, Groq, DeepSeek, Ollama, or any OpenAI-compatible provider. You can switch providers per agent or per task.
- Self-Hosted & Offline Capable: Runs on your hardware, requires only 4GB RAM, is air-gap capable, and can work fully offline with local models.
- Multi-LLM Validation: Built for using LLMs as teams that validate each other's results. The developer mentions using Gemini and DeepSeek to audit code generated by Opus and Sonnet models.
- Notification System: Supports Telegram bot, Discord webhooks, email, and custom hooks. Notifications trigger when agents need attention or budgets run low.
- Desktop GUI: Built with Tauri v2, providing native apps for macOS, Windows, and Linux. Includes dashboard, governance viewer, and cost tracking. Ships with v1.0 (coming end of March/early April).
- Migration Tool: Import command for migrating agents from OpenClaw or Moltbot. One command applies governance automatically (beta feature).
Getting Started
Quick setup takes about 2 minutes:
git clone https://github.com/GoetzKohlberg/sidjua.git
cd sidjua && docker compose up -d
docker exec -it sidjua sidjua init
docker exec -it sidjua sidjua chat guideThe guide agent works without API keys using Cloudflare Workers AI free tier. Add your own keys for full multi-agent setup.
Project Details
- License: AGPL-3.0
- Development: Solo founder with 35 years IT background, based in the Philippines
- Status: Beta software (v0.9.7), v1.0 targeted for end of March/early April
- Community: Discord available for bug reports and questions
📖 Read the full source: r/clawdbot
👀 See Also

Open-Foundry: A Framework for Multi-Agent Debates with Claude Code
Open-foundry is a Python framework that assembles multiple Claude Code agents into a panel to debate complex questions, producing fully inspectable reasoning trails with transcripts, orchestrator logs, and per-agent working notes.

Open-Source JARVIS Desktop Assistant Built with Claude Code in 2 Days
A developer built a macOS desktop AI assistant called JARVIS in 1-2 days using Claude Code as the primary development tool. The application features a holographic UI, 18 native tools for system control, voice interface, and integrations with Gmail, Google Calendar, Notion, GitHub, and Obsidian.

cc-session-utils: TUI Dashboard for Managing Claude Code Sessions and Costs
A developer built cc-session-utils, a terminal UI tool for managing Claude Code session files, tracking costs by model, cleaning orphaned sessions, and migrating data between projects. It requires Python 3.11+ and is built with Textual.

AgentMind: A Claude Code Plugin That Learns and Applies Your Coding Preferences
AgentMind is a Claude Code plugin that observes your coding patterns, learns preferences like tool choices and style rules, and automatically injects that context into future sessions. It uses a six-step core loop and confidence scoring to determine when to apply learned preferences.