generate_clarinet_project
Create a complete Clarinet project with proper structure, configuration, and starter smart contracts for Stacks blockchain development using predefined templates.
Instructions
Generate a complete Clarinet project setup with proper structure, configuration, and starter contracts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectName | Yes | Name of the Clarinet project to create | |
projectPath | No | Path where to create the project (default: current directory) | |
template | No | Project template to use |
Input Schema (JSON Schema)
{
"properties": {
"projectName": {
"description": "Name of the Clarinet project to create",
"type": "string"
},
"projectPath": {
"description": "Path where to create the project (default: current directory)",
"type": "string"
},
"template": {
"description": "Project template to use",
"enum": [
"counter",
"nft",
"fungible-token",
"empty"
],
"type": "string"
}
},
"required": [
"projectName"
],
"type": "object"
}