Spec-Driven Frameworks vs Native Claude Code
Side-by-side analysis across four workflow approaches. Based on community evidence from practitioners who have shipped real projects (r/ClaudeCode, 2026-05-03).Frameworks Compared
Pros/Cons by Approach
Heavy Frameworks (Superpowers, GSD, BMAD)
Pros- Iron-law process discipline — agent can’t skip steps
- Opinionated end-to-end: one decision to make, then follow the rails
- Built-in verification milestones: each gate is a catch opportunity
- Good for non-engineers who need process scaffolding to substitute for experience
- Token-heavy: framework overhead on every session (4–5x lean approach)
- Framework owns the process — hard to deviate for one-off tasks
- Ceremony bleeds in even for small bugs
- Superpowers: Claude-only; BMAD/GSD: slower to evolve with model capability changes
- Model improvements (Opus 4.7+) have absorbed some of what the framework did
Lean Skills (Matt Pocock)
Pros- Composable: invoke only what you need per session
- Low token cost: skills load on demand, not front-loaded
- Hackable: add/remove skills without framework breakage
- Vendor-portable: CLAUDE.md + skill files work across Claude, Codex, Cursor
- Pairs directly with custom orchestrators (SandCastle, Dangeresque)
- No enforcement: discipline depends on the developer, not the tool
- No built-in parallelism: need SandCastle or Dangeresque to get AFK parallel runs
- Requires more upfront thinking about which skills to reach for
Vanilla Plan Mode
Pros- Zero overhead
- Full LLM autonomy on decomposition
- No persistent state across sessions
- No verification gates
- Reinvents structure every session restart
- Strictly dominated by lean skills for any non-trivial project
Custom Harness (ralph-loop, dangeresque, sandcastle)
Pros- Maximum control: harness matches your feedback loops exactly
- AFK parallel runs: multiple agents, multiple worktrees, unattended
- Adversarial review built in (Dangeresque)
- Token telemetry per iteration (SandCastle)
- Build and maintenance cost
- Requires harness engineering knowledge (see Agent Harness)
- SandCastle: container dependency + complexity
- Dangeresque: host-native (no container) but less feature-rich
Key Discrepancies with Prior Wiki Content
Sandbox controls vs Anthropic ToS
Agentic Sandbox Controls recommends OS-level sandboxing (containers, Bubblewrap, Seatbelt) as mandatory per NVIDIA AI Red Team guidance. However: Anthropic’s ToS restricts Claude Code subscription keys inside Docker containers. This creates a conflict:- NVIDIA: “sandbox at OS level”
- Anthropic ToS: “no CC in containers” (subscription keys)
- Use the API (not subscription) — no ToS restriction
- Host-native worktree isolation (Dangeresque approach) +
permissions.allow/permissions.denyin.claude/settings.json(note:allowedTools/disallowedToolsis the old CC schema — see Claude Code Permissions Settings) - SandCastle workaround: Claude runs on host, containers only for tool execution
Clear-over-compact is now majority practice (scoped)
Context Compression Strategies no longer labels clear-over-compact as a “contrarian position” — this comparison page was written before that update. The current page reflects: clear-over-compact is majority practice among experienced practitioners in harness-based AFK workflows (r/ClaudeCode + r/opencodeCLI, 2026-05, n≈30). Every active framework in that community (GSD, Dangeresque, SandCastle, vanilla loops) enforces fresh context per task. Evidence scope: ~30 experienced developers in harness-heavy communities. Compact remains better for interactive/exploratory sessions and workflows without durable filesystem state.What the Community Has Converged On
Across all approaches, the following practices appear in every high-upvote workflow:- Worktree isolation — each task in its own checkout, regardless of tool
- Clear over compact — fresh 200K context per task, not compaction
- Filesystem as state — PRDs, issues, decisions stored in files, not agent memory
- Verification before merge — automated checks + human gate
- Skills over frameworks — composable skills preferred to monolithic frameworks
- Adversarial review — at minimum, different model tier for review (Sonnet→Opus); ideally cross-vendor
Recommended Workflow (Synthesis)
For an experienced developer building non-trivial software:AGENTS.md Format Critique (Wand, 2026-05-06)
The AGENTS.md standard (and equivalents: CLAUDE.md monoliths, Cursor single-rule-files) fails in two ways: Wrong abstraction — single file doesn’t scale:- Cannot hold all project context without becoming unmaintainable
- Nested AGENTS.md assumes false constraints: single-file-edit scope, directory = domain scope, no ambiguity between parent/child rules
- Most importantly: agents will not reliably follow rule-file-selection instructions — compliance is not enforceable by the orchestrator
- Better:
@path/to/file.mdcomposition (Claude Code), multiple scoped rule files (Cursor), or hooks that load context programmatically
“The AI can’t read the room.” Every conversation starts with a junior dev needing re-onboarding. Build commands are not enough.
Wand’s alternative: many single-purpose files + global rules repo via symlink + Memory Bank (
_memory/ hierarchy loaded via repomix at session start). See Memory Bank Pattern, AGENTS.md (format) (critique section), and Rules vs. Hooks.
Implication for this comparison: the lean CLAUDE.md + skills approach partially addresses the content narrowness problem (skills pull domain-specific context), but still benefits from @ composition to avoid the single-file scale problem.
Related Pages
- Dangeresque — host-native orchestrator
- SandCastle — parallel orchestrator with container isolation
- Multi-Vendor Adversarial Review — cross-vendor judge pattern
- Branch Strategy for Agents — merge strategy taxonomy
- Agentic Sandbox Controls — OS-level sandbox recommendation (needs update re: ToS)
- Context Compression Strategies — clear-over-compact debate
- Memory Bank Pattern — cross-session memory alternative Wand uses
- Rules vs. Hooks — hooks architecturally superior to static files for dynamic context