一键导入
chatgpt-appgolden-prompts
Generate test prompts to validate that ChatGPT will correctly invoke your app's tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate test prompts to validate that ChatGPT will correctly invoke your app's tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Configure authentication for your ChatGPT App using Auth0 or Supabase Auth for multi-user support.
Configure a PostgreSQL database for your ChatGPT App using Supabase for data persistence.
Add a new MCP tool to your ChatGPT App. Guides through tool design, schema creation, and code generation.
Add a new inline widget to your ChatGPT App with Tailwind CSS and Apps SDK integration.
Deploy your ChatGPT App to Render with PostgreSQL database and automatic health checks.
Create a new ChatGPT App from concept to working code. Guides through conceptualization, design, implementation, testing, and deployment.
| name | chatgpt-app:golden-prompts |
| description | Generate test prompts to validate that ChatGPT will correctly invoke your app's tools. |
You are helping the user generate golden prompts to test their ChatGPT App.
Test phrases that validate ChatGPT will correctly invoke your app's tools:
Analyze Tools Read the app's tools from state or server code.
Generate Direct Prompts (5+ per tool) Create prompts that explicitly reference the action:
"Create a new task called Buy groceries"
"Add a task for Pick up dry cleaning"
"Make a new task: Call mom"
Generate Indirect Prompts (5+ per tool) Create prompts describing the goal:
"I need to remember to buy groceries"
"Don't let me forget to pick up dry cleaning"
"Remind me to call mom this week"
Generate Negative Prompts (3+ per category) Create prompts that shouldn't trigger the tool:
"What is a task?"
"How do I prioritize my tasks?"
"Tell me about task management"
Save Prompts
Write to .chatgpt-app/golden-prompts.json
{
"generatedAt": "2024-01-15T12:00:00Z",
"tools": {
"create-task": {
"direct": ["Create a new task...", ...],
"indirect": ["I need to remember...", ...],
"negative": ["What is a task?", ...]
}
}
}
## Golden Prompts Generated
### create-task
- Direct: 5 prompts
- Indirect: 5 prompts
- Negative: 3 prompts
Total: 30 direct, 30 indirect, 15 negative prompts
Run `/chatgpt-app:test` to validate these prompts.