원클릭으로
lvt-quickstart
Rapid end-to-end workflow - creates app, adds resources, sets up development environment in one flow
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Rapid end-to-end workflow - creates app, adds resources, sets up development environment in one flow
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
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)
Intelligently suggest and add related resources based on domain and existing schema - uses context to recommend complementary resources
| name | lvt-quickstart |
| description | Rapid end-to-end workflow - creates app, adds resources, sets up development environment in one flow |
| keywords | ["lvt","livetemplate","lt"] |
| category | workflows |
| version | 2.0.0 |
Get from zero to working app in minutes. This workflow creates a complete working application with resources and development environment ready.
NEVER start executing commands without user approval.
📋 Plan for your DOMAIN app
| Setting | Value |
|---|---|
| App name | NAME |
| Primary resource | RESOURCE (FIELDS) |
| Authentication | AUTH |
| Kit | multi (full page layout) |
| Test data | 50 records |
Command I'll run:
___CHAINED_COMMAND___
Ready to create? Type yes to proceed, or tell me what to change.
Want to customize? Tell me if you'd like to change:
multi (full page layout), single (component-only SPA), simple (minimal prototype)infinite, load-more, prev-next, numbersmodal (default) or page| If user mentions | DOMAIN | NAME | RESOURCE | FIELDS | AUTH |
|---|---|---|---|---|---|
| blog | blog | blog | posts | title:string content:text published:bool | Password |
| shop/store/ecommerce | e-commerce | shop | products | name:string description:text price:float | Password |
| todo | todo | todo | tasks | title:string completed:bool due_date:time | Password |
| crm/contacts | CRM | crm | contacts | name:string email:string company:string | Password |
| forum | forum | forum | topics | title:string content:text | Password |
| (other) | app | app | items | name:string description:text | None |
WITH auth (use when AUTH = Password):
lvt new ___NAME___ --kit multi && \
cd ___NAME___ && \
lvt gen resource ___RESOURCE___ ___FIELDS___ && \
lvt gen auth && \
lvt migration up && \
go mod tidy && \
lvt seed ___RESOURCE___ --count 50
WITHOUT auth (use when AUTH = None):
lvt new ___NAME___ --kit multi && \
cd ___NAME___ && \
lvt gen resource ___RESOURCE___ ___FIELDS___ && \
lvt migration up && \
go mod tidy && \
lvt seed ___RESOURCE___ --count 50
Then WAIT. Do not execute until user approves.
If user says "advanced", show:
⚙️ **Advanced Options**
| Option | Current | Alternatives |
|--------|---------|--------------|
| Kit | multi | single, simple |
| CSS Framework | tailwind | pico, bulma, bootstrap |
| Pagination | infinite scroll | page numbers |
| Edit Mode | modal | inline, page |
| Database | sqlite | postgres (requires setup) |
What would you like to change?
This skill activates when user mentions "lvt", "livetemplate", or "lt" with words like "create", "build", "quickstart", "new app".
Examples:
When user says "yes":
cd ___NAME___ && lvt serveQuickstart is successful when: