Automation

Enterprise Bridge

Enterprise readiness for OpenClaw: audit logging + RBAC + SSO bridge. Make your agent deployment compliance-ready.

Buy Now — $4.99

One-time purchase · Instant download · Yours forever

Enterprise Bridge

Enterprise readiness for OpenClaw: audit logging + RBAC + SSO bridge. Make your agent deployment compliance-ready.

Quick Start


# Initialize enterprise features (creates config + audit log)
python3 scripts/enterprise-bridge.py init

# Enable audit logging (logs all agent actions)
python3 scripts/enterprise-bridge.py audit start

# View recent audit entries
python3 scripts/enterprise-bridge.py audit view --last 50

# Search audit log
python3 scripts/enterprise-bridge.py audit search --actor "iceman" --action "file_write"

# Export audit log (JSON, CSV, or SIEM-compatible format)
python3 scripts/enterprise-bridge.py audit export --format json --output audit-export.json

# RBAC: Create a role
python3 scripts/enterprise-bridge.py rbac create-role --name "developer" --permissions "read,write,execute"

# RBAC: Assign role to agent
python3 scripts/enterprise-bridge.py rbac assign --agent "iceman" --role "developer"

# RBAC: Check permission
python3 scripts/enterprise-bridge.py rbac check --agent "iceman" --action "file_write" --resource "/workspace/skills/"

# RBAC: List all roles and assignments
python3 scripts/enterprise-bridge.py rbac list

# SSO: Generate SAML/OIDC config template
python3 scripts/enterprise-bridge.py sso template --provider okta

# Compliance: Generate SOC 2 readiness report
python3 scripts/enterprise-bridge.py compliance report

Audit Logging

Every agent action is logged with:

Audit log stored at ~/.openclaw/enterprise/audit.jsonl

Log Format


{
  "ts": "2026-04-06T05:00:00Z",
  "actor": "iceman",
  "action": "file_write",
  "resource": "/workspace/skills/new-skill/SKILL.md",
  "result": "success",
  "session_id": "abc123",
  "metadata": {"bytes_written": 4096, "duration_ms": 12}
}

Retention & Rotation

RBAC (Role-Based Access Control)

Built-in Roles

| Role | Permissions | Use Case |

|------|------------|----------|

| admin | * (all) | Full access — workspace owner |

| developer | read, write, execute, git | Build and test skills |

| analyst | read, search, export | Read-only analysis |

| operator | read, execute, deploy | Run but not modify |

| auditor | audit_read, export | Compliance review only |

Permission Types

Resource Scoping

Permissions can be scoped to specific paths:


{
  "role": "developer",
  "permissions": ["read", "write", "execute"],
  "scope": ["/workspace/skills/*", "/workspace/memory/*"]
}

SSO Integration

Generate config templates for enterprise identity providers:

Templates include callback URLs, entity IDs, and attribute mappings.

Compliance Report

Generates a readiness assessment covering:

Ready to get started?

One-time purchase. No subscription. Download instantly and use forever.

Buy Now — $4.99
Category: Automation Price: $4.99 USD Released: 2026-05-13 Skill ID: enterprise-bridge