Compliant Thin Trigger

Thin skill that dispatches to a node — compliant example

OmniNode-ai 6f43c50 820 B Updated

File contents

Example Thin Trigger Skill

Overview

Thin skill that dispatches to node_example via onex run.

Announce at start: "I'm using the example skill."

How It Works

  1. Parse arguments from the frontmatter args: block.
  2. Dispatch to the node:
uv run onex run node_example -- \
  --repos "${REPOS}" \
  --dry-run
  1. Read result from $ONEX_STATE_DIR/skill-results/.
  2. Report results to the user.

Wiring

skill  -> plugins/onex/skills/example/ (thin wrapper)
node   -> omnimarket/src/omnimarket/nodes/node_example/ (all logic)

This skill is a thin wrapper — it parses arguments, dispatches to the omnimarket node via onex run node_example, and renders results.

OmniNode-ai/omniclaude/tree/main/tests/validation/fixtures/skill_node_boundary/compliant_thin_trigger commit 6f43c50c1e

Frequently asked questions

npx skillmds@latest add omninode-ai/compliant-thin-trigger