
test-printing
Simple skill that prints a templated message with agf_id and prompt
提供方 ashneyderman|开源
What I do
- Accept two parameters: agf_id and prompt
- Format them into a JSON message
- Return the formatted output
Instructions
When this skill is loaded, follow these steps:
- Extract the agf_id parameter (first argument)
- Extract the prompt parameter (second argument)
- Create an output message with format: "test printing: {agf_id} - {prompt}"
- Return a JSON object with this exact structure:
{
"message": "test printing: {agf_id} - {prompt}"
}
Example Usage
If called with agf_id="agf-001" and prompt="test prompt", return:
{
"message": "test printing: agf-001 - test prompt"
}