Claude-skill-registry langgraph-patterns-expert
Use for LangGraph agent design and refactors. Prefer explicit state, small nodes, and clear transitions.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/langgraph-patterns-expert" ~/.claude/skills/majiayu000-claude-skill-registry-langgraph-patterns-expert && rm -rf "$T"
manifest:
skills/data/langgraph-patterns-expert/SKILL.mdsource content
Guidelines
- Keep
explicit and typed.State - Keep nodes small, single-purpose, and testable.
- Make branching conditions explicit.
- Prefer idempotent steps where possible.