mit einem Klick
mysql
Manage MySQL databases via the mysql CLI.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Manage MySQL databases via the mysql CLI.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Interact with Elasticsearch clusters via the API.
Manage GitLab issues and merge requests via the glab CLI.
Read, send, and manage Gmail emails via the gmail-cli tool.
Manage Redis databases via the redis-cli tool.
Manage AWS resources via the aws CLI.
Query metrics, manage monitors, post events, and interact with Datadog via the dogshell CLI.
| name | mysql |
| description | Manage MySQL databases via the mysql CLI. |
| metadata | {"displayName":"MySQL","icon":"database","category":"databases","version":"1.0.0","dependencies":{"cli":"mysql","checkCommand":"mysql --version","bundledInstall":"skills/mysql/install.sh","install":{"darwin":{"brew":"mysql-client"},"linux":{"apt":"mysql-client","dnf":"mysql"},"windows":{"winget":"Oracle.MySQL","choco":"mysql","scoop":"mysql"}}},"config":[{"name":"MYSQL_HOST","label":"Host","type":"string","required":false,"placeholder":"localhost"},{"name":"MYSQL_PORT","label":"Port","type":"string","required":false,"placeholder":"3306"}],"auth":{"type":"basic"}} |
Use mysql to interact with MySQL databases.
The mysql client is installed in .codebuddy/bin/.
You can execute it directly or add it to your PATH.
.codebuddy/bin/mysql -h <host> -P <port> -u <user> -p.codebuddy/bin/mysql -h 127.0.0.1 -P 3306 -u root -pTo make it easier to run, you can alias it in your shell:
alias mysql="./.codebuddy/bin/mysql"
SHOW DATABASES;USE <dbname>;SHOW TABLES;DESCRIBE <table_name>;SELECT * FROM table LIMIT 10;exit.codebuddy/bin/mysqlMYSQL_PWD environment variable (careful!) or typically prompted interactively.