cc-changelog
CONTRIBUTOR TOOL - Track CC changelog, extract new versions since last check, analyze impact on plugin (breaking changes, opportunities, deprecations). Run…
Recall prior work from past sessions — how a bug was fixed, what was decided, where a pattern lives. Use when asked 'have we done this before' or 'how did I fix X' in Elixir/Phoenix work. ccrider MCP when available, else git + solution docs.
$ npx -y skills add oliver-kriska/claude-elixir-phoenix --skill recall --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/recallContext preview
The summary Claude sees to decide when to auto-load this skill.
Recall prior work from past sessions — how a bug was fixed, what was decided, where a pattern lives. Use when asked 'have we done this before' or 'how did I fix X' in Elixir/Phoenix work. ccrider MCP when available, else git + solution docs.
name: recall description: Recall prior work from past sessions — how a bug was fixed, what was decided, where a pattern lives. Use when asked 'have we done this before' or 'how did I fix X' in Elixir/Phoenix work. ccrider MCP when available, else git + solution docs. effort: medium argument-hint: <question about past work>
Search three evidence layers, cheapest first, to answer "have we solved this before?". Stop at the first layer that answers the question.
/phx:recall how did we fix the LiveView form that saved silently? /phx:recall what did we decide about the billing context boundaries? /phx:recall which library did we pick for rate limiting and why?
1. **Cheapest layer first** — solution docs (local grep) → git history → session transcripts. Don't fetch sessions when a solution doc answers 2. **ONE ccrider fetch = ONE subagent** — `get_session_messages` responses are 3–15KB each. Spawn a subagent per session that writes a summary file and exits; NEVER batch multiple session fetches into one context 3. **Cite the evidence** — every claim names its source (solution doc path, commit hash, or session date + match snippet). No vague "we did this once" 4. **Graceful degradation, stated plainly** — if ccrider MCP is absent, say so once and use the fallback layers; never error out
Run Grep with keywords from the question over `.claude/solutions/`. Treat a hit here as the best answer — it was written for exactly this purpose. Present it and stop unless the user wants more.
git log --oneline --grep="{keyword}" -i -20 # commit messages
git log -S "{code-symbol}" --oneline -10 # when a symbol changed
git log --follow --oneline -10 -- {file} # one file's history
git show {hash} --stat # inspect a candidateUse `-S` (pickaxe) when the question names code; `--grep` when it names intent. Show matching commits with one-line context each.
Check for `mcp__ccrider__*` tools (load via ToolSearch if deferred).
**If absent**: report "ccrider MCP not connected — answered from solution docs + git history" and stop after Layers 1–2.
**If present**:
1. `mcp__ccrider__search_sessions` with the question's key phrases — returns ranked hits with session IDs and snippets 2. Present the top 3–5 hits (date, snippet) and pick the most relevant (or ask, if genuinely ambiguous) 3. Per selected session, spawn ONE subagent: "Fetch session {id} via `mcp__ccrider__get_session_messages`, extract only what answers '{question}', write ≤30 lines to `.claude/recall/{id}.md`" (Iron Law 2) 4. Read the summary files, synthesize the answer with citations
Present the answer with its evidence trail. If the recalled knowledge was NOT already in `.claude/solutions/`, offer `/phx:compound` so the next recall stops at Layer 1.
"have we done this before?" → /phx:recall Layer 1 .claude/solutions/ ──hit──► answer + cite Layer 2 git log --grep/-S ──hit──► answer + cite Layer 3 ccrider sessions (gated) ─► answer + cite → offer /phx:compound
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…