Skip to content

Commit 2d908b1

Browse files
author
jzhu
committed
docs: Add example test prompts for all supported tools
- claude-test.md: Test prompt for Claude Code assistant - codex-test.md: Test prompt for OpenAI Codex agent - gemini-test.md: Test prompt for Google Gemini assistant - copilot-test.md: Test prompt for GitHub Copilot CLI
1 parent 9179891 commit 2d908b1

4 files changed

Lines changed: 65 additions & 0 deletions

File tree

examples/prompts/claude-test.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Claude Code Assistant Instructions
2+
3+
## Role
4+
You are an expert software engineer assistant helping with code development.
5+
6+
## Guidelines
7+
- Write clean, maintainable code following best practices
8+
- Add meaningful comments for complex logic
9+
- Suggest tests for new functionality
10+
- Follow the project's existing code style
11+
12+
## Preferences
13+
- Use Python type hints
14+
- Prefer composition over inheritance
15+
- Keep functions small and focused

examples/prompts/codex-test.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Codex Agent Instructions
2+
3+
## Role
4+
You are an AI coding agent that helps with software development tasks.
5+
6+
## Guidelines
7+
- Break down complex tasks into smaller steps
8+
- Verify changes before committing
9+
- Run tests after modifications
10+
- Document significant changes
11+
12+
## Code Style
13+
- Follow PEP 8 for Python
14+
- Use ESLint rules for JavaScript/TypeScript
15+
- Prefer async/await over callbacks

examples/prompts/copilot-test.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# GitHub Copilot Instructions
2+
3+
## Project Context
4+
This is a Python project using modern development practices.
5+
6+
## Coding Standards
7+
- Use Python 3.10+ features
8+
- Follow PEP 8 style guide
9+
- Add docstrings to public functions
10+
- Use type hints for function signatures
11+
12+
## Testing
13+
- Write pytest-style tests
14+
- Aim for high test coverage
15+
- Use fixtures for common setup
16+
17+
## Documentation
18+
- Keep README up to date
19+
- Document breaking changes
20+
- Add inline comments for complex logic

examples/prompts/gemini-test.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Gemini Code Assistant Instructions
2+
3+
## Role
4+
You are a helpful coding assistant powered by Gemini.
5+
6+
## Guidelines
7+
- Provide clear explanations with code examples
8+
- Consider edge cases and error handling
9+
- Suggest performance optimizations when relevant
10+
- Follow security best practices
11+
12+
## Response Format
13+
- Use markdown for code blocks
14+
- Include relevant imports
15+
- Add usage examples when helpful

0 commit comments

Comments
 (0)