Skip to main content
If you’re already paying for Claude Pro, ChatGPT Plus, or another LLM subscription, you can generate tinykit apps directly in those chat interfaces and import them—no API key needed.

How It Works

  1. Prompt your LLM with the template below
  2. Copy the JSON response
  3. Import on the app creation screen or History tab

Snapshot Format

tinykit uses a simple JSON format:
Only frontend_code is required. The rest are optional.

Prompt Template

Copy this into Claude, ChatGPT, or your preferred LLM:

Importing

New App

  1. Go to the app creation screen
  2. Click Import from JSON
  3. Paste or upload your JSON

Existing App

  1. Open the History tab (Cmd+6)
  2. Click the upload button (↑)
  3. Select your .json file

Tips

The most common problem is improper escaping in frontend_code. Newlines must be \n and quotes must be \". If your LLM outputs code blocks inside the JSON, ask it to:
Paste your JSON into jsonlint.com before importing. Common issues:
  • Trailing commas after last array/object item
  • Unescaped quotes in strings
  • Missing closing brackets