원클릭으로
lvt-manage-kits
Manage CSS framework kits - list available kits, view kit info, validate kits, and create custom kits
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage CSS framework kits - list available kits, view kit info, validate kits, and create custom kits
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-manage-kits |
| description | Manage CSS framework kits - list available kits, view kit info, validate kits, and create custom kits |
| category | core |
| version | 1.0.0 |
| keywords | ["lvt","livetemplate","lt"] |
Manage CSS framework kits in LiveTemplate. List system/local/community kits, view kit details, validate kit structure, customize existing kits, and create new kits.
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 kits
lvt kits list
lvt kits list --filter system # Only system kits
lvt kits list --filter local # Only local kits
lvt kits list --format json # JSON output
# View kit info
lvt kits info multi # Show multi kit details
lvt kits info single # Show single kit details
# Validate a kit
lvt kits validate custom-kit # Validate kit structure
# Create new kit (advanced)
lvt kits create my-bootstrap-kit --based-on multi
# Customize existing kit
lvt kits customize multi --name my-custom-multi
lvt kits list)Shows:
Filters:
--filter system - Built-in kits (multi, single, simple)--filter local - Your custom kits--filter community - Community-contributed kits--search <term> - Search by name or frameworkFormats:
--format table - Pretty table (default)--format json - Machine-readable JSON--format simple - Name-only listlvt kits info <kit>)Shows:
lvt kits validate <kit>)Checks:
multi (Multi-page with Tailwind CSS)
single (Single-page with Tailwind CSS)
simple (Minimal with Pico CSS)
lvt kits info <kit>lvt kits validate <kit>Issue: "kit not found"
lvt kits list to see available kitsIssue: "invalid manifest"
Issue: "missing components"
List (table format):
Available kits (3):
Name Framework Description Source
multi Tailwind Multi-page apps with Tailwind CSS system
single Tailwind SPA with Tailwind CSS system
simple Pico Minimal apps with Pico CSS system
Info:
Kit: multi
Framework: Tailwind CSS
Description: Full-featured multi-page applications
Components:
- layout.tmpl (base page layout)
- table.tmpl (data tables)
- form.tmpl (input forms)
- pagination.tmpl (infinite, load-more, prev-next, numbers)
- toolbar.tmpl (actions, search, filters)
- stats.tmpl (metrics display)
Templates:
- resource/* (CRUD resources)
- view/* (UI-only pages)
- auth/* (authentication)
- app/* (application base)
Helpers:
- Icon(), Button(), Alert(), Badge()
- Table(), Form(), Input(), Select()
Directory structure:
~/.config/lvt/kits/my-custom-kit/
├── kit.yaml # Manifest
├── components/ # Reusable components
│ ├── layout.tmpl
│ ├── table.tmpl
│ └── form.tmpl
└── templates/ # Generation templates
├── resource/
├── view/
└── app/
Manifest (kit.yaml):
name: my-custom-kit
description: Custom kit with Bootstrap
cssFramework: Bootstrap
version: 1.0.0
components:
- layout
- table
- form
helpers:
- Icon
- Button
lvt new cannot be changed later