From erne-universal
Polls configured ticket providers for ready tickets and runs full ERNE pipeline: validate, plan, code in git worktree, test, review, and create PRs.
npx claudepluginhub jubakitiashvili/everything-react-native-expo# /erne-worker — Autonomous Ticket Execution ## Usage ## Options | Flag | Description | |------|-------------| | `--config <path>` | Path to worker configuration JSON (required) | | `--dry-run` | Fetch tickets and print them without executing | | `--once` | Process one ticket and exit | ## Pipeline Steps 1. **Poll** — Fetch ready tickets from the configured provider 2. **Validate** — Check ticket has enough detail (title, description, acceptance criteria) 3. **Confidence Score** — Estimate likelihood of autonomous success (0-100) 4. **Context Resolve** — Load project stack, audit dat...
erne worker --config <path-to-worker.json>
| Flag | Description |
|---|---|
--config <path> | Path to worker configuration JSON (required) |
--dry-run | Fetch tickets and print them without executing |
--once | Process one ticket and exit |
See worker.example.json at the project root for a full example. Key sections:
provider — Type, credentials, poll interval, filtersrepo — Local path, base branch, remoteerne — Hook profile, quality gates, confidence thresholdlog — File path and log level# Dry run to see available tickets
erne worker --config worker.json --dry-run
# Process one ticket and stop
erne worker --config worker.json --once
# Continuous polling mode
erne worker --config worker.json