test/echo-tool

A tool that echoes its input for testing

$ 安裝

git clone https://github.com/EnactProtocol/enact /tmp/enact && cp -r /tmp/enact/packages/cli/tests/fixtures/echo-tool ~/.claude/skills/enact

// tip: Run this command in your terminal to install the skill


enact: "2.0.0" name: test/echo-tool version: "1.0.0" description: A tool that echoes its input for testing from: alpine:latest command: echo '{"output":"${text}"}' inputSchema: type: object properties: text: type: string description: Text to echo required: - text outputSchema: type: object properties: output: type: string

Echo Tool

A simple tool that echoes back the input text. Used for testing.

Usage

enact run test/echo-tool --input text="Hello"