create_plugin
Build a Framer plugin project with integrated web3 features like wallet connections, contract interactions, and NFT displays. Specify the plugin name, description, and output path to get started.
Instructions
Create a new Framer plugin project with web3 capabilities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Plugin description | |
name | Yes | Plugin name | |
outputPath | Yes | Output directory path | |
web3Features | No | Web3 features to include |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Plugin description",
"type": "string"
},
"name": {
"description": "Plugin name",
"type": "string"
},
"outputPath": {
"description": "Output directory path",
"type": "string"
},
"web3Features": {
"description": "Web3 features to include",
"items": {
"enum": [
"wallet-connect",
"contract-interaction",
"nft-display"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"description",
"outputPath"
],
"type": "object"
}