Prototyping out some plugins

This commit is contained in:
Aaron Powell
2026-02-02 10:04:02 +11:00
parent ccdfd66cc2
commit 6260cd8272
50 changed files with 380 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "testing-automation",
"description": "Comprehensive collection for writing tests, test automation, and test-driven development including unit tests, integration tests, and end-to-end testing strategies.",
"version": "1.0.0",
"author": {
"name": "Awesome Copilot Community"
},
"repository": "https://github.com/github/awesome-copilot",
"license": "MIT"
}

View File

@@ -0,0 +1,44 @@
# Testing & Test Automation Plugin
Comprehensive collection for writing tests, test automation, and test-driven development including unit tests, integration tests, and end-to-end testing strategies.
## Installation
```bash
copilot plugin install github/awesome-copilot/plugins/testing-automation
```
## Agents
| Agent | Description |
|-------|-------------|
| `tdd-red` | Write failing tests first (Red phase of TDD) |
| `tdd-green` | Write minimal code to pass tests (Green phase of TDD) |
| `tdd-refactor` | Refactor while keeping tests green (Refactor phase of TDD) |
| `playwright-tester` | End-to-end testing with Playwright |
## Commands
| Command | Description |
|---------|-------------|
| `/testing-automation:playwright-explore-website` | Explore a website with Playwright |
| `/testing-automation:playwright-generate-test` | Generate Playwright tests |
| `/testing-automation:csharp-nunit` | Generate C# NUnit tests |
| `/testing-automation:java-junit` | Generate Java JUnit tests |
| `/testing-automation:ai-prompt-engineering-safety-review` | Review AI prompts for safety |
## TDD Workflow
Use the three TDD agents in sequence:
1. `@tdd-red` - Write a failing test for the feature
2. `@tdd-green` - Implement just enough code to pass
3. `@tdd-refactor` - Clean up while tests stay green
## Source
Part of [Awesome Copilot](https://github.com/github/awesome-copilot).
## License
MIT

View File

@@ -0,0 +1 @@
../../../agents/playwright-tester.agent.md

View File

@@ -0,0 +1 @@
../../../agents/tdd-green.agent.md

View File

@@ -0,0 +1 @@
../../../agents/tdd-red.agent.md

View File

@@ -0,0 +1 @@
../../../agents/tdd-refactor.agent.md

View File

@@ -0,0 +1 @@
../../../prompts/ai-prompt-engineering-safety-review.prompt.md

View File

@@ -0,0 +1 @@
../../../prompts/csharp-nunit.prompt.md

View File

@@ -0,0 +1 @@
../../../prompts/java-junit.prompt.md

View File

@@ -0,0 +1 @@
../../../prompts/playwright-explore-website.prompt.md

View File

@@ -0,0 +1 @@
../../../prompts/playwright-generate-test.prompt.md