generate_mini_app_manifest
Generate a complete Base mini app manifest with all required fields including app name, description, category, and domain to streamline development workflow.
Instructions
Generate a complete Base mini app manifest with all required fields.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_name | Yes | Name of your mini app (max 32 chars) | |
category | Yes | Primary category for the app | |
description | Yes | App description (max 170 chars) | |
domain | Yes | Your app domain (e.g., myapp.vercel.app) | |
tags | No | Search tags (max 5, lowercase, no spaces) |
Input Schema (JSON Schema)
{
"properties": {
"app_name": {
"description": "Name of your mini app (max 32 chars)",
"type": "string"
},
"category": {
"description": "Primary category for the app",
"enum": [
"games",
"social",
"finance",
"utility",
"productivity",
"health-fitness",
"news-media",
"music",
"shopping",
"education",
"developer-tools",
"entertainment",
"art-creativity"
],
"type": "string"
},
"description": {
"description": "App description (max 170 chars)",
"type": "string"
},
"domain": {
"description": "Your app domain (e.g., myapp.vercel.app)",
"type": "string"
},
"tags": {
"description": "Search tags (max 5, lowercase, no spaces)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"app_name",
"description",
"category",
"domain"
],
"type": "object"
}