agentlas-browser
Use the Agentlas browser hardpoint for browser-required work.
Update fallback: 자동 업데이트가 안 되면 `hephaestus update`를 한 번 실행하세요. 업데이트하지 않아도 현재 버전 명령은 그대로 동작합니다.
> /plugin marketplace add agentlas-ai/Agentlas-OS > /plugin install hephaestus@agentlas-core-engine
How it fires
How this command gets triggered: by you, by Claude, or both.
/hep-graph.bodyContext preview
What this command does when you run it.
Update fallback: 자동 업데이트가 안 되면 `hephaestus update`를 한 번 실행하세요. 업데이트하지 않아도 현재 버전 명령은 그대로 동작합니다.
Update fallback: 자동 업데이트가 안 되면 `hephaestus update`를 한 번 실행하세요. 업데이트하지 않아도 현재 버전 명령은 그대로 동작합니다.
Saved automation graphs live in the local Agentlas database, shared with the desktop app. This command reads that database and can ask for a graph to run.
Raw arguments: `{{ARGS}}`
**What this command can and cannot do.** It lists graphs, shows what a graph does, and *requests* a run. It does not execute the graph — the desktop app is what runs it. Say that plainly when you report back; do not tell the user their automation ran.
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; }With `new <what they want>` (or when the user describes an automation they want and no saved graph matches), run the CLI's interview. **It asks the user things it must not decide for them** — when it runs, whether a step goes outside, how many times a repeat may run.
The CLI reads answers from stdin, one per line. So: run it once with no answers to see the first questions, relay them to the user **in their own words**, get their answers, then run it again with every answer so far:
printf '%s\n' "<answer 1>" "<answer 2>" "y" | "$CLI" graph new "<what they want>"
Rules that matter here:
a time. The whole point of the interview is that these come from the person.
(what must exist / what must not appear). Relay those items so the user can confirm or edit them — they are the pass/fail criteria, and the person should see them before saving.
(`알아서 해주세요` / `you decide`). The CLI then takes the most conservative option and says what it chose. Do not decide on their behalf yourself.
(`graph show` to look it over, `automation on` to turn it on).
it needed one more answer. Relay that exact question to the user and run again with the fuller list. Do not retry with a guess.
With no arguments, or with `list`:
"$CLI" graph list
Report each graph with its trigger kind (schedule or input), step count, and whether it is on. If nothing is saved, say so and point at the desktop app's Graph page — do not invent graphs.
With `show <name>`:
"$CLI" graph show "<name>"
The output is a tree, not a list — indentation is the wiring. Relay it as wiring, because on a surface with no canvas this is the only way the user can see where a graph branches. These marks must survive into your summary: a step that **changes something outside**, a step that **asks first**, a branch's `[yes]`/`[no]` sides, a `↩ back to …` line (a repeat), a **checklist** under a verification step (the `· [must] / [must not]` lines — those items are exactly what the result is graded on), and a **code** step (a script the AI wrote runs there, not a model prompt). If the graph starts from a value the user provides, the output says so — carry that into the summary too.
With `run <name>`, the user's direct command is the authority to request that run. Do not ask for a second yes: graph approval is captured when the graph is created, and adding another confirmation here makes an approved automation needlessly stall.
1. Run `"$CLI" graph show "<name>"` first and report what the graph does, including any step that changes something outside. 2. If the graph starts from a value (`graph show` says so), require that value from the user in their own words. This is missing execution input, not an approval prompt. Do not invent one or reuse an example from the graph. 3. Request the run immediately once all required input is present:
"$CLI" graph run "<name>" -y
If the graph starts from a value, pass it — without it the CLI refuses, because a graph run with a blank value silently produces something else:
"$CLI" graph run "<name>" -y --input "<the value the user gave>"
Report exactly what the CLI reported: the run was **requested**, the desktop app picks it up within a minute while open, and a closed app runs it on next open. If the CLI refuses because the automation is switched off, relay that refusal and its reason rather than retrying.
If the CLI exits non-zero, show its message verbatim and stop. Do not substitute a guess about why, and do not retry a run request.
Agent OS: keep specialist agents in a hub, spin up a temporary orchestrator per task. Local-first, works with any model.
Repo: agentlas-ai/Agentlas-OS
Use the Agentlas browser hardpoint for browser-required work.
Build, repair, or package Agentlas agents and teams with Hephaestus.
Staff a task only from the signed-in owner's Agent Cloud agents.
Build an Agentlas automation by describing it, list saved ones, or request a run.