Shadcn-style CLI to copy LangGraph nodes and workflows into your project.
Project description
NodeBuilder
Beautifully designed, copy and paste LangGraph nodes and workflows into your project.
Installation
pip install nodebuilder
Usage
The easiest way to get started is to add a node to your project.
nodebuilder add summarizer
This will add the summarizer node to your project. You can then import and use it in your code.
from nodes.summarizer.node import SummarizerNode
# Use the node
summarizer = SummarizerNode()
result = summarizer.run("Your text to summarize here")
Add nodes from GitHub
You can also add nodes from any GitHub repository.
nodebuilder add "owner/repo node-name"
For example:
nodebuilder add "aryan/nodebuilder summarizer"
nodebuilder add "langchain-ai/langgraph-nodes translator"
Compose workflows
Create workflows by chaining multiple nodes together.
nodebuilder compose my-workflow summarizer translator
This creates a workflow that first summarizes text, then translates it.
Available nodes
summarizer- Truncates text to 200 characters (demo summarizer)translator- Translates text to target language
Philosophy
- Copy, don't install - Copy the source code into your project
- Own your code - You own and control the code
- Framework ready - Works seamlessly with LangGraph
- AI friendly - Export tools for AI agents
Commands
Add nodes
nodebuilder add <node-name> # Add from bundled templates
nodebuilder add "owner/repo node-name" # Add from GitHub repository
Compose workflows
nodebuilder compose <workflow-name> <nodes...> # Create workflow from nodes
nodebuilder suggest # Get workflow suggestions
Utilities
nodebuilder list # List available nodes and workflows
nodebuilder export-mcp # Export tools for AI agents
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nodebuilder-1.0.0.tar.gz.
File metadata
- Download URL: nodebuilder-1.0.0.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5effc37643b75051d0e7ccda902ab8fd20dc3e28ce0d42a17de83abf11d46698
|
|
| MD5 |
7352f08423cd093cd4651750db03cbd5
|
|
| BLAKE2b-256 |
8cb93a5b66cf0fd6fa61f69aac92750aa3824f2d6ac8a0760652e0f837faf8a1
|
File details
Details for the file nodebuilder-1.0.0-py3-none-any.whl.
File metadata
- Download URL: nodebuilder-1.0.0-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
878ca726e49c4b4405ed0c84f8cdea0cad0aa54a0ca5cddb329e82f447365434
|
|
| MD5 |
08bdffd5259e2e520c55224872f831ae
|
|
| BLAKE2b-256 |
55c55312034ca13e901845a04dc3d81d385a6dfafdb6fa4cfd2d46da2abced96
|