nodel-recipes

nodel-recipes is a skill for Claude Code, Codex from scroix/nodel-skills. It costs 75 tokens per session (702 once invoked), scanned A, original, MIT.

A guide for writing Nodel recipe scripts that control devices, automation, timers, events, protocols, and integrations. Nodel recipes run on a bundled Jython 2.5 runtime, so their code must use older Python syntax and APIs.

In plain words
What is it for?
Use it to create or revise a Nodel script.py recipe, define parameters and actions, connect devices, handle protocol messages, add timers, and test automation on a disposable node.
Why use it?
It helps prevent scripts from using Python features the Nodel runtime cannot run. It also encourages checking existing settings and logs, defining stable actions and events, and cleaning up long-running connections.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the nodel plugin — 4 skills shipped together

Good fit Use it to create or revise a Nodel script.py recipe, define parameters and actions, connect devices, handle protocol messages, add timers, and test automation on a disposable node.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/scroix/nodel-skills/nodel-recipes
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add scroix/nodel-skills --skill nodel-recipes
Clone the repo
git clone --depth 1 https://github.com/scroix/nodel-skills

Made for: Claude Code, Codex.

Or install nodel, the plugin that ships this one along with the rest of its 4 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nodel-recipes

README.md
[![agentmods](https://agentmods.dev/badge/skills/scroix/nodel-skills/nodel-recipes/github.svg)](https://agentmods.dev/skills/scroix/nodel-skills/nodel-recipes)
Your own site
<a href="https://agentmods.dev/skills/scroix/nodel-skills/nodel-recipes"><img src="https://agentmods.dev/badge/skills/scroix/nodel-skills/nodel-recipes/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for nodel-recipes

Your own site · 80×15
<a href="https://agentmods.dev/skills/scroix/nodel-skills/nodel-recipes"><img src="https://agentmods.dev/badge/skills/scroix/nodel-skills/nodel-recipes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 702 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.00702
Opus 5 $0.00037 $0.00351
Sonnet 5 $0.00015 $0.00140
Haiku 4.5 $0.00007 $0.00070

Measured 12d ago against content hash 7faa296c686c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

nodel-recipes scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/nodel-recipes/SKILL.md · 87 lines

How it starts

The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Nodel Recipe Development

Create and revise Nodel script.py recipes for device control, automation, and integration work.

Workflow

  1. Inspect the existing recipe, parameter values, bindings, and node logs before changing behavior.
  2. Define parameters and public action/event schemas before protocol or device logic.
  3. Initialize connections and timers only after parameters are available.
  4. Keep protocol callbacks small: parse input, update connection state, and emit stable events.
  5. Add cleanup for long-running connections, timers, or processes.
  6. Exercise the recipe on a disposable or non-production node and inspect err console entries.

Recipe Layout

My Recipe/
├── script.py
└── content
    ├── index.xml
    ├── css
    │   └── custom.css
    └── js
        └── custom.js

Only script.py is required.

Critical Runtime Constraint

Nodel runs node scripts with the bundled Jython 2.5.4-rc1 runtime. Use Python 2.5-era syntax and APIs.

try:
    value = int('42')
except Exception, e:
    console.error('Operation failed: %s' % e)

Do not use Python 3 exception syntax, f-strings, dictionary comprehensions, set literals, or APIs added after Python 2.5. Do not assume CPython packages are available.

Minimal Recipe Shape

param_ipAddress = Parameter({
    'title': 'IP Address',
    'schema': {'type': 'string'}
})

local_event_Status = LocalEvent({'schema': {'type': 'string'}})

@local_action({'schema': {'type': 'string'}})
def Power(arg):
    local_event_Status.emit(arg)

def main():
    console.info('Node starting')

@after_main
def setup():
    local_event_Status.emit('Ready')

@at_cleanup
def cleanup():
    console.info('Node stopping')

Use schemas that match the values actions accept and events emit. Prefer explicit state variables updated by protocol callbacks over probing undocumented internals.

References

  • Read references/jython-syntax.md whenever writing language syntax, imports, exception handling, collection code, or standard-library calls.
  • Read references/toolkit-api.md when using parameters, actions, events, timers, lifecycle decorators, network protocols, HTTP, processes, utilities, or node-state helpers.
  • Read references/patterns.md when implementing polling, health status, state arbitration, binary protocols, HTTP integrations, dynamic bindings, process control, chained operations, logging, or parameter validation.

Read the full file on GitHub · 87 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 87 lines · 75 tokens per session scan A 7faa296c686c

Subscribe to this mod's changes

nodel-recipes is a skill published in the GitHub repository scroix/nodel-skills (2 stars, last pushed 1mo ago), licensed MIT. It adds 75 tokens to every session and 702 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ruview-cli-api

Use the RuView wifi-densepose CLI binary (incl. MAT scan/status/zones/survivors/alerts/export subcommands), the REST API (wifi-densepose-api, Axum), and the browser/WASM build (wifi-densepose-wasm, wifi-densepose-wasm-edge). Use when integrating RuView into another program, scripting it from the shell, exposing it…

ruvnet/RuView · 104 tokens

amazon-alexa

Integracao completa com Amazon Alexa para criar skills de voz inteligentes, transformar Alexa em assistente com Claude como cerebro (projeto Auri) e integrar com AWS ecosystem (Lambda, DynamoDB, Polly, Transcribe, Lex, Smart Home).

sickn33/agentic-awesome-skills · 53 tokens

doca-socket-relay

Use this skill when the operator is driving the DOCA Socket Relay to bridge a socket-oriented host application onto a BlueField DPU peer without rewriting it — picking the deployment shape (in-process, sidecar, or BlueField service container), configuring the host-side socket and the DPU-side forwarding endpoint…

NVIDIA/skills · 236 tokens

jetson-customize-pcie

Per-controller PCIe enable / disable / lanes / link-speed for a Jetson Thor or Orin custom carrier via ODMDATA + kernel-DT overlay. Do NOT use for UPHY lane allocation or endpoint-mode bring-up.

NVIDIA/skills · 53 tokens

deepep-to-cam-converter

A code migration skill for replacing DeepEP communication operations with CAM operations when moving mixture-of-experts code from CUDA/NCCL to Ascend NPUs.

XiaoLuoLYG/GOD · 63 tokens

telnyx-iot-curl

Manage IoT SIM cards, eSIMs, data plans, and wireless connectivity. Use when building IoT/M2M solutions. This skill provides REST API (curl) examples.

team-telnyx/ai · 45 tokens