Prompts
A prompt is a system and user prompt pair kept as its own record — under a key, with optional labels and a schema — ready to attach to any agent and version alongside your code.
The pair
One record holds both halves of a prompt: the system prompt that sets the model's role, and the user prompt it works from. Give it a key and a name, and it's ready to attach to an agent.
You are a precise technical writer. Keep it plain.
Summarize the document in three bullet points.
Labels and schema
Tag a prompt with input and output labels to keep your library organized — they're plain text, yours to use as you like. And when a prompt needs a structured contract, attach a JSON schema for the input or output an agent should produce.
{
"type": "object",
"properties": {
"summary": { "type": "string" },
"topics": { "type": "array" }
}
}In Git
Prompts live in Git, so a change to how your AI behaves is a change you can see, review, and roll back — the same way you handle everything else in the repository.
Keep exploring