
Clawgod Claude Code Patch
- 522 installs
- 70 repo stars
- Updated July 9, 2026
- aradotso/trending-skills
clawgod-claude-code-patch is a Claude skill that applies a runtime patch on top of the official Claude Code CLI to unlock hidden features, remove restrictions, and enable multi-agent swarms and computer use without repla
About
ClawGod is a runtime patch for the official Claude Code CLI that unlocks hidden internal features, removes built-in safety restrictions, and activates advanced capabilities such as multi-agent swarms and computer use. It works by layering modifications on top of the existing authenticated Claude Code installation rather than replacing the binary, preserving the original claude.orig executable. After a one-line curl or PowerShell install, users see a green logo when the patch is active and can immediately access god-mode behaviors that are normally blocked. The skill is designed for experienced developers who want maximum flexibility from Claude Code while keeping the official distribution intact. It requires Node.js 18+ and an already-authenticated Claude Code setup.
- Runtime patch that preserves the original Claude Code binary
- Enables multi-agent collaboration and computer-use capabilities
- Removes safety restrictions for advanced power users
- Visual indicators: green logo confirms active patch
- One-command install on macOS, Linux, and Windows
Clawgod Claude Code Patch by the numbers
- 522 all-time installs (skills.sh)
- Ranked #1,728 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/aradotso/trending-skills --skill clawgod-claude-code-patchAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 522 |
|---|---|
| repo stars | ★ 70 |
| Last updated | July 9, 2026 |
| Repository | aradotso/trending-skills ↗ |
How do you unlock hidden Claude Code CLI features?
Unlock hidden Claude Code features, remove artificial restrictions, and enable multi-agent swarms without replacing the official binary.
Who is it for?
Developers running Claude Code CLI who need multi-agent swarms or internal features blocked by default restrictions.
Skip if: Teams requiring only the supported, unmodified official Claude Code binary without runtime patches.
When should I use this skill?
User says patch claude code, install clawgod, unlock claude code features, god mode, multi-agent swarms, or remove claude code restrictions.
What you get
Runtime-patched Claude Code CLI with unlocked features, swarm configuration, and advanced capability flags.
- runtime-patched Claude Code configuration
- multi-agent swarm setup
By the numbers
- Patches the official Claude Code CLI at runtime without binary replacement
- Supports multi-agent swarms and computer use as documented advanced capabilities
Files
ClawGod — Claude Code Runtime Patcher
Skill by ara.so — Daily 2026 Skills collection.
ClawGod is a runtime patch applied on top of the official Claude Code CLI. It unlocks hidden internal features, removes safety restrictions for power users, enables multi-agent collaboration, and applies visual indicators — all without replacing the official binary.
Installation
macOS / Linux
curl -fsSL https://github.com/0Chencc/clawgod/releases/latest/download/install.sh | bashWindows (PowerShell)
irm https://github.com/0Chencc/clawgod/releases/latest/download/install.ps1 | iexAfter install, refresh your shell:
hash -r # bash/zshVerify Install
A green logo in Claude Code means the patch is active. Orange = unpatched original.
claude --version # patched build
claude.orig # original unpatched binary (preserved)Requirements
- Node.js >= 18 + npm
- Claude Code installed and authenticated
- Active Claude Code account
# Authenticate before using
claude auth loginWhat ClawGod Patches
Feature Unlocks
| Patch | Effect |
|---|---|
| Internal User Mode | 24+ hidden commands: /share, /teleport, /issue, /bughunter, debug logging, API request dumps |
| GrowthBook Overrides | Override any feature flag via config file |
| Agent Teams | Multi-agent swarm collaboration, no flags needed |
| Computer Use | Screen control without Max/Pro subscription (macOS) |
| Ultraplan | Multi-agent planning via Claude Code Remote |
| Ultrareview | Automated bug hunting via Claude Code Remote |
Restriction Removals
| Patch | What's removed |
|---|---|
| CYBER_RISK_INSTRUCTION | Security testing refusal (pentesting, C2, exploits) |
| URL Restriction | "NEVER generate or guess URLs" system instruction |
| Cautious Actions | Forced confirmation before destructive operations |
| Login Notice | "Not logged in" startup reminder |
Visual Changes
- Brand color changed to green when patched (visual confirmation at a glance)
- Message filters show content hidden from non-Anthropic users
Key Commands
# Launch patched Claude Code (interactive)
claude
# Launch original unpatched version
claude.orig
# Use a hidden internal command (after patch enables Internal User Mode)
claude
> /share
> /teleport
> /issue
> /bughunterGrowthBook Feature Flag Overrides
ClawGod exposes a config file to override any GrowthBook feature flag:
// ~/.claude/growthbook-overrides.json (example location — check docs for exact path)
{
"agentTeams": true,
"ultraplan": true,
"ultrareview": true,
"computerUse": true
}Set any flag to true to force-enable it regardless of subscription tier.
Multi-Agent Swarm (Agent Teams)
Once the Agent Teams patch is active, you can coordinate multiple Claude Code agents:
# Start a swarm session — no feature flags required after patch
claude
> /agents start --swarm
# Assign tasks across agents
> /agents assign "write tests" agent-2
> /agents assign "review PR" agent-3Computer Use (macOS)
After patching, Computer Use is available without a Max/Pro subscription on macOS:
claude
> /computer-use enable
# Claude can now control screen, mouse, keyboardUltraplan & Ultrareview
# Ultraplan: multi-agent planning via Claude Code Remote
claude
> /ultraplan "refactor authentication module"
# Ultrareview: automated bug hunting
> /ultrareview --target ./srcUpdate
Re-run the installer — patches are re-applied automatically on top of the latest Claude Code:
# macOS/Linux
curl -fsSL https://github.com/0Chencc/clawgod/releases/latest/download/install.sh | bash
# Windows
irm https://github.com/0Chencc/clawgod/releases/latest/download/install.ps1 | iexNo manual version pinning needed — the patch works with any Claude Code version.
Uninstall
# macOS/Linux
curl -fsSL https://github.com/0Chencc/clawgod/releases/latest/download/install.sh | bash -s -- --uninstall
hash -r
# Windows
irm https://github.com/0Chencc/clawgod/releases/latest/download/install.ps1 -OutFile install.ps1
.\install.ps1 -UninstallAfter uninstall, claude returns to the original binary. claude.orig is also cleaned up.
Troubleshooting
claude still runs unpatched after install
hash -r # clear shell command cache
exec $SHELL # or restart terminal
which claude # verify PATH points to patched binaryPatch not persisting after Claude Code auto-update
# Re-run installer — it re-patches the new version
curl -fsSL https://github.com/0Chencc/clawgod/releases/latest/download/install.sh | bashWindows execution policy error
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
irm https://github.com/0Chencc/clawgod/releases/latest/download/install.ps1 | iexHidden commands not appearing
Confirm Internal User Mode patch is active by checking for the green brand color in the Claude Code UI. If orange, the patch did not apply — re-run the installer.
Node.js version error
node --version # must be >= 18
nvm install 18 # if using nvm
nvm use 18Important Notes
- ClawGod is not affiliated with Anthropic
- Licensed under GPL-3.0
- Removing restrictions (CYBER_RISK_INSTRUCTION, cautious actions) is intended for security professionals and power users — use responsibly
- The
claude.origbinary is always preserved so you can revert instantly - The patch survives Claude Code updates by design — re-run installer after major Claude Code releases to ensure compatibility
Related skills
FAQ
Does clawgod replace the Claude Code binary?
clawgod-claude-code-patch applies a runtime patch on top of the official Claude Code CLI, unlocking hidden features and multi-agent swarms without replacing or forking the official binary.
What capabilities does clawgod unlock?
clawgod-claude-code-patch enables hidden internal Claude Code features including multi-agent swarms, computer use, and restriction overrides through runtime patching and configuration steps.