Prompt Template
This is the base template for registering a new prompt. Be sure to set frontmatter on each individual prompt page.
How to Use
- Create a new
.mdfile under the appropriate category. - Paste the template below.
- Fill in the required frontmatter fields.
- Write the input examples, output examples, and notes.
- Add a link to the corresponding category's
index.md.
Template
md
---
title: (Prompt Name)
description: (One sentence describing what the prompt does)
category: (writing / dev / ...)
intent: (Identifier that is easy for machine classification)
audience:
- (Intended user)
input_requirements:
- (Required input information)
tags:
- (Search tag)
status: draft
owner: (Managing team name)
last_reviewed: YYYY-MM-DD
---
# (Prompt Name)
## Intended Use
- (Usage scenario)
## Prompt Body
```text
(Prompt body that can be used as-is)
```
## How to Use
1. (How to fill in the inputs)
2. (Review points)
## Input Example
```text
(Input example)
```
## Output Example
```text
(Expected output example)
```
## Notes
- (Misuse prevention)
- (Points requiring human review)
```Review Checklist
- Do
descriptionandintentmatch? - Are
input_requirementscollectable in actual operations? - Does the output example satisfy the requirements in the prompt body?
- Do the notes include risks (misinformation, personal information, privilege overreach)?