TigrimOS v1.1.0 and Tiger CoWork v0.5.0 released with remote agent swarms and configurable governance

TigrimOS v1.1.0 and Tiger CoWork v0.5.0 released today bring remote agent swarm communication and configurable governance protocols to the open-source multi-agent platform.
Two Editions for Different Environments
TigrimOS v1.1.0 is a standalone app for Mac and Windows with a built-in Ubuntu sandbox that requires no Docker or cloud dependencies. Tiger CoWork v0.5.0 is Linux-native with the same feature set but designed to run directly on servers without VM overhead.
Remote Agent Swarm Communication
The headline feature enables swarm-to-swarm communication across networks. Each TigrimOS instance runs its own internal agent swarm, and in v1.1.0, these swarms can communicate with each other. The orchestrator reads the persona and responsibility of each remote node, picks the right swarm for the job, and delegates the entire task. Agents on different physical machines communicate as if they're on the same box.
This allows users to attach cloud GPU nodes for heavy inference, database servers for large-scale retrieval, while keeping a laptop as coordinator, addressing the constraint of running VMs on limited desktop hardware.
Configurable Governance Protocols
Five governance topologies are available, configurable per session:
- Star/Hub: Single orchestrator with agents executing tasks. Deterministic with no negotiation. Good for well-scoped tasks requiring predictable output.
- Blackboard: Orchestrator posts tasks, agents bid based on skill and availability. Classic distributed auction system. Good for mixed-specialty teams.
- Pipeline: Sequential handoff between agents (A finishes, passes to B). Good for structured workflows like research → draft → review → deliver.
- Mesh: Fully decentralized with any agent delegating to any other directly. No central authority. Good for open-ended research or creative tasks benefiting from multiple perspectives.
- Bus: Broadcast to all agents simultaneously, with whoever can handle it picking it up. Good for parallelizable workloads.
Additional Features
- Each agent can use a different LLM backend (Claude Code, Codex, GLM, Minimax, local Ollama, etc.)
- Sandbox isolation by default — agents cannot touch the host filesystem unless folders are explicitly mounted
- Long-running sessions with checkpoint recovery and context compression
- MCP server integration for external tooling
- Minecraft-style task monitor showing live agent activity with inter-agent interactions for debugging multi-agent flows
Upgrading from v1.0.0 requires no VM rebuild — SSH in and run a few commands.
📖 Read the full source: r/openclaw
👀 See Also

GitHub Comic Bot: Turn Commits into Daily Medieval Knight Comics
A bot that reads GitHub commits and generates 4-panel comic strips featuring a deadpan medieval knight, built with Claude Code and Gemini, running on GitHub Actions with free tier costs.

MCP Server for Semantic Search in Obsidian Vaults
A developer built an MCP server that indexes Obsidian vaults into Qdrant with local embeddings, enabling semantic search instead of keyword matching. It chunks markdown by headings, uses BAAI/bge-small-en-v1.5 embeddings, and works with Claude Code, Cursor, Windsurf, or any MCP client.

Cognitive Science Technique Boosts LLM Creativity: /reframe Slash Command for Claude Code
A Reddit user developed a /reframe slash command for Claude Code that implements a cognitive science technique called distance-engagement oscillation, which improved creative problem-solving by 40% in tests across three open-weight LLMs.

Shield: Open-Source Security Plugin for Claude Code with Unified Scanning
Shield is an open-source security plugin for Claude Code that orchestrates multiple security tools from a single /shield:shield command, auto-detects your stack, runs installed tools, and generates unified reports with risk scores and code fix suggestions.