This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # create-agent.sh — scaffold a portable, embeddable LangGraph agent codebase. | |
| # Fully generic: no domain-specific nodes, works for ANY agent you build. | |
| # | |
| # Usage: | |
| # ./create-agent.sh my_agent | |
| # | |
| # After scaffolding, it installs deps and RUNS the agent immediately so | |
| # you get proof-of-life output, not just a pile of files. |