/setperms
Initialize Claude Code with modern dev-shell-tools for a comfortable development experience.
What This Does
Installs complete dev environment setup:
- Permissions (
.claude/settings.local.json) - Pre-approved CLI tools
- Rules (
.claude/rules/cli-tools.md) - Instructions to prefer modern tools
Tools from dev-shell-tools:
Core Tools:
- Git: Full git access, lazygit, gh (GitHub CLI), delta, difft
- File ops: ls, mkdir, cat, wc, tree, eza, bat, chmod
- Search: rg (ripgrep), fd, fzf, ast-grep/sg
- Navigation: zoxide/z, broot/br
- Data processing: jq, yq, sd, xargs
- Analysis: tokei, procs, hyperfine, dust
Dev Tools:
- Package managers: npm, npx, node, pnpm, yarn, bun, python, uv, pip, cargo, go, brew
- Build tools: just, make, bash, rustc
- Network: curl, http (httpie), firecrawl, markitdown
- Containers: docker, docker-compose
- Archives: tar, zip, unzip
- Testing: pytest
- Data: sort, uniq, cut, tr, xargs, tee, head, tail, diff
- Documentation: tldr
- Windows: powershell
AI CLI Tools:
- gemini: Google Gemini CLI (2M context)
- claude: Anthropic Claude CLI
- codex: OpenAI Codex CLI
- perplexity: Perplexity CLI (web search)
Execution Flow
/setperms
|
+-- Check for existing .claude/ files
| +-- If exists: Ask to overwrite or skip
| +-- If not: Proceed
|
+-- Create .claude directory
+-- Create .claude/rules directory
|
+-- Write settings.local.json (permissions)
+-- Ensure .gitignore excludes settings.local.json (secret-safety)
+-- Write rules/cli-tools.md (tool preferences)
Instructions
Step 1: Check for existing settings
ls -la .claude/settings.local.json 2>/dev/null
ls -la .claude/rules/cli-tools.md 2>/dev/null
If files exist, ask user:
- Overwrite: Replace entirely
- Skip: Keep existing, do nothing
Step 2: Create directories
mkdir -p .claude/rules
Step 3: Write permissions file
Write to .claude/settings.local.json:
{
"permissions": {
"allow": [
"Bash(git:*)",
"Bash(ls:*)",
"Bash(mkdir:*)",
"Bash(cat:*)",
"Bash(wc:*)",
"Bash(tree:*)",
"Bash(curl:*)",
"Bash(rg:*)",
"Bash(fd:*)",
"Bash(fzf:*)",
"Bash(z:*)",
"Bash(zoxide:*)",
"Bash(br:*)",
"Bash(broot:*)",
"Bash(ast-grep:*)",
"Bash(sg:*)",
"Bash(bat:*)",
"Bash(eza:*)",
"Bash(delta:*)",
"Bash(difft:*)",
"Bash(jq:*)",
"Bash(yq:*)",
"Bash(sd:*)",
"Bash(lazygit:*)",
"Bash(gh:*)",
"Bash(tokei:*)",
"Bash(uv:*)",
"Bash(just:*)",
"Bash(http:*)",
"Bash(procs:*)",
"Bash(hyperfine:*)",
"Bash(npm:*)",
"Bash(npx:*)",
"Bash(node:*)",
"Bash(pnpm:*)",
"Bash(yarn:*)",
"Bash(bun:*)",
"Bash(python:*)",
"Bash(pip:*)",
"Bash(cargo:*)",
"Bash(go:*)",
"Bash(rustc:*)",
"Bash(pytest:*)",
"Bash(make:*)",
"Bash(docker:*)",
"Bash(docker-compose:*)",
"Bash(powershell -Command:*)",
"Bash(powershell.exe:*)",
"Bash(bash:*)",
"Bash(chmod:*)",
"Bash(sort:*)",
"Bash(uniq:*)",
"Bash(cut:*)",
"Bash(tr:*)",
"Bash(xargs:*)",
"Bash(tee:*)",
"Bash(head:*)",
"Bash(tail:*)",
"Bash(diff:*)",
"Bash(tar:*)",
"Bash(zip:*)",
"Bash(unzip:*)",
"Bash(command -v:*)",
"Bash(brew:*)",
"Bash(tldr:*)",
"Bash(dust:*)",
"Bash(btm:*)",
"Bash(bottom:*)",
"Bash(markitdown:*)",
"Bash(firecrawl:*)",
"Bash(gemini:*)",
"Bash(claude:*)",
"Bash(codex:*)",
"Bash(perplexity:*)"
],
"deny": [],
"ask": [
"Bash(git reset --hard:*)",
"Bash(git checkout -- :*)",
"Bash(git clean -f:*)",
"Bash(git stash drop:*)",
"Bash(git stash clear:*)",
"Bash(git restore --worktree:*)",
"Bash(git push --force:*)",
"Bash(git push -f:*)",
"Bash(git push origin --force:*)",
"Bash(git push origin -f:*)",
"Bash(git branch -D:*)"
]
},
"hooks": {}
}
Step 3b: Protect settings.local.json from git (mandatory)
settings.local.json is user-specific and frequently accumulates secrets in
permission rules (an API key baked into a Bash(...) allow entry, a token in a
custom command). It must never reach a remote. Before finishing, ensure the repo
root .gitignore excludes it:
# Add the rule only if it's not already present
grep -qxF '.claude/settings.local.json' .gitignore 2>/dev/null \
|| printf '\n# Local settings (user-specific; may contain API keys)\n.claude/settings.local.json\n' >> .gitignore
# If it was already tracked from a prior commit, stop tracking it (keeps the file)
git ls-files --error-unmatch .claude/settings.local.json >/dev/null 2>&1 \
&& git rm --cached .claude/settings.local.json
Skip silently if the project has no git repo. This pairs with the git-ops
push-safety gate, which also refuses any push that adds .claude/settings.local.json
— defense in depth so a leaked key can't recur.
Step 4: Write rules file
Write to .claude/rules/cli-tools.md:
# CLI Tool Preferences (dev-shell-tools)
ALWAYS prefer modern CLI tools over traditional alternatives.
## File Search & Navigation
| Instead of | Use | Why |
|------------|-----|-----|
| `find` | `fd` | 5x faster, respects .gitignore |
| `grep` | `rg` (ripgrep) | 10x faster, respects .gitignore |
| `ls` | `eza` | Git status, tree view |
| `cat` | `bat` | Syntax highlighting |
| `cd` + manual | `z`/`zoxide` | Frecent directories |
| `tree` | `eza --tree` | Interactive |
## Data Processing
| Instead of | Use |
|------------|-----|
| `sed` | `sd` |
| Manual JSON | `jq` |
| Manual YAML | `yq` |
## Git Operations
| Instead of | Use |
|------------|-----|
| `git diff` | `delta` or `difft` |
| Manual git | `lazygit` |
| GitHub web | `gh` |
## Code Analysis
- Line counts: `tokei`
- AST search: `ast-grep` / `sg`
- Benchmarks: `hyperfine`
- Disk usage: `dust`
## System Monitoring
| Instead of | Use |
|------------|-----|
| `du -h` | `dust` |
| `top`/`htop` | `btm` (bottom) |
## Documentation
| Instead of | Use |
|------------|-----|
| `man <cmd>` | `tldr <cmd>` |
## Python
| Instead of | Use |
|------------|-----|
| `pip` | `uv` |
| `python -m venv` | `uv venv` |
## Task Running
Prefer `just` over Makefiles.
## Web Fetching
| Priority | Tool | When to Use |
|----------|------|-------------|
| 1 | `WebFetch` | First attempt - fast, built-in |
| 2 | `r.jina.ai/URL` | JS-rendered pages, cleaner extraction |
| 3 | `firecrawl <url>` | Anti-bot bypass, blocked sites |
## AI CLI Tools
For multi-model analysis:
| Tool | Model | Best For |
|------|-------|----------|
| `gemini` | Gemini 2.5 | 2M context, large codebases |
| `claude` | Claude | Coding, analysis |
| `codex` | OpenAI | Deep reasoning |
| `perplexity` | Perplexity | Web search, current info |
## Git Safety
Destructive commands require confirmation (in "ask" list):
| Command | Risk | Safe Alternative |
|---------|------|------------------|
| `git reset --hard` | Loses uncommitted changes | `git stash` first |
| `git checkout -- <file>` | Discards file changes | `git stash` or `git diff` first |
| `git clean -fd` | Deletes untracked files | `git clean -n` (dry run) first |
| `git stash drop` | Permanently deletes stash | Check `git stash list` first |
| `git push --force` | Overwrites remote history | `git push --force-with-lease` |
| `git branch -D` | Deletes unmerged branch | `git branch -d` (safe delete) |
**Before destructive operations:**
1. Check status: `git status`
2. Check for uncommitted changes: `git diff`
3. Consider stashing: `git stash`
4. Use dry-run flags when available
Reference: https://github.com/0xDarkMatter/dev-shell-tools
Step 5: Confirm
Report to user:
Initialized Claude Code with dev-shell-tools:
Created:
.claude/settings.local.json (74 tool permissions, 11 guardrails)
.claude/rules/cli-tools.md (modern tool preferences)
Claude will now:
- Auto-approve dev-shell-tools commands
- Prefer fd over find, rg over grep, bat over cat, etc.
- Use AI CLIs for multi-model analysis
- Ask before destructive git commands (reset --hard, push --force, etc.)
To customize: edit files in .claude/
To add to git: git add .claude/
Options
| Flag |
Effect |
--force |
Overwrite existing without asking |
--perms-only |
Only install permissions, skip rules |
--rules-only |
Only install rules, skip permissions |
--minimal |
Minimal permissions (git, ls, cat, mkdir only) |
--full |
Add cloud/container tools (docker, kubectl, terraform, etc.) |
--no-guardrails |
Skip git safety guardrails (empty "ask" list) |
Full Template (--full)
Adds to permissions:
"Bash(podman:*)",
"Bash(kubectl:*)",
"Bash(helm:*)",
"Bash(terraform:*)",
"Bash(pulumi:*)",
"Bash(aws:*)",
"Bash(gcloud:*)",
"Bash(az:*)",
"Bash(wrangler:*)",
"Bash(flyctl:*)",
"Bash(railway:*)"
Notes
- Permissions are project-local (don't affect other projects)
- Rules instruct Claude to prefer modern tools
- Global settings in
~/.claude/ still apply
- Changes take effect on next tool use (no restart needed)
- Tools from: https://github.com/0xDarkMatter/dev-shell-tools
1---2name: setperms3description: Set tool permissions for Claude Code. Configures allowed commands, rules, and preferences in .claude/ directory. Triggers on: setperms, init tools, configure permissions, setup project, set permissions, init claude.4license: MIT5---67# /setperms89Initialize Claude Code with modern dev-shell-tools for a comfortable development experience.1011## What This Does1213**Installs complete dev environment setup:**14151. **Permissions** (`.claude/settings.local.json`) - Pre-approved CLI tools162. **Rules** (`.claude/rules/cli-tools.md`) - Instructions to prefer modern tools1718Tools from [dev-shell-tools](https://github.com/0xDarkMatter/dev-shell-tools):1920**Core Tools:**21- **Git**: Full git access, lazygit, gh (GitHub CLI), delta, difft22- **File ops**: ls, mkdir, cat, wc, tree, eza, bat, chmod23- **Search**: rg (ripgrep), fd, fzf, ast-grep/sg24- **Navigation**: zoxide/z, broot/br25- **Data processing**: jq, yq, sd, xargs26- **Analysis**: tokei, procs, hyperfine, dust2728**Dev Tools:**29- **Package managers**: npm, npx, node, pnpm, yarn, bun, python, uv, pip, cargo, go, brew30- **Build tools**: just, make, bash, rustc31- **Network**: curl, http (httpie), firecrawl, markitdown32- **Containers**: docker, docker-compose33- **Archives**: tar, zip, unzip34- **Testing**: pytest35- **Data**: sort, uniq, cut, tr, xargs, tee, head, tail, diff36- **Documentation**: tldr37- **Windows**: powershell3839**AI CLI Tools:**40- **gemini**: Google Gemini CLI (2M context)41- **claude**: Anthropic Claude CLI42- **codex**: OpenAI Codex CLI43- **perplexity**: Perplexity CLI (web search)4445## Execution Flow4647```48/setperms49 |50 +-- Check for existing .claude/ files51 | +-- If exists: Ask to overwrite or skip52 | +-- If not: Proceed53 |54 +-- Create .claude directory55 +-- Create .claude/rules directory56 |57 +-- Write settings.local.json (permissions)58 +-- Ensure .gitignore excludes settings.local.json (secret-safety)59 +-- Write rules/cli-tools.md (tool preferences)60```6162## Instructions6364### Step 1: Check for existing settings6566```bash67ls -la .claude/settings.local.json 2>/dev/null68ls -la .claude/rules/cli-tools.md 2>/dev/null69```7071If files exist, ask user:72- **Overwrite**: Replace entirely73- **Skip**: Keep existing, do nothing7475### Step 2: Create directories7677```bash78mkdir -p .claude/rules79```8081### Step 3: Write permissions file8283Write to `.claude/settings.local.json`:8485```json86{87 "permissions": {88 "allow": [89 "Bash(git:*)",90 "Bash(ls:*)",91 "Bash(mkdir:*)",92 "Bash(cat:*)",93 "Bash(wc:*)",94 "Bash(tree:*)",95 "Bash(curl:*)",96 "Bash(rg:*)",97 "Bash(fd:*)",98 "Bash(fzf:*)",99 "Bash(z:*)",100 "Bash(zoxide:*)",101 "Bash(br:*)",102 "Bash(broot:*)",103 "Bash(ast-grep:*)",104 "Bash(sg:*)",105 "Bash(bat:*)",106 "Bash(eza:*)",107 "Bash(delta:*)",108 "Bash(difft:*)",109 "Bash(jq:*)",110 "Bash(yq:*)",111 "Bash(sd:*)",112 "Bash(lazygit:*)",113 "Bash(gh:*)",114 "Bash(tokei:*)",115 "Bash(uv:*)",116 "Bash(just:*)",117 "Bash(http:*)",118 "Bash(procs:*)",119 "Bash(hyperfine:*)",120 "Bash(npm:*)",121 "Bash(npx:*)",122 "Bash(node:*)",123 "Bash(pnpm:*)",124 "Bash(yarn:*)",125 "Bash(bun:*)",126 "Bash(python:*)",127 "Bash(pip:*)",128 "Bash(cargo:*)",129 "Bash(go:*)",130 "Bash(rustc:*)",131 "Bash(pytest:*)",132 "Bash(make:*)",133 "Bash(docker:*)",134 "Bash(docker-compose:*)",135 "Bash(powershell -Command:*)",136 "Bash(powershell.exe:*)",137 "Bash(bash:*)",138 "Bash(chmod:*)",139 "Bash(sort:*)",140 "Bash(uniq:*)",141 "Bash(cut:*)",142 "Bash(tr:*)",143 "Bash(xargs:*)",144 "Bash(tee:*)",145 "Bash(head:*)",146 "Bash(tail:*)",147 "Bash(diff:*)",148 "Bash(tar:*)",149 "Bash(zip:*)",150 "Bash(unzip:*)",151 "Bash(command -v:*)",152 "Bash(brew:*)",153 "Bash(tldr:*)",154 "Bash(dust:*)",155 "Bash(btm:*)",156 "Bash(bottom:*)",157 "Bash(markitdown:*)",158 "Bash(firecrawl:*)",159 "Bash(gemini:*)",160 "Bash(claude:*)",161 "Bash(codex:*)",162 "Bash(perplexity:*)"163 ],164 "deny": [],165 "ask": [166 "Bash(git reset --hard:*)",167 "Bash(git checkout -- :*)",168 "Bash(git clean -f:*)",169 "Bash(git stash drop:*)",170 "Bash(git stash clear:*)",171 "Bash(git restore --worktree:*)",172 "Bash(git push --force:*)",173 "Bash(git push -f:*)",174 "Bash(git push origin --force:*)",175 "Bash(git push origin -f:*)",176 "Bash(git branch -D:*)"177 ]178 },179 "hooks": {}180}181```182183### Step 3b: Protect settings.local.json from git (mandatory)184185`settings.local.json` is user-specific and frequently accumulates secrets in186permission rules (an API key baked into a `Bash(...)` allow entry, a token in a187custom command). It must never reach a remote. Before finishing, ensure the repo188root `.gitignore` excludes it:189190```bash191# Add the rule only if it's not already present192grep -qxF '.claude/settings.local.json' .gitignore 2>/dev/null \193 || printf '\n# Local settings (user-specific; may contain API keys)\n.claude/settings.local.json\n' >> .gitignore194195# If it was already tracked from a prior commit, stop tracking it (keeps the file)196git ls-files --error-unmatch .claude/settings.local.json >/dev/null 2>&1 \197 && git rm --cached .claude/settings.local.json198```199200Skip silently if the project has no git repo. This pairs with the git-ops201push-safety gate, which also refuses any push that adds `.claude/settings.local.json`202— defense in depth so a leaked key can't recur.203204### Step 4: Write rules file205206Write to `.claude/rules/cli-tools.md`:207208```markdown209# CLI Tool Preferences (dev-shell-tools)210211ALWAYS prefer modern CLI tools over traditional alternatives.212213## File Search & Navigation214215| Instead of | Use | Why |216|------------|-----|-----|217| `find` | `fd` | 5x faster, respects .gitignore |218| `grep` | `rg` (ripgrep) | 10x faster, respects .gitignore |219| `ls` | `eza` | Git status, tree view |220| `cat` | `bat` | Syntax highlighting |221| `cd` + manual | `z`/`zoxide` | Frecent directories |222| `tree` | `eza --tree` | Interactive |223224## Data Processing225226| Instead of | Use |227|------------|-----|228| `sed` | `sd` |229| Manual JSON | `jq` |230| Manual YAML | `yq` |231232## Git Operations233234| Instead of | Use |235|------------|-----|236| `git diff` | `delta` or `difft` |237| Manual git | `lazygit` |238| GitHub web | `gh` |239240## Code Analysis241242- Line counts: `tokei`243- AST search: `ast-grep` / `sg`244- Benchmarks: `hyperfine`245- Disk usage: `dust`246247## System Monitoring248249| Instead of | Use |250|------------|-----|251| `du -h` | `dust` |252| `top`/`htop` | `btm` (bottom) |253254## Documentation255256| Instead of | Use |257|------------|-----|258| `man <cmd>` | `tldr <cmd>` |259260## Python261262| Instead of | Use |263|------------|-----|264| `pip` | `uv` |265| `python -m venv` | `uv venv` |266267## Task Running268269Prefer `just` over Makefiles.270271## Web Fetching272273| Priority | Tool | When to Use |274|----------|------|-------------|275| 1 | `WebFetch` | First attempt - fast, built-in |276| 2 | `r.jina.ai/URL` | JS-rendered pages, cleaner extraction |277| 3 | `firecrawl <url>` | Anti-bot bypass, blocked sites |278279## AI CLI Tools280281For multi-model analysis:282283| Tool | Model | Best For |284|------|-------|----------|285| `gemini` | Gemini 2.5 | 2M context, large codebases |286| `claude` | Claude | Coding, analysis |287| `codex` | OpenAI | Deep reasoning |288| `perplexity` | Perplexity | Web search, current info |289290## Git Safety291292Destructive commands require confirmation (in "ask" list):293294| Command | Risk | Safe Alternative |295|---------|------|------------------|296| `git reset --hard` | Loses uncommitted changes | `git stash` first |297| `git checkout -- <file>` | Discards file changes | `git stash` or `git diff` first |298| `git clean -fd` | Deletes untracked files | `git clean -n` (dry run) first |299| `git stash drop` | Permanently deletes stash | Check `git stash list` first |300| `git push --force` | Overwrites remote history | `git push --force-with-lease` |301| `git branch -D` | Deletes unmerged branch | `git branch -d` (safe delete) |302303**Before destructive operations:**3041. Check status: `git status`3052. Check for uncommitted changes: `git diff`3063. Consider stashing: `git stash`3074. Use dry-run flags when available308309Reference: https://github.com/0xDarkMatter/dev-shell-tools310```311312### Step 5: Confirm313314Report to user:315```316Initialized Claude Code with dev-shell-tools:317318Created:319 .claude/settings.local.json (74 tool permissions, 11 guardrails)320 .claude/rules/cli-tools.md (modern tool preferences)321322Claude will now:323 - Auto-approve dev-shell-tools commands324 - Prefer fd over find, rg over grep, bat over cat, etc.325 - Use AI CLIs for multi-model analysis326 - Ask before destructive git commands (reset --hard, push --force, etc.)327328To customize: edit files in .claude/329To add to git: git add .claude/330```331332## Options333334| Flag | Effect |335|------|--------|336| `--force` | Overwrite existing without asking |337| `--perms-only` | Only install permissions, skip rules |338| `--rules-only` | Only install rules, skip permissions |339| `--minimal` | Minimal permissions (git, ls, cat, mkdir only) |340| `--full` | Add cloud/container tools (docker, kubectl, terraform, etc.) |341| `--no-guardrails` | Skip git safety guardrails (empty "ask" list) |342343### Full Template (--full)344345Adds to permissions:346```json347"Bash(podman:*)",348"Bash(kubectl:*)",349"Bash(helm:*)",350"Bash(terraform:*)",351"Bash(pulumi:*)",352"Bash(aws:*)",353"Bash(gcloud:*)",354"Bash(az:*)",355"Bash(wrangler:*)",356"Bash(flyctl:*)",357"Bash(railway:*)"358```359360## Notes361362- Permissions are project-local (don't affect other projects)363- Rules instruct Claude to prefer modern tools364- Global settings in `~/.claude/` still apply365- Changes take effect on next tool use (no restart needed)366- Tools from: https://github.com/0xDarkMatter/dev-shell-tools