Documentation
README
Hephaestus Graph
Saved graphs live in the local Agentlas database shared with Agentlas Desktop. This skill may create, list, inspect, or request a graph run; it does not execute the graph itself.
Resolve the independent Agentlas CLI
Use the first executable path:
CLI=""
for candidate in \
"$(command -v agentlas 2>/dev/null)" \
"$HOME/.agentlas/runtime/current/bin/agentlas" \
"./bin/agentlas"
do
if [ -n "$candidate" ] && [ -x "$candidate" ]; then CLI="$candidate"; break; fi
done
[ -n "$CLI" ] || { echo "Agentlas CLI not found. Install it with: npm i -g agentlas" >&2; exit 1; }
Do not substitute Gemini CLI, Hephaestus routing, or Hub search when the Agentlas CLI is missing.
This is the opening of the README. Read the full README on GitHub.