Skip to content

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.

License

Notifications You must be signed in to change notification settings

otto-de/otto_prompts_collection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Otto Prompts Collection

⚠️ 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 das prompt-mcp Package.

What is this repository?

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.

⚠️ Important Disclaimers

For Developers and Teams

  • 🚫 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

For Organizations

If you want to use the prompt-mcp system in your organization:

  1. Create a private repository for your organization's prompts
  2. Review the examples in this repository for structure and format guidance
  3. Implement proper access controls and review processes
  4. Configure your MCP server to point to your private repository

Repository Structure

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

Prompt Format

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

How to Use (Testing Only)

This repository is automatically used by the prompt-mcp package for testing. To test the system:

  1. Install prompt-mcp: npm install -g prompt-mcp@latest
  2. Configure VS Code MCP to point to this repository (see prompt-mcp README)
  3. Test the prompts in a non-production environment

Production Setup

For production use, follow these steps:

1. Create Your Own Repository

# Create a private repository for your organization
gh repo create your-org/internal-prompts --private

2. Structure Your Prompts

Copy the structure from this repository but create your own prompts:

your-prompts/
├── engineering/
├── design/
├── product/
└── shared/

3. Configure Security

# Use SSH keys or personal access tokens
git remote set-url origin [email protected]:your-org/internal-prompts.git

4. Update MCP Configuration

{
  "PROMPT_MCP_SOURCES": "[{\"type\":\"git\",\"id\":\"production\",\"url\":\"[email protected]:your-org/internal-prompts.git\",\"ref\":\"main\",\"path\":\"prompts\"}]"
}

Contributing to Tests

If you want to contribute test examples to this repository:

  1. Fork this repository
  2. Add example prompts that demonstrate specific features
  3. Follow the YAML structure shown above
  4. Add clear descriptions indicating these are test examples
  5. Submit a pull request

Related Projects

License

This test repository is provided under the MIT License for educational and testing purposes.


⚠️ Remember: This is a TEST REPOSITORY. Do not use these prompts in production!

For questions about production setup, see the prompt-mcp documentation.

About

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.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published