SIDJUA V1.0: Self-Hosted Governance Platform for AI Agents

SIDJUA V1.0 is a self-hosted governance platform for AI agents that runs on Docker containers, including on Raspberry Pi hardware. The tool is AGPL-3.0 licensed and has no cloud dependencies.
Quick Start
For Mac and Linux: docker pull ghcr.io/goetzkohlberg/sidjua
For Windows with Docker Desktop and WSL2: There's a known issue where the security profile file isn't found correctly. To work around this, open docker-compose.yml and comment out the two lines under security_opt:
security_opt:
# - "seccomp=seccomp-profile.json"
# - "no-new-privileges:true"Then run docker compose up -d. This disables some container hardening but is acceptable for home use. A proper fix is scheduled for V1.0.1 on March 31.
Key Features
- Mandatory governance checkpoints: Every agent task must pass rules before execution
- Encrypted API keys and secrets: AES-256-GCM with argon2-hashing, per-agent encryption
- Network isolation: Outbound validator blocks access to private IP ranges
- Default-deny security: Agent modules without sandboxes get denied, not warned
- State backup and restore: Single API call, rate-limited and auto-pruned
- Server-side LLM credential injection: OpenAI, Anthropic, etc. credentials never touch browser/client
- Granular budget limits: Per-agent and per-division cost controls
- Division isolation: Unknown or unauthorized divisions get rejected at system entry
- Runtime reorganization: Reassign roles and move agents between divisions without restart
Version Roadmap
- V1.0.1 (March 31): Fixes Windows Docker issue and adds 25 security hardening tasks from triple audit
- V1.0.2 (April 10): Adds random master key generation, inter-process authentication, and module secrets migration from plaintext to encrypted store
All fixes in V1.0.1 were cross-validated by three independent AI code auditors: xAI Grok, OpenAI GPT-5.4, and DeepSeek.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Mneme: A PreToolUse Hook That Blocks Claude Code Edits Violating Architecture Decisions
Mneme is a PreToolUse hook for Claude Code that checks every Edit/Write/MultiEdit against a local decisions file before disk writes, blocking violations without manual intervention.

Claude Code Production Grade Plugin v3.0 Released: Autonomous Software Development Pipeline
Production Grade Plugin v3.0 for Claude Code is now available as free, open-source software under MIT license. The plugin creates a full development pipeline from requirements to deployment with 13 AI skills acting as an engineering team.

Open Source Dashboard Reveals Actual Claude Code Compute Costs
A developer reverse-engineered Claude Code's rate limit formula to build a local dashboard that shows real-time usage percentage, actual dollar costs, burn rate, peak hours, and which skills/hooks are firing. The tool revealed a $100/month plan consumed $13,286 in equivalent API compute in one month.

Claude Code v2.1.144: Background Sessions, /model Scoping, and 15s Startup Timeout
Claude Code v2.1.144 adds /resume for background sessions, scopes /model to current session only, and fixes a 75s startup hang when api.anthropic.com is unreachable with a 15s timeout.