text-agent-client

Interact with a REST-API text processing agent to analyze and format text.

5|Updated Dec 29, 2025
One-click install
npx skills add https://github.com/nxt3d/rest-ap --skill text-agent-client
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: text-agent-client
Source: https://github.com/nxt3d/rest-ap/tree/main/example-plugin/skills/text-agent-skill
Command: npx skills add https://github.com/nxt3d/rest-ap --skill text-agent-client

SYSTEM DOCUMENTATION & REQUIREMENTS

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"}'