⚠️ TEST REPOSITORY / TEST-REPOSITORY
This repository contains example prompts for testing and demonstration purposes only.
These prompts are NOT suitable for production use and serve as examples for the
prompt-mcp
package.🧪 NUR ZU TESTZWECKEN
Dieses Repository enthält Beispiel-Prompts nur zu Test- und Demonstrationszwecken.
Diese Prompts sind NICHT für den Produktiveinsatz geeignet und dienen als Beispiele
für dasprompt-mcp
Package.
This is a public test repository that demonstrates how to structure and organize prompts for use with the prompt-mcp
Model Context Protocol server. It contains sample prompts across different categories to showcase the capabilities of the prompt management system.
- 🚫 DO NOT use these prompts in production environments
- 🧪 These are EXAMPLES ONLY - created for testing and demonstration
- 🔒 Create your own private repository for production prompts
- ✅ Review and validate all prompts before using them in any real work context
If you want to use the prompt-mcp
system in your organization:
- Create a private repository for your organization's prompts
- Review the examples in this repository for structure and format guidance
- Implement proper access controls and review processes
- Configure your MCP server to point to your private repository
prompts/
├── techwriting/ # Technical writing and documentation prompts
│ ├── review.yaml # Document review prompt
│ └── style-guide.yaml # Style guide enforcement
├── backend/ # Backend development prompts
│ ├── api-design.yaml # API design guidelines
│ ├── database-optimization.yaml
│ └── microservices-architecture.yaml
└── shared/ # Cross-functional prompts
└── code-review.yaml # General code review prompt
Each prompt follows this YAML structure:
id: unique-prompt-id
name: Human Readable Name
version: 1.0.0
owners: [team-name]
visibility: internal
labels: [category, subcategory]
aliases: [alternative-names]
copilot:
mode: edit # or 'generate'
tools: ['codebase', 'terminal']
description: Brief description for VS Code
inputSchema:
type: object
properties:
content:
type: string
description: Input description
required: [content]
prompt:
system: |
System prompt content here
user: |
User prompt with {{content}} placeholders
This repository is automatically used by the prompt-mcp
package for testing. To test the system:
- Install prompt-mcp:
npm install -g prompt-mcp@latest
- Configure VS Code MCP to point to this repository (see prompt-mcp README)
- Test the prompts in a non-production environment
For production use, follow these steps:
# Create a private repository for your organization
gh repo create your-org/internal-prompts --private
Copy the structure from this repository but create your own prompts:
your-prompts/
├── engineering/
├── design/
├── product/
└── shared/
# Use SSH keys or personal access tokens
git remote set-url origin [email protected]:your-org/internal-prompts.git
{
"PROMPT_MCP_SOURCES": "[{\"type\":\"git\",\"id\":\"production\",\"url\":\"[email protected]:your-org/internal-prompts.git\",\"ref\":\"main\",\"path\":\"prompts\"}]"
}
If you want to contribute test examples to this repository:
- Fork this repository
- Add example prompts that demonstrate specific features
- Follow the YAML structure shown above
- Add clear descriptions indicating these are test examples
- Submit a pull request
- prompt-mcp - The MCP server that uses these prompts
- Model Context Protocol - The underlying protocol
- VS Code Custom Prompts - Integration target
This test repository is provided under the MIT License for educational and testing purposes.
For questions about production setup, see the prompt-mcp documentation.