cc-changelog
CONTRIBUTOR TOOL - Track CC changelog, extract new versions since last check, analyze impact on plugin (breaking changes, opportunities, deprecations). Run…
Interactive briefing of a plan file — explains reasoning, schema decisions,
$ npx -y skills add oliver-kriska/claude-elixir-phoenix --skill phx-brief --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/phx-briefContext preview
The summary Claude sees to decide when to auto-load this skill.
Interactive briefing of a plan file — explains reasoning, schema decisions,
name: phx-brief description: Interactive briefing of a plan file — explains reasoning, schema decisions, component choices. Use when developers need to understand a plan before approving.
Interactive walkthrough of a plan's reasoning, decisions, and solution shape. Designed for developers who need to understand a plan in 1-2 minutes instead of reading the full document.
Plans answer "what to do" but bury "why." This skill bridges that gap with an interactive walkthrough.
phx-brief # Latest plan phx-brief .claude/plans/user-auth/plan.md # Specific plan
Read the plan file and determine mode from phase statuses:
(what WAS done and why)
1. If `$ARGUMENTS` has a path, use it 2. Otherwise, find latest plan:
Use Glob to find `.claude/plans/*/plan.md` and pick the most recent.
3. If no plan found, tell user and suggest `phx-plan` 4. Read the plan file
Read what's available (don't fail if missing):
Present ONE section at a time, wrapped in the visual briefing block (see `references/briefing-guide.md` Visual Formatting).
**The section MUST be emitted as visible response text BEFORE the `AskUserQuestion` call.** Content composed only in thinking/reasoning is invisible to the user, and the `question` field is too short to carry it. If the user would see only a "Continue?" dialog, the section was never shown. Write the ★ Briefing block as normal output first, then ask:
**"Next: {title}"**, **"Ask me a question about this"**, **"Stop here"**
| # | Title | Source | |---|-------|--------| | 1 | What We're Building | Summary + Scope | | 2 | Key Decisions | Technical Decisions + scratchpad rationale | | 3 | Solution Shape | Phases overview + Data Model | | 4 | Risks & Confidence | Risks table + unknowns/spikes |
| # | Title | Source | |---|-------|--------| | 1 | What Was Built | Summary + completion status | | 2 | Key Decisions & Why | Technical Decisions + scratchpad | | 3 | How It Was Built | Phases with implementation notes | | 4 | Lessons & Patterns | Risks encountered + patterns used |
See `references/briefing-guide.md` for section content templates.
1. **ONE section at a time** — never dump all content 2. **User controls pace** — always offer to stop 3. **Explain WHY, not just WHAT** — rationale over listing 4. **Ground in artifacts** — focus on insights specific to this plan's research, decisions, and scratchpad entries, not general programming concepts 5. **Keep each section under 20 lines** — this is a briefing, not a lecture 6. **NEVER skip sections or auto-start work** — briefing is read-only; do not execute plan tasks or launch `phx-work` without explicit user request 7. **SECTION TEXT BEFORE THE QUESTION** — every ★ Briefing block is visible response text emitted before its `AskUserQuestion`; never deliver a section only inside thinking or the question field
After final section (or when user stops):
That's the briefing! For full details, see:
{plan_path}
Ready to proceed? Try `phx-work {plan_path}` to start execution.Post-work variant:
That's what was built! For full details, see:
{plan_path}
Consider `phx-compound` to capture key learnings for future reference.phx-plan --> phx-brief (optional) --> phx-work --> phx-brief (optional) create understand before execute understand after
For plans with 5+ phases or 4+ key decisions, consider suggesting visual rendering after Section 3. See `references/visual-explainer.md` for thresholds and commands.
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…