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
- Parse arguments from the frontmatter
args:block. - Dispatch to the node:
uv run onex run node_example -- \
--repos "${REPOS}" \
--dry-run
- Read result from
$ONEX_STATE_DIR/skill-results/. - 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.