cc-changelog
CONTRIBUTOR TOOL - Track CC changelog, extract new versions since last check, analyze impact on plugin (breaking changes, opportunities, deprecations). Run…
Watch an Elixir/Phoenix PR with an Amp Orb keep-alive lease until required
$ npx -y skills add oliver-kriska/claude-elixir-phoenix --skill phx-watch-pr --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/phx-watch-prContext preview
The summary Claude sees to decide when to auto-load this skill.
Watch an Elixir/Phoenix PR with an Amp Orb keep-alive lease until required
name: phx-watch-pr description: Watch an Elixir/Phoenix PR with an Amp Orb keep-alive lease until required non-deployment CI is green and review threads are resolved.
Use the `elixir_phoenix_watch_pr` plugin tool. Do not launch `gh pr checks --watch`, `gh run watch`, a foreground sleep loop, or the copied Claude watcher script: none of those owns an Amp Orb keep-alive lease.
1. **Acquire one bounded keep-alive lease** — start the plugin lifecycle once, then let its durable state and dedupe handle polling and plugin reloads. 2. **Deployment is never readiness** — deployment, release, preview, production, and prod checks are reported under `excludedChecks`; they are never counted as passing or failing required CI. 3. **Never merge or deploy** — watching and `--fix` authorize neither action. 4. **`--fix` uses the same worker thread** — the plugin serializes one concise event turn at a time and directs that turn to the installed `phx-pr-review` workflow for actionable review feedback or failed required CI. Validate the cause before editing. 5. **Every watch is bounded** — timeout and every other terminal path release the lease. A timeout is incomplete, never success.
Parse the PR number/URL and flags, then call:
elixir_phoenix_watch_pr {
"action": "start",
"pr": "<number-or-url>",
"checksOnly": false,
"fix": false
}Map `--checks-only` and `--fix` to booleans. Map `--max-hours`, `--quiet-minutes`, and `--poll-seconds` to `maxDurationHours`, `quietPeriodMinutes`, and `pollIntervalSeconds`. Defaults are 2 hours maximum, 15 minutes quiet, and 60 seconds polling. Report the tool's initial snapshot and then stop taking turns; the plugin wakes this thread only for actionable failures or feedback and terminal outcomes.
distinct actionable snapshot. Pending and passing progress keeps polling inference-silent.
terminal summaries. Their transitions do not reset readiness or wake the model.
clock. This includes a review with no unresolved thread or dedicated check, but routine non-actionable activity does not wake the model.
CI failures include check names and links. Re-fetch threads or inspect logs, fix only valid branch-owned causes, verify, push the authorized PR branch update, reply, and resolve where appropriate. Do not blindly rerun shared CI.
activity for the full quiet period before success releases the lease. Never accept an early green snapshot as immediate readiness.
Use the same tool with `"action": "status"` or `"action": "stop"`. Stop is idempotent and releases the lease; it does not delete durable history.
The plugin registers an optional durable Amp webhook and stores its bearer URL in the owner-only credential file reported by the tool. If a repository administrator configures GitHub to send PR review/check events to that URL, a later event can wake the paused Orb and probe the authoritative PR state. Webhook events must identify the exact watched PR number or current watched head SHA; empty or unrelated repository events are ignored.
The plugin never changes GitHub webhook settings. Without that external setup, polling ends after the quiet period and a later human comment cannot wake a paused Orb. Say this explicitly; do not imply polling continues after lease release.
and billing behavior
Docs: phxagents.dev -- install guides per runtime, the runtime compatibility matrix, all 26 Iron Laws, and a browsable skill and agent catalog. Claude Code is great.
Repo: oliver-kriska/claude-elixir-phoenix
CONTRIBUTOR TOOL - Track CC changelog, extract new versions since last check, analyze impact on plugin (breaking changes, opportunities, deprecations). Run…
Run an A/B codex review experiment — holistic codex review vs 3 focused dimension passes (security, ecto, liveview) on the branch diff, classify findings,…
CONTRIBUTOR TOOL - Validate plugin against latest Claude Code documentation. Catches breaking changes, deprecations, discovers new features. Run before…
Guide plugin development workflow — editing skills, agents, hooks, or eval framework in this repo. Use when modifying files in plugins/elixir-phoenix/,…
Generate X/Twitter release promotion posts with ASCII tables and CodeSnap rendering. Use when writing release posts, promotion tweets, plugin announcements, or…
CONTRIBUTOR TOOL - Cut a plugin release: bump plugin.json version, finalize CHANGELOG, update README if needed, gate on make ci, commit, tag vX.Y.Z, and create…