원클릭으로
lvt-resource-inspect
Inspect database resources and schema - list all tables, view table structure, analyze columns and constraints
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Inspect database resources and schema - list all tables, view table structure, analyze columns and constraints
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when deploying LiveTemplate applications to production - covers Docker containerization, Fly.io deployment, Kubernetes setup, database persistence, and production best practices
Transform app to production-ready - adds authentication, deployment config, environment setup, and best practices
Use when deploying LiveTemplate applications to production - covers Docker containerization, Fly.io deployment, Kubernetes setup, database persistence, and production best practices
Rapid end-to-end workflow - creates app, adds resources, sets up development environment in one flow
Generate test apps, capture screenshots, analyze UI for issues, and recursively fix problems in kit templates
Use when adding database migrations to LiveTemplate apps - guides both auto-generated migrations (from lvt gen resource) and custom migrations (indexes, constraints, data transformations)
| name | lvt-resource-inspect |
| description | Inspect database resources and schema - list all tables, view table structure, analyze columns and constraints |
| category | core |
| version | 1.0.0 |
| keywords | ["lvt","livetemplate","lt"] |
Inspect existing database resources (tables) in your LiveTemplate application. View schema structure, column details, constraints, and relationships without modifying anything.
This skill typically runs in existing LiveTemplate projects (.lvtrc exists).
✅ Context Established By:
.lvtrc exists (most common scenario)lvt-assistant agentKeyword matching (case-insensitive): lvt, livetemplate, lt
With Context: ✅ Generic prompts related to this skill's purpose
Without Context (needs keywords): ✅ Must mention "lvt", "livetemplate", or "lt" ❌ Generic requests without keywords
When to use:
Examples:
# List all resources
lvt resource list
lvt resource ls # alias
# Describe specific resource
lvt resource describe users
lvt resource desc users # alias
lvt resource show users # alias
List command (lvt resource list):
Describe command (lvt resource describe <name>):
.lvtrc exists)lvt resource listlvt resource describe <table_name>Issue: "failed to parse schema"
database/schema.sqlIssue: "No resources found in schema"
lvt gen resourceIssue: "resource 'X' not found"
lvt resource list first to see available tablesList command:
Available resources:
users (7 fields)
posts (6 fields)
comments (5 fields)
sessions (4 fields)
Use 'lvt resource describe <name>' to see details
Describe command:
Resource: users
Table: users
Fields:
id INTEGER PRIMARY KEY
email TEXT NOT NULL UNIQUE
password_hash TEXT
email_verified INTEGER DEFAULT 0
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
Indexes:
idx_users_email (email)
Foreign Keys:
None