Skip to main content

hephaestus-graph

Use when the user types /hep-graph or asks to create, list, inspect, or request a run of an Agentlas automation graph.

설치로 이동

소스 정보

저장소
agentlas-ai/Agentlas-OS
최근 소스 활동
2026년 8월 13일 23:28
감지된 SKILL.md 언어
영어
스타
1,116
포크
103

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
hephaestus-graph
description
Use when the user types /hep-graph or asks to create, list, inspect, or request a run of an Agentlas automation graph.
# 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: ```bash 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. ## Commands - No arguments or `list`: run `"$CLI" graph list` and report each graph's trigger, step count, and on/off state. - `show <name>`: run `"$CLI" graph show "<name>"`. Preserve the tree wiring, external-effect and ask-first marks, branch sides, repeat edges, verification checklist, code steps, and any required input in the summary. - `new <request>`: run `"$CLI" graph new "<request>"` as an interview. Relay every unanswered question and never invent schedule, external-effect, repetition, or checklist answers. The final save confirmation is the graph's approval. A new graph starts switched off. - `run <name>`: the user's direct run request is sufficient authority. Do not ask for a second approval. Show the graph first; if it requires an input, obtain that missing value without inventing it. Then run `"$CLI" graph run "<name>" -y`, adding `--input "<value>"` when required. Report exactly that a run was **requested** and will be picked up by Agentlas Desktop. Never claim the graph executed. On any non-zero exit, relay the exact refusal and stop; do not retry with a guess.
GitHub에서 보기