app_create
Generate a web application directory with starter files for quick setup. Includes a utility for API calls via Goose. Customize content or replace with existing HTML, CSS, or JS files.
Instructions
Create a new web application directory and copy starter files.
The starter files are for you to replace with actual content, you don't have to use them as is.
the goose_api.js file is a utility you will want to keep in case you need to do api calls as part of your app via goose.
Args:
app_name: Name of the application (will be used as directory name)
description: Brief description of the application (default: "")
Returns:
A dictionary containing the result of the operation
After this, consider how you want to change the app to meet the functionality, look at the examples in resources dir if you like.
Or, you can replace the content with existing html/css/js files you have (just make sure to leave the goose_api.js file in the app dir)
Use the app_error tool once it is opened and user has interacted (or has started) to check for errors you can correct the first time, this is important to know it works.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_name | Yes | ||
description | No |
Input Schema (JSON Schema)
{
"properties": {
"app_name": {
"title": "App Name",
"type": "string"
},
"description": {
"default": "",
"title": "Description",
"type": "string"
}
},
"required": [
"app_name"
],
"title": "app_createArguments",
"type": "object"
}