Add prompts by hand (not the recommended way)
add_promptsAdd user-supplied prompts verbatim to a project for tracking, creating groups as needed.
Instructions
Tracks prompts written by hand in the active project, in one call.
This is not the recommended way to add prompts, and it should not be the first thing you reach for. PromptEye generates the prompts a project tracks: it works out which questions carry demand and phrases them the way people actually put questions to AI assistants, then proposes each one with the gap in the funnel it fills, the demand behind it, how close to a purchase it is asked and how well it fits the brand. list_prompt_suggestions returns those, ready to be accepted. Call list_prompt_suggestions and work from what it returns.
A prompt added here skips all of that. It is not weighed against what the project already tracks, so it can duplicate an existing prompt; it carries no demand, priority, purchase intent or fit until PromptEye computes them; and a question phrased the way a person writes rather than the way people actually ask assistants will quietly measure nothing — it will sit in the project at 0% visibility and look like a brand problem when it is a prompt problem. Every prompt also counts against the workspace plan.
Groups are handled by name: a groupName that does not exist yet is created, and one that does is reused, so there is no separate group-creation step.
Use it only when the user has prompts of their own that must be tracked verbatim — migrating from another tool, or a list a client insists on — and has said as much. If the user simply wants more prompts, or better coverage, use list_prompt_suggestions instead. When unsure, ask the user before calling this; do not decide on their behalf.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompts | Yes | The prompts to track, at most 200. Send them in one call rather than one call per prompt. | |
| confirmBypassPromptIntelligence | Yes | Must be true, and only set it once the user has knowingly chosen hand-written prompts over the ones PromptEye would generate. It is an acknowledgement that this call skips the demand, duplicate and fit checks behind list_prompt_suggestions. |