nodel-recipes

Installation
SKILL.md

Nodel Recipe Development

Critical: Jython 2.5 Syntax

Node scripts execute under Jython 2.5.4. You MUST use Python 2.5-era syntax:

# CORRECT - Python 2.5 syntax
except Exception, e:
    console.error('Error: %s' % e)

# WRONG - Python 3 syntax (will fail)
except Exception as e:
    console.error(f'Error: {e}')

See references/jython-syntax.md for complete syntax reference.

Recipe File Structure

Installs
11
GitHub Stars
1
First Seen
Feb 11, 2026
nodel-recipes — scroix/nodel-skills