Skip to main content

Dangeresque

Host-native CLI orchestrator for Claude Code / Codex. Dispatches headless agents in git worktrees, runs an adversarial AI reviewer, and enforces a human-merge gate before anything lands. Lighter than SandCastle — no container dependency. GitHub: https://github.com/slikk66/dangeresque

Design Rationale: Host-Native

Dangeresque is explicitly host-native. Anthropic’s Terms of Service restrict using Claude Code subscription keys inside Docker containers. SandCastle works around this via provider abstraction (run Claude on host, sandbox tool execution). Dangeresque avoids the problem entirely: Claude Code runs on the host, worktrees provide task isolation, fine-grained tool filtering enforces safety. (Note: Dangeresque uses its own config layer; CC’s native settings.json now uses permissions.allow/permissions.deny — the allowedTools/disallowedTools names are outdated for CC’s own schema. See Claude Code Permissions Settings.) This is a direct policy-driven design decision, not a technical limitation. See Agentic Sandbox Controls for the tension between OS-level sandboxing (NVIDIA AI Red Team recommendation) and Anthropic ToS.

Four-Phase Pipeline

The adversarial reviewer is the key differentiator from most orchestrators. Using a different model (e.g., Codex reviews Claude’s work) catches single-model blind spots. See Multi-Vendor Adversarial Review.

Artifacts

.dangeresque/runs/ — gitignored directory storing per-run artifacts:
  • Worker output logs
  • Reviewer notes
  • Worktree references
Not committed, not deleted after session — durable enough to reference but not polluting git history. Similar pattern to AgentOps (boshu2)‘s .agents/ corpus.

Compared to SandCastle

Dangeresque is the lighter-weight choice for individuals; SandCastle for teams or CI/CD integration.