# Compliant Thin Trigger

> Thin skill that dispatches to a node — compliant example

- Skill: `omninode-ai/compliant-thin-trigger` (Agent Skill)
- Install (CLI): `npx skillmds@latest add omninode-ai/compliant-thin-trigger`
- Raw SKILL.md: https://api.skillmd.com/api/skills/omninode-ai/compliant-thin-trigger/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: OmniNode-ai (https://skillmd.com/u/omninode-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/omninode-ai/compliant-thin-trigger

---


# 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:

```bash
uv run onex run node_example -- \
  --repos "${REPOS}" \
  --dry-run
```

3. Read result from `$ONEX_STATE_DIR/skill-results/`.
4. 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.

