clawgod-claude-code-patch
Runtime patch for Claude Code that unlocks hidden features, removes restrictions, and enables advanced capabilities like multi-agent swarms and computer use.
Best use case
clawgod-claude-code-patch is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Runtime patch for Claude Code that unlocks hidden features, removes restrictions, and enables advanced capabilities like multi-agent swarms and computer use.
Teams using clawgod-claude-code-patch should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/clawgod-claude-code-patch/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How clawgod-claude-code-patch Compares
| Feature / Agent | clawgod-claude-code-patch | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Runtime patch for Claude Code that unlocks hidden features, removes restrictions, and enables advanced capabilities like multi-agent swarms and computer use.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
SKILL.md Source
# ClawGod — Claude Code Runtime Patcher
> Skill by [ara.so](https://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
```bash
curl -fsSL https://github.com/0Chencc/clawgod/releases/latest/download/install.sh | bash
```
### Windows (PowerShell)
```powershell
irm https://github.com/0Chencc/clawgod/releases/latest/download/install.ps1 | iex
```
After install, refresh your shell:
```bash
hash -r # bash/zsh
```
### Verify Install
A **green logo** in Claude Code means the patch is active. Orange = unpatched original.
```bash
claude --version # patched build
claude.orig # original unpatched binary (preserved)
```
## Requirements
- Node.js >= 18 + npm
- Claude Code installed and authenticated
- Active Claude Code account
```bash
# Authenticate before using
claude auth login
```
## What 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
```bash
# 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
> /bughunter
```
## GrowthBook Feature Flag Overrides
ClawGod exposes a config file to override any GrowthBook feature flag:
```json
// ~/.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:
```bash
# 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-3
```
## Computer Use (macOS)
After patching, Computer Use is available without a Max/Pro subscription on macOS:
```bash
claude
> /computer-use enable
# Claude can now control screen, mouse, keyboard
```
## Ultraplan & Ultrareview
```bash
# Ultraplan: multi-agent planning via Claude Code Remote
claude
> /ultraplan "refactor authentication module"
# Ultrareview: automated bug hunting
> /ultrareview --target ./src
```
## Update
Re-run the installer — patches are re-applied automatically on top of the latest Claude Code:
```bash
# 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 | iex
```
No manual version pinning needed — the patch works with any Claude Code version.
## Uninstall
```bash
# 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 -Uninstall
```
After uninstall, `claude` returns to the original binary. `claude.orig` is also cleaned up.
## Troubleshooting
### `claude` still runs unpatched after install
```bash
hash -r # clear shell command cache
exec $SHELL # or restart terminal
which claude # verify PATH points to patched binary
```
### Patch not persisting after Claude Code auto-update
```bash
# Re-run installer — it re-patches the new version
curl -fsSL https://github.com/0Chencc/clawgod/releases/latest/download/install.sh | bash
```
### Windows execution policy error
```powershell
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
irm https://github.com/0Chencc/clawgod/releases/latest/download/install.ps1 | iex
```
### Hidden 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
```bash
node --version # must be >= 18
nvm install 18 # if using nvm
nvm use 18
```
## Important 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.orig` binary 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 compatibilityRelated Skills
web-access-claude-skill
Give Claude Code full internet access with three-layer channel dispatch, CDP browser automation, and parallel sub-agent task splitting
token-dashboard-claude-analytics
Local token cost analytics dashboard for Claude Code sessions — reads JSONL transcripts and provides per-prompt cost breakdowns, heatmaps, and usage insights.
openclaude-multi-llm
Use Claude Code's full tool system with any OpenAI-compatible LLM — GPT-4o, DeepSeek, Gemini, Ollama, and 200+ models via environment variable configuration.
oh-story-claudecode-writing
网文写作 skill 包,覆盖长篇与短篇网络小说的扫榜、拆文、写作、去AI味全流程
holyclaude-ai-workstation
Deploy a full AI coding workstation with Claude Code, web UI, headless browser, and 5 AI CLIs in a single Docker container
free-code-claude-cli
Build and use free-code, the open-source fork of Claude Code CLI with telemetry removed, guardrails stripped, and all experimental features unlocked.
fl-studio-patcher-malware-warning
WARNING - This project is malicious software disguised as an FL Studio crack/patcher
everything-claude-code-harness
Agent harness performance system for Claude Code and other AI coding agents — skills, instincts, memory, hooks, commands, and security scanning
deepclaude-proxy
Use Claude Code's autonomous agent loop with DeepSeek V4 Pro, OpenRouter, or any Anthropic-compatible backend at up to 17x lower cost.
codex-session-patcher
Clean AI refusal responses from Codex CLI, Claude Code, and OpenCode session files, and inject CTF/pentest prompts to reduce refusals.
codeburn-claude-cost-dashboard
Interactive TUI dashboard for visualizing Claude Code token usage, costs, and task breakdowns by project, model, and activity type.
clui-cc-claude-overlay
Command Line User Interface for Claude Code — a floating macOS desktop overlay with multi-tab sessions, permission approval UI, voice input, and skills marketplace.