From omni
Queries and analyzes Omni events via CLI: list/search/timeline, metrics/analytics, replay sessions/messages, journey tracing for event debugging and backfilling.
npx claudepluginhub automagik-dev/omni --plugin omniThis skill is limited to using the following tools:
Use `omni events` for event streams and `omni journey` for per-message tracing.
Inspects and queries Claude Code hook event logs from .claude/logs JSONL files. Subcommands list sessions, timelines, tool traces, agent lifecycles, team activity, stats, coverage, and daily summaries.
Share bugs, ideas, or general feedback.
Use omni events for event streams and omni journey for per-message tracing.
omni events list --since 24h --limit 100 --json
omni events list --instance <id> --type message.received --json
omni events list --chat-id <chatId> --since 24h --json
omni events list --since 24h --until "2026-02-25" --json
omni events search "error" --since 7d --limit 100 --json
omni events timeline <personId> --limit 100 --json
omni events metrics --json
omni events analytics --since 7d --json
omni events analytics --instance <id> --all-time --json
Re-process historical events through the event pipeline. Useful for rerunning automations or backfilling analytics.
# Start
omni events replay --start --since 7d --json
omni events replay --start --since 24h --types message.received,message.sent --speed 2 --json
omni events replay --start --since 7d --dry-run --json
omni events replay --start --since 7d --until "2026-02-20" --json
omni events replay --start --since 24h --instance <id> --json
# Check / cancel
omni events replay --status <sessionId> --json
omni events replay --cancel <sessionId> --json
omni replay is a separate, standalone command (not under omni events). It replays missed inbound messages for a specific agent instance — useful when an agent was offline and needs to catch up.
# Replay missed messages since instance's lastSeenAt (default, max 24h)
omni replay <instanceId>
# Replay messages received after a specific timestamp
omni replay wa-main --since 2026-02-27T10:00:00Z
Flags: --since <timestamp> (ISO 8601; default: instance's lastSeenAt, max 24h ago)
Key difference:
omni events replayre-processes events through the event bus (analytics, automations).omni replayre-delivers missed inbound messages to an agent instance.
omni journey show <correlationId> --json
omni journey summary --since 24h --json
events list supports --chat-id <id> and --until <time> for precise time-range filtering.events replay --start supports --until <time> and --instance <id>.events search supports --since and --limit (no --type flag there).omni events replay flags.omni replay <instanceId> (standalone command).