SLB — Simultaneous Launch Button

SkillCloud & infra

Simultaneous Launch Button - Two-person rule for destructive commands. Use when coordinating dangerous operations between agents, requiring peer review for rm -rf, git push --force, kubectl delete, DROP TABLE, or terraform destroy.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the SLB — Simultaneous Launch Button skill

What this skill tells your AI

The instructions your AI receives, as published by dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations in skills/slb/SKILL.md and read by ahel’s review.

Core Capability: Two-person rule for running potentially destructive commands from AI coding agents. When an agent wants to run something risky, SLB requires peer review and explicit approval before execution.

Why This Exists

Coding agents can get tunnel vision, hallucinate, or misunderstand context. A second reviewer (ideally with a different model/tooling) catches mistakes before they become irreversible.

Critical: Commands run in YOUR shell environment, not on a server. The daemon is a NOTARY (verifies approvals), not an executor.


Quick Start

# Install
curl -fsSL https://raw.githubusercontent.com/Dicklesworthstone/slb/main/scripts/install.sh | bash

# Initialize project
cd /path/to/project
slb init

# Start session
slb session start --agent "GreenLake" --program "claude-code" --model "opus"

THE EXACT PROMPT — Basic Workflow

# 1. Run a dangerous command (blocks until approved)
slb run "rm -rf ./build" --reason "Clean build artifacts" --session-id <id>

# 2. Another agent reviews and approves
slb pending                    # See what's waiting
slb review <request-id>        # View full details
slb approve <request-id> --session-id <reviewer-id> --comment "Looks safe"

# 3. Original command executes automatically after approval

Risk Tiers

TierApprovalsAuto-approveExamples
CRITICAL2+Neverrm -rf /, DROP DATABASE, terraform destroy, git push --force
DANGEROUS1Neverrm -rf ./build, git reset --hard, kubectl delete, DROP TABLE
CAUTION0After 30srm file.txt, git branch -d, npm uninstall
SAFE0Immediatelyrm *.log, git stash, kubectl delete pod

Essential Commands

CategoryCommandDescription
Sessionslb session start --agent <name>Start agent session
Sessionslb session listShow active sessions
Requestslb run "<cmd>" --reason "..."Run dangerous command
Reviewslb pendingList pending requests
Reviewslb approve <id> --session-id <id>Approve request
Reviewslb reject <id> --reason "..."Reject request
Hookslb hook installInstall Claude Code hook
Patternslb patterns test "<cmd>"Check command tier

Claude Code Hook

# Install hook
slb hook install

# Hook actions:
# - allow: Command proceeds (SAFE tier)
# - ask: User prompted (CAUTION tier)
# - block: Blocked, must use `slb request` (DANGEROUS/CRITICAL tier)

Execution Verification (5 Gates)

GateCheck
1. StatusRequest must be APPROVED
2. ExpiryApproval TTL must not have elapsed
3. HashSHA-256 hash must match (tamper detection)
4. TierRisk tier must still match
5. First-ExecutorAtomic claim prevents race conditions

Emergency Override

For true emergencies, humans can bypass with extensive logging:

slb emergency-execute "rm -rf /tmp/broken" --reason "System emergency"

References

TopicReference
Full command referenceCOMMANDS.md
Pattern matching & tiersPATTERNS.md
ConfigurationCONFIG.md
Security designSECURITY.md

Signals

GitHub stars
73
Forks
16
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
slb
Source
github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations