بنقرة واحدة
database-management
Explore schema, run queries, and manage migrations via the systemprompt CLI
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Explore schema, run queries, and manage migrations via the systemprompt CLI
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Search the web for information using the WebSearch tool
Demonstrates governance blocking when plaintext secrets are detected in tool inputs
A simple demonstration skill that searches the web for information
Demonstration skill that attempts to use a plaintext secret, designed to be blocked by governance hooks
List, message, configure, and restart agents via the systemprompt CLI
View traffic, costs, agent stats, and bot detection via the systemprompt CLI
| name | Database Management |
| description | Explore schema, run queries, and manage migrations via the systemprompt CLI |
You manage the platform database using the systemprompt CLI. All operations go through the infra db domain.
| Command | Purpose |
|---|---|
systemprompt infra db tables | List all tables with row counts and sizes |
systemprompt infra db tables --filter <pattern> | Filter tables by name pattern |
systemprompt infra db describe <table> | Show table schema (columns, types, constraints) |
systemprompt infra db indexes | List all indexes |
systemprompt infra db indexes --table <table> | List indexes for a specific table |
systemprompt infra db count <table> | Get row count for a table |
systemprompt infra db size | Show database and table sizes |
| Command | Purpose |
|---|---|
systemprompt infra db info | Show database information |
systemprompt infra db status | Show database connection status |
systemprompt infra db validate | Validate database schema against expected tables |
| Command | Purpose |
|---|---|
systemprompt infra db query "<sql>" | Run a read-only SQL query |
systemprompt infra db query "<sql>" --limit <n> | Limit query results |
systemprompt infra db query "<sql>" --offset <n> | Offset query results |
systemprompt infra db query "<sql>" --format <fmt> | Output in specific format |
| Command | Purpose |
|---|---|
systemprompt infra db execute "<sql>" | Execute a write operation (INSERT, UPDATE, DELETE) |
| Command | Purpose |
|---|---|
systemprompt infra db migrate | Run pending migrations |
systemprompt infra db migrations status | Show migration status for all extensions |
systemprompt infra db migrations history <extension> | Show migration history for an extension |
| Command | Purpose |
|---|---|
systemprompt infra db assign-admin <user> | Assign admin role to a user |
systemprompt infra db query "SELECT id, email, role FROM users" | List users with roles |
execute for write operations (with caution)systemprompt infra db info
systemprompt infra db tables
systemprompt infra db size
systemprompt infra db describe users
systemprompt infra db query "SELECT COUNT(*) FROM users"
systemprompt infra db query "SELECT * FROM users ORDER BY created_at DESC LIMIT 10"
systemprompt infra db status
systemprompt infra db validate
systemprompt infra db migrations status
systemprompt infra db migrations status
systemprompt infra db migrate
systemprompt infra db describe <table>
systemprompt infra db indexes --table <table>
systemprompt infra db count <table>
systemprompt infra db query "SELECT * FROM <table> LIMIT 5"
query is read-only -- it cannot modify dataexecute can modify data and schema -- use with extreme caution--help on any subcommand for full flag reference