Quick Start
Development Commands
Complete reference of all development commands available in your SkipSetup project.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Complete reference of all development commands available in your SkipSetup project.
# Start interactive chat session
kiro-cli
# Chat with a specific AI agent
kiro-cli --agent auth-expert
kiro-cli --agent database-architect
kiro-cli --agent fullstack-specialist
kiro-cli --agent ui-specialist
kiro-cli --agent payment-integrator
# Example 1: Get help with database changes
kiro-cli --agent database-architect
# You: "add audit logging to the user model"
# Kiro: Provides Prisma schema changes and migration steps
# Example 2: Build UI components
kiro-cli --agent ui-specialist
# You: "create a responsive user profile component"
# Kiro: Generates React component with Tailwind CSS
# Example 3: Implement complete feature
kiro-cli --agent fullstack-specialist
# You: "build a file upload system with S3 storage"
# Kiro: Provides end-to-end implementation from API to UI
# Apply schema changes to database
pnpm db:push
# Generate Prisma client
pnpm db:generate
# Seed database with sample data
pnpm db:seed
# Open Prisma Studio (database GUI)
pnpm db:studio
# Create migration (if using migrations)
pnpm db:migrate
