From langgraph
Add LangGraph feature to existing workflow. Features include node, conditional, checkpoint, human-loop.
npx claudepluginhub vanman2024/ai-dev-marketplace --plugin langgraph<feature> [options]# Add LangGraph Feature **Requested Feature:** `$0` **Additional Options:** `$1` `$2` --- ## Argument Routing ### Node **If `$0` = "node":** ### Conditional **If `$0` = "conditional":** ### Checkpoint **If `$0` = "checkpoint":** ### Human-in-the-Loop **If `$0` = "human-loop":** --- ## Usage Examples
/addCreates a new Markdown note in your Obsidian vault with YAML frontmatter including title, description, tags, related notes, timestamps. Supports category, title, and optional flags; outputs file path.
/addResearch a package and generate a Homebrew formula via the template pipeline
Requested Feature: $0
Additional Options: $1 $2
If $0 = "node":
Task(node-specialist) Add node.
Requirements:
- Node name: $1 (required)
- Node type: $2 (llm, tool, router - default: llm)
- Implement node function
- Add to graph
If $0 = "conditional":
Task(graph-architect) Add conditional edge.
Requirements:
- From node: $1 (required)
- Create routing function
- Define target nodes
If $0 = "checkpoint":
Task(state-specialist) Add checkpointing.
Requirements:
- Backend: $1 (memory, sqlite, postgres - default: memory)
- Configure checkpointer
- Add thread support
If $0 = "human-loop":
Task(state-specialist) Add human interrupt.
Requirements:
- Interrupt point: $1 (node name)
- Configure interrupt_before/after
- Add approval handling
/langgraph:add node research llm
/langgraph:add node classifier router
/langgraph:add conditional research
/langgraph:add checkpoint postgres
/langgraph:add human-loop approval