跳到主要内容
知仓学习社ZHICANG

wakewire-inspect

Triage wakewire delivery problems — events not arriving, failed or held deliveries, duplicates, rate-limit digests. Use when the user asks why an ex…

不碰外部(只输出文字)无严重或高危命中hashgraph-online/awesome-codex-plugins

它会碰到什么

扫了多少1 个文本文件,3 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

You are debugging wakewire deliveries. Work the pipeline in order: source → route → queue → sink.

1. Daemon and sources

wakewire_status shows queue depth, adapter reachability, and per-source counters (received, rejected, connected, lastEventAt, lastError).

  • Source rejected climbing → webhook signature failures. The secret in GitHub and the one stored at setup time don't match; re-run wakewire_source_setup_github.
  • Gmail connected: false with lastError → OAuth expired or label missing; re-run wakewire auth gmail, check the label exists.
  • adapter.codexReachable: false → the daemon can't spawn/reach codex; deliveries will sit in held and retry automatically.

2. Deliveries

wakewire_deliveries (filter with {status: "failed"}, {routeId: ...}, {limit: ...}). Status meanings:

  • queued / delivering — in progress.
  • delivered — done; threadId/turnId say where it went.
  • held — retrying with backoff (Codex app closed, thread busy, network). error has the reason, nextAttemptAt the next try. This self-heals; nothing to fix unless it persists.
  • failed — permanent (bad template field, deleted thread/route, or max retries). Read error.
  • skipped-duplicate — same source delivery id seen before (webhook redelivery). Expected, not a bug.
  • coalesced — folded into a digest turn because the route exceeded its rate limit; coalescedInto points at the digest delivery.

The renderedPrompt field shows exactly what was (or would be) injected — use it to debug template issues.

3. Common causes of "event never arrived"

  1. Event didn't match the route: check match in wakewire_route_list against the delivery log — repo must be owner/repo, branch filters only apply to pushes, gmail labels must match exactly.
  2. Route disabled — wakewire_route_toggle.
  3. No delivery row at all → the source never received it: webhook not firing (check GitHub's recent-deliveries page), smee channel disconnected, or Gmail label not applied.
  4. Duplicate id → skipped-duplicate (see above).

4. Fix and replay

After fixing a template or route, wakewire_replay with the failed delivery id re-renders against the current config and enqueues it again — no need to wait for a new event. Replays bypass duplicate detection by design.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。