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
python3 skills/test/example/test_example.py
With Arguments
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:
name: my.agent
skills_available:
- test.example
Testing
Run tests with:
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