Initial upload: Local LLM Prompt Manager CLI tool
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-05 20:56:20 +00:00
parent e1353b2346
commit 0becdda8f8

View File

@@ -0,0 +1,26 @@
name: generate-tests
description: Generate unit tests for code
tags: [testing, development, code-generation]
variables:
- name: code
description: The code to generate tests for
required: true
- name: framework
description: Testing framework (pytest, unittest, jest)
required: false
default: pytest
template: |
Generate comprehensive unit tests for the following code using {{ framework }}:
```python
{{ code }}
```
Include:
- Test cases for normal operations
- Edge cases
- Error handling
- Comments explaining each test
provider: ollama
model: llama3.2