원클릭으로
lvt-plan
Present a complete plan for new LiveTemplate apps. NO QUESTIONS - just fill in the template below and show it.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Present a complete plan for new LiveTemplate apps. NO QUESTIONS - just fill in the template below and show it.
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-plan |
| description | Present a complete plan for new LiveTemplate apps. NO QUESTIONS - just fill in the template below and show it. |
| keywords | ["lvt","livetemplate","lt","app","application","create","build","make","new","plan"] |
| requires_keywords | true |
| category | workflows |
| version | 4.0.0 |
📋 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