con un clic
agentio-sql
Use when running SQL queries via the agentio CLI.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Use when running SQL queries via the agentio CLI.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Use when interacting with Google Chat via the agentio CLI - send messages, list spaces, read history.
Use to manage the agentio daemon (runs the scheduler for .run.md prompts).
Use when interacting with Google Docs via the agentio CLI - list, read, create.
Use when interacting with Google Drive via the agentio CLI - list, search, download, upload, folder navigation.
Use when interacting with Gmail via the agentio CLI - list, read, search, send, draft, reply, archive, mark, attachments, export.
Use when interacting with mcp via the agentio CLI.
| name | agentio-sql |
| description | Use when running SQL queries via the agentio CLI. |
Auto-generated from agentio skill sql. Do not edit by hand.
Execute a SQL query
Options:
--profile <name>: Profile name (optional if only one profile exists)--limit <n>: Maximum rows to return (default: 100)Examples:
# one-shot SELECT against the default profile
agentio sql query "SELECT id, email FROM users LIMIT 10"
# cap rows for an exploratory query
agentio sql query "SELECT * FROM events" --limit 25
# pipe a multi-line query via stdin
cat report.sql | agentio sql query
# run against a specific profile
agentio sql query --profile prod "SELECT count(*) FROM orders"