Agent Skillsjhd3197/ServerKit › db-inspect

db-inspect

GitHub

用于检查 ServerKit SQLite 数据库结构、表信息及行数,支持执行只读 SQL 查询。适用于本地开发环境或生产环境(通过 SSH MCP),帮助调试数据问题或了解当前数据库状态。

.claude/skills/db-inspect/SKILL.md jhd3197/ServerKit

Trigger Scenarios

需要查看数据库表结构或字段信息时 需要统计数据库各表行数时 需要执行只读 SQL 查询以排查数据问题时

Install

npx skills add jhd3197/ServerKit --skill db-inspect -g -y
More Options

Non-standard path

npx skills add https://github.com/jhd3197/ServerKit/tree/main/.claude/skills/db-inspect -g -y

Use without installing

npx skills use jhd3197/ServerKit@db-inspect

指定 Agent (Claude Code)

npx skills add jhd3197/ServerKit --skill db-inspect -a claude-code -g -y

安装 repo 全部 skill

npx skills add jhd3197/ServerKit --all -g -y

预览 repo 内 skill

npx skills add jhd3197/ServerKit --list

SKILL.md

Frontmatter
{
    "name": "db-inspect",
    "description": "Inspect the ServerKit SQLite database — show tables, schemas, row counts, and run queries. Runs via WSL for local dev or SSH MCP for production. Use when debugging data issues or understanding the current database state.",
    "allowed-tools": "Bash, mcp__ssh-mcp__exec",
    "argument-hint": "[query or table-name]",
    "disable-model-invocation": true
}

Inspect the ServerKit database. Argument: $ARGUMENTS

Database Location

  • Local dev: backend/instance/serverkit.db (relative to project root)
  • Production: /opt/serverkit/backend/instance/serverkit.db (access via SSH MCP)

If no argument or argument is "schema"

Show the full database schema:

sqlite3 backend/instance/serverkit.db '.schema'

And row counts for all tables:

sqlite3 backend/instance/serverkit.db "SELECT name FROM sqlite_master WHERE type='table' ORDER BY name;"

Then for each table, get the row count and present as a formatted table: Table Name | Row Count

If argument is a table name

Show the schema and last 10 rows:

sqlite3 -header -column backend/instance/serverkit.db 'PRAGMA table_info(<table>);'
sqlite3 -header -column backend/instance/serverkit.db 'SELECT * FROM <table> ORDER BY id DESC LIMIT 10;'

If argument looks like a SQL query

Run it directly:

sqlite3 -header -column backend/instance/serverkit.db '<query>'

If argument is "production" or "prod"

Run the schema/overview commands on the production server via SSH MCP instead, using /opt/serverkit/backend/instance/serverkit.db.

Safety

  • NEVER run DELETE, DROP, UPDATE, or INSERT queries unless explicitly asked
  • Always show the query before running it
  • For production, double-check with the user before running any query

Version History

  • 46a94c9 Current 2026-08-20 07:49

Same Skill Collection

.claude/skills/audit-less/SKILL.md
.claude/skills/audit-subprocess/SKILL.md
.claude/skills/create-pr/SKILL.md
.claude/skills/deploy/SKILL.md
.claude/skills/new-feature/SKILL.md

Metadata

Files
0
Version
9ce1003
Hash
85c762e3
Indexed
2026-08-20 07:49

trang chủ - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-31 21:07
浙ICP备14020137号-1 $bản đồ khách truy cập$