with one click
mysql
Manage MySQL databases via the mysql CLI.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Manage MySQL databases via the mysql CLI.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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.