83 lines
1.3 KiB
Markdown
83 lines
1.3 KiB
Markdown
# test.example
|
|
|
|
A simple test skill for validating the meta.create orchestrator workflow
|
|
|
|
## Overview
|
|
|
|
**Purpose:** A simple test skill for validating the meta.create orchestrator workflow
|
|
|
|
**Command:** `/test/example`
|
|
|
|
## Usage
|
|
|
|
### Basic Usage
|
|
|
|
```bash
|
|
python3 skills/test/example/test_example.py
|
|
```
|
|
|
|
### With Arguments
|
|
|
|
```bash
|
|
python3 skills/test/example/test_example.py \
|
|
--input_data_(string)_-_test_input_data "value" \
|
|
--output-format json
|
|
```
|
|
|
|
## Inputs
|
|
|
|
- **input_data (string) - Test input data**
|
|
|
|
## Outputs
|
|
|
|
- **output_result (string) - Processed result**
|
|
|
|
## Artifact Metadata
|
|
|
|
### Consumes
|
|
|
|
- `test.input`
|
|
|
|
### Produces
|
|
|
|
- `test.result`
|
|
|
|
## Examples
|
|
|
|
- Process test data and produce test results
|
|
- Validate meta.create orchestration workflow
|
|
|
|
## Permissions
|
|
|
|
- `filesystem:read`
|
|
|
|
## Implementation Notes
|
|
|
|
This is a minimal test skill to verify that meta.create can properly orchestrate the creation of skills, check for duplicates, and validate compatibility.
|
|
|
|
## Integration
|
|
|
|
This skill can be used in agents by including it in `skills_available`:
|
|
|
|
```yaml
|
|
name: my.agent
|
|
skills_available:
|
|
- test.example
|
|
```
|
|
|
|
## Testing
|
|
|
|
Run tests with:
|
|
|
|
```bash
|
|
pytest skills/test/example/test_test_example.py -v
|
|
```
|
|
|
|
## Created By
|
|
|
|
This skill was generated by **meta.skill**, the skill creator meta-agent.
|
|
|
|
---
|
|
|
|
*Part of the Betty Framework*
|