Skip to main content

SigmaShake

Governance rules for AI agents — connect in 2 minutes.

SigmaShake evaluates AI agent tool calls against declarative rules at the tool-call boundary. Every Bash command, file write, network request, or agent spawn is checked before it executes — in under 2ms.


The fastest path

If you use Claude Code, Cursor, Windsurf, or Antigravity:

  1. Subscribe at sigmashake.com/pricing.
  2. Install the CLI (see Getting Started for your platform).
  3. Run:
ssg auth login
ssg init --client=claude-code

Restart your AI client, then say:

"Set up SigmaShake governance for my project"

Your agent detects your stack, installs matching rules from the Hub, and returns a health report. Done.

Full quickstart guide

On Windows? See the Windows install guide for the PowerShell installer. If you'd rather skip the terminal entirely, install SigmaShake Desktop — a tray-icon desktop app that sets everything up for you.


What SigmaShake does

When an AI agent calls a tool, SigmaShake intercepts and returns one of:

DecisionMeaning
ALLOWLet it through
DENYBlock it with an explanation
LOGAllow but record for audit
ASKPause and require human approval
FORCERefuse the risky original and return a safe substitute or required safer path
SHADOWAllow silently, log for monitoring

Without governance

Agent: git push --force origin main → 💥 history rewritten
Agent: cat .env → 🔓 secrets exposed
Agent: rm -rf node_modules/.. → 🗑️ wrong directory deleted
Agent: npm publish → 📦 unreviewed release shipped

With SigmaShake

Agent: git push --force origin main → FORCE: "Use --force-with-lease"
Agent: cat .env → BLOCK: "Secret file access blocked"
Agent: rm -rf node_modules/.. → BLOCK: "Destructive command blocked"
Agent: npm publish → ASK: Waits for your approval

Key properties

PropertyValue
Evaluation latencysub-2 ms
DependenciesZero (standalone binary)
Transportstdio (MCP), stdin/stdout (hooks)
Rule formatDeclarative DSL, hot-reloaded
AuditEvery eval logged locally
HubCommunity rulesets for TypeScript, React, Go, Docker, and more

Components

ComponentPurposeWhere
ssg CLIRule evaluation, Hub, linting, dashboardLocal binary
MCP ServerAI agent integration (4 core tools; more via --tools flag)ssg mcp-server
DashboardReal-time approvals, audit loglocalhost:5599
Rules HubVerified community rulesetshub.sigmashake.com
FleetOrg-wide agent governancefleet.sigmashake.com
AccountsPlans, login, licenseaccounts.sigmashake.com

Next steps