generate_mini_app_code
Generate starter code for Base mini apps with MiniKit integration, supporting Next.js, vanilla, and React frameworks with customizable features like authentication and wallet connectivity.
Instructions
Generate starter code for a Base mini app with MiniKit integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_name | Yes | Name of your app | |
app_type | Yes | Type of mini app to generate | |
features | No | Features to include |
Input Schema (JSON Schema)
{
"properties": {
"app_name": {
"description": "Name of your app",
"type": "string"
},
"app_type": {
"description": "Type of mini app to generate",
"enum": [
"nextjs",
"vanilla",
"react"
],
"type": "string"
},
"features": {
"description": "Features to include",
"enum": [
"authentication",
"wallet_connect",
"transactions",
"notifications",
"sharing"
],
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"app_type",
"app_name"
],
"type": "object"
}