nodel-use
Installation
SKILL.md
Interacting with Running Nodel Instances
Quick Reference
Default Base URL: http://localhost:8085
# List all nodes
curl http://localhost:8085/REST/nodes
# Get node console logs
curl "http://localhost:8085/REST/nodes/My%20Node/console?from=0&max=50"
# Invoke an action
curl -X POST "http://localhost:8085/REST/nodes/My%20Node/actions/Power/call" \
-H "Content-Type: application/json" -d '{"arg":"On"}'
Important: URL-encode node names with spaces (%20). See references/rest-api.md for all endpoints.