← ClaudeAtlas

hephaestus-cloudlisted

Use when the user types /hephaestus-cloud or asks to find/route to one of THEIR OWN Agentlas cloud packages (보관함, 내 클라우드, 내 보관함, my cloud, my own agents). This is the owner-scoped leg of the three-scope model — it searches ONLY the signed-in user's own cloud packages, not the public marketplace (use hephaestus-network for that) and not local cards. The user's own cloud packages are restorable/owned by them and call-priced at a flat 1 credit.
agentlas-ai/Hephaestus · ★ 56 · AI & Automation · score 84
Install: claude install-skill agentlas-ai/Hephaestus
# Hephaestus Cloud Routing (my own cloud / 보관함) Route the request through the signed-in user's OWN Agentlas cloud packages only. Never guess an agent yourself when this skill is active — the router/Hub decides. ## 0. Scope rule `/hephaestus-cloud` is owner-scoped: it queries ONLY the authenticated owner's own cloud packages (보관함) via the Hub owner filter (`cargo.*`). It does **not** search the public marketplace and does **not** search local Paid/Free/plugin cards. - The user's own cloud packages are restorable/owned by them, call-priced at a flat **1 credit** per call. - For the public marketplace (others' published, per-call-priced agents), use the `hephaestus-network` skill / `--hub-only` instead. - For the combined search (local + own cloud + Hub, each priced by origin), use plain-language routing (`hephaestus route`). ## 1. Resolve the runner Run this resolution in a shell and use the first hit: ```bash RUNNER="" for c in \ "$HOME/.agentlas/runtime/current/bin/hephaestus" \ ./bin/hephaestus do [ -x "$c" ] && RUNNER="$c" && break; done if [ -z "$RUNNER" ]; then for cache in \ "$HOME/.claude/plugins/cache/agentlas-core-engine/hephaestus" \ "$HOME/.codex/plugins/cache/agentlas-core-engine/hephaestus"; do newest="$(ls -d "$cache"/*/bin/hephaestus 2>/dev/null | sort -V | tail -1)" [ -n "$newest" ] && [ -x "$newest" ] && RUNNER="$newest" && break done fi ``` If no runner exists, tell the user to run the one-touch installer: `curl -fsSL htt