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/dangeresqueDesign 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 nativesettings.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
Artifacts
.dangeresque/runs/ — gitignored directory storing per-run artifacts:
- Worker output logs
- Reviewer notes
- Worktree references
.agents/ corpus.
Compared to SandCastle
Dangeresque is the lighter-weight choice for individuals; SandCastle for teams or CI/CD integration.
Related Pages
- SandCastle — heavier alternative with container isolation and branch strategy abstraction
- Multi-Vendor Adversarial Review — the adversarial reviewer pattern
- Agentic Sandbox Controls — OS-level sandbox recommendation; host-native as ToS-compliant alternative
- Agent Harness — harness architecture
- Ralph Loop — minimal harness pattern; Dangeresque adds adversarial review on top
- Lean Agentic Coding Workflow — workflow that Dangeresque implements