enact/hello-ruby

A simple Ruby greeting tool

$ 설치

git clone https://github.com/EnactProtocol/enact /tmp/enact && cp -r /tmp/enact/examples/hello-ruby ~/.claude/skills/enact

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


enact: "2.0.0" name: "enact/hello-ruby" version: "1.0.1" description: "A simple Ruby greeting tool" license: "MIT" from: "ruby:3.3-alpine"

inputSchema: type: object properties: name: type: string description: "Name to greet" default: "World"

outputSchema: type: object properties: greeting: type: string

command: "ruby /workspace/hello.rb ${name}"

Hello Ruby

A simple Ruby tool that greets you by name.

Usage

enact run ./examples/hello-ruby --input "name=Alice"