Marketplace enact-hello-js

A simple JavaScript greeting tool

install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/enactprotocol/enact-hello-js" ~/.claude/skills/aiskillstore-marketplace-enact-hello-js && rm -rf "$T"
manifest: skills/enactprotocol/enact-hello-js/SKILL.md
source content

Hello JS Tool

A simple example tool that demonstrates using JavaScript with Enact.

Usage

This tool takes an optional

name
parameter and returns a friendly greeting.

Examples

# Default greeting
enact run examples/hello-js
# Output: Hello, World! 👋

# Custom name
enact run examples/hello-js --input name=Alice
# Output: Hello, Alice! 👋