Files
twenty/packages/twenty-apps/_template/twenty-app.json
T
Félix MalfaitandGitHub 30a2164980 First Application POC (#14382)
Quick proof of concept for twenty-apps + twenty-cli, with local
development / hot reload

Let's discuss it!



https://github.com/user-attachments/assets/c6789936-cd5f-4110-a265-863a6ac1af2d
2025-09-10 15:12:38 +02:00

22 lines
796 B
JSON

{
"standardId": "com.yourcompany.your-app-name",
"label": "Your App Name",
"description": "A brief description of what your application does",
"version": "1.0.0",
"icon": "⭐",
"agents": [
{
"standardId": "com.yourcompany.your-app-name.assistant",
"name": "assistant",
"label": "App Assistant",
"description": "AI assistant for your application",
"icon": "🤖",
"prompt": "You are a helpful assistant for [Your App Name]. Help users with:\n\n1. Understanding app features\n2. Navigating the interface\n3. Completing common tasks\n4. Troubleshooting issues\n5. Providing guidance and tips\n\nBe helpful, clear, and focused on the user's needs.",
"modelId": "gpt-4",
"responseFormat": {
"type": "text"
}
}
]
}