Personal Claude Code plugin marketplace.
/plugin marketplace add Weili-0234/claude-plugins
/plugin install mlsys-code-walkthrough@weili-claude-plugins
/plugin install resume-codex@weili-claude-plugins
/plugin install handoff@weili-claude-plugins
| Plugin | What it does |
|---|---|
| mlsys-code-walkthrough | Skill for writing rigorous ML-systems code walk-through tutorials (Awesome-ML-SYS-Tutorial style): trace the key data structures through one lifecycle — which function touches which structure, tagged Allocate / Write / Update / Free — grounded in commit-pinned permalinks, with mermaid data-flow diagrams and programmatically-authored Excalidraw hero figures (generator kit + render + self-check loop included). |
| resume-codex | Skill for resuming work from a local OpenAI Codex session (CLI, Desktop, VS Code) inside Claude Code. Discovery contract ported from grok-build's foreign-session scanner: highest-generation state_<N>.sqlite thread index first, sessions/YYYY/MM/DD/rollout-*.jsonl[.zst] scan as fallback, seconds/millis timestamp normalization, synthetic-turn filtering. Builds a bounded, secret-redacted continuity packet (goals, changed files, errors, transcript tail, recovered commands) and reconciles it with the live repo before continuing. |
| handoff | Skill for writing a self-contained handoff document when wrapping up or pausing a Claude Code session. Produces handoff-<timestamp>.md with eight required sections (Status, Done, Experiments & analyses, Todo, Decisions, Pitfalls, Next, Files), grounded in verified facts (git status, grep/Read) rather than memory, so another person or a future session can pick up the work cleanly. |
.claude-plugin/marketplace.json # marketplace manifest
mlsys-code-walkthrough/
.claude-plugin/plugin.json # plugin manifest
skills/mlsys-code-walkthrough/
SKILL.md # entry point: the method (six steps) + cardinal rules
references/ # per-topic deep dives, loaded on demand
data-structures.md # Shape/Access/Value format, cross-linking via shared indices
lifecycle-tracing.md # the core method: function -> mutation tracing
diagrams.md # mermaid conventions and templates
excalidraw-plots.md # drawn hero figures: visual grammar, render, self-check
narrative-and-format.md # concept->model->code ordering, bilingual titles, self-check
finding-the-code.md # repo analysis recipes, commit pinning, permalinks
templates/
walkthrough-skeleton.md # article skeleton to copy
excalidraw_kit.py # element builders for .excalidraw scenes
resume-codex/
.claude-plugin/plugin.json # plugin manifest
skills/resume-codex/
SKILL.md # entry point: workflow + discovery contract + safety rules
scripts/
codex_session.py # list / resolve / resume CLI over ~/.codex session stores
handoff/
.claude-plugin/plugin.json # plugin manifest
skills/handoff/
SKILL.md # entry point: procedure + required sections + output skeleton