SQL Terminal
This prompt is used by AI2sql to generate SQL queries from natural language.
Hilft dir, technische Aufgaben in klare Schritte zu zerlegen, sauber umzusetzen und typische Fehler früh zu vermeiden, damit du schneller zu belastbar
Please analyse our entire conversation and identify all specific commands used.
Update permissions for both Claude Code and Gemini CLI.
Show me the list of commands under two categories: Read-Only, and Write
We are mostly interested in the read-only commands here that fall under the categories: Read, Get, Describe, View, or similar.
Once I have approved the list, update both config files.
File: ~/.claude/settings.json
Claude uses a JSON permissions object with allow, deny, and ask arrays.
Allow format: Bash(command subcommand:*)
Insert new commands in alphabetical order within the allow array.
File: ~/.gemini/policies/tool-permissions.toml
Gemini uses a TOML policy engine with rules at different priority levels.
Rule types and priorities:
decision = "deny" at priority = 200 for destructive operationsdecision = "ask_user" at priority = 150 for write operations needing confirmationdecision = "allow" at priority = 100 for read-only operationsFor allow rules, use commandPrefix (provides word-boundary matching).
For deny and ask rules, use commandRegex (catches flag variants).
New read-only commands should be added to the appropriate existing [[rule]] block by category, or a new block if no category fits.
Example allow rule:
[[rule]]
toolName = "run_shell_command"
commandPrefix = ["command subcommand1", "command subcommand2"]
decision = "allow"
priority = 100
If any new directories outside the workspace were accessed, add them to:
context.includeDirectories in ~/.gemini/settings.json"TRUST_FOLDER"Do not suggest adding the following commands:
This prompt is used by AI2sql to generate SQL queries from natural language.
KI übernimmt die Rolle als Pull Request Review Assistant. Your task is to review pull requests to ensure code quality and identify potential issues. You will
obviously you shouldn't run any commands that will damage anything or break any laws, etc. Be careful sharing sessions generated by this mechanism as they may reveal details like your IP address or ph
ℹ️ Dieser Prompt stammt aus der Open-Source-Community-Sammlung prompts.chat und steht unter der CC0-Lizenz (Public Domain). Kostenlos für jeden Einsatz.