security-sandbox

Installation
SKILL.md

Security Sandbox

Provides defense-in-depth security for autonomous coding operations through command validation, allowlists, and execution hooks.

Quick Start

Validate a Command

from scripts.command_validator import validate_command

result = validate_command("npm install express")
if result.allowed:
    # Safe to execute
    pass
else:
    print(f"Blocked: {result.reason}")
Installs
21
GitHub Stars
11
First Seen
Jan 24, 2026
security-sandbox — adaptationio/skrillz