share_persona
Create a shareable URL for a specific persona, allowing others to access it for a customizable number of days.
Instructions
Generate a shareable URL for a persona
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expiryDays | No | Number of days the share link is valid (default: 7) | |
persona | Yes | The persona name or filename to share |
Input Schema (JSON Schema)
{
"properties": {
"expiryDays": {
"description": "Number of days the share link is valid (default: 7)",
"type": "number"
},
"persona": {
"description": "The persona name or filename to share",
"type": "string"
}
},
"required": [
"persona"
],
"type": "object"
}