What problem does it solve?
This Skill automates the process of interacting with a REST-AP enabled text processing agent, enabling quick analysis, formatting, and transformation of text with minimal manual steps.
Core Features & Use Cases
- Discover and talk to the agent to understand capabilities and gather guidance before making requests.
- Execute text operations such as echoing, reversing, and formatting text via the agent's /text/* endpoints.
- Use Case: Quickly analyze and format user-provided content (e.g., email drafts, reports) by sending text to the agent for analysis and returning structured results.
Quick Start
Use curl to discover capabilities via /.well-known/restap.json, then talk to the agent, and finally call a text capability like /text/echo with a JSON payload, for example:
curl -X POST http://agent.example.com/talk -H "Content-Type: application/json" -d '{"message": "What can you do with text?"}'
curl -X POST http://agent.example.com/text/echo -H "Content-Type: application/json" -d '{"text": "Hello World"}'