/hep-search
Search Agentlas Cloud and Hub agent candidates without invoking.
> /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.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/hep-search
Context preview
What this command does when you run it.
Search Agentlas Cloud and Hub agent candidates without invoking.
Command definition
hep-search.mddescription: Search Agentlas Cloud and Hub agent candidates without invoking.
argument-hint: '<request>'
allowed-tools: Bash, Read, Glob, Grep
Update fallback: 자동 업데이트가 안 되면 `hephaestus update`를 한 번 실행하세요. 업데이트하지 않아도 현재 버전 명령은 그대로 동작합니다.
/hep-search
Find matching agents without calling them. Return two sections: my Agentlas Cloud packages and the public Agentlas Hub.
Raw arguments: `$ARGUMENTS`
Search
RUNNER=""
for candidate in \
"$HOME/.agentlas/runtime/current/bin/hephaestus" \
"${CLAUDE_PLUGIN_ROOT:+$CLAUDE_PLUGIN_ROOT/bin/hephaestus}" \
"${PLUGIN_ROOT:+$PLUGIN_ROOT/bin/hephaestus}" \
"./bin/hephaestus"
do
if [ -n "$candidate" ] && [ -x "$candidate" ]; then RUNNER="$candidate"; break; fi
done
[ -n "$RUNNER" ] || { echo "Hephaestus runtime not found. Run the installer first." >&2; exit 1; }
if [ "${HEPHAESTUS_AUTH_AUTOPOPUP:-1}" != "0" ]; then
"$RUNNER" auth ensure --timeout 180 >/dev/null 2>&1 || true
fi
"$RUNNER" search "$ARGUMENTS" --runtime claude-code --limit 10Answer Shape
1. Show `sections.cloud.results` first, then `sections.hub.results`. 2. For each candidate include rank, name, slug, description, callable/routing status, and why it matched. 3. Do not invoke any agent. If the user wants to run exact agents next, use `/hep-call agent-slug-1, agent-slug-2 {context}`. 4. Include `receipt_id` in the final line.
Examples
/hep-search 시장 리포트 써야 하는데 쓸만한 에이전트 찾아줘
/hep-search find agents for ASO review replies
Read more
description: Search Agentlas Cloud and Hub agent candidates without invoking. argument-hint: '<request>' allowed-tools: Bash, Read, Glob, Grep
Update fallback: 자동 업데이트가 안 되면 `hephaestus update`를 한 번 실행하세요. 업데이트하지 않아도 현재 버전 명령은 그대로 동작합니다.
/hep-search
Find matching agents without calling them. Return two sections: my Agentlas Cloud packages and the public Agentlas Hub.
Raw arguments: `$ARGUMENTS`
Search
RUNNER=""
for candidate in \
"$HOME/.agentlas/runtime/current/bin/hephaestus" \
"${CLAUDE_PLUGIN_ROOT:+$CLAUDE_PLUGIN_ROOT/bin/hephaestus}" \
"${PLUGIN_ROOT:+$PLUGIN_ROOT/bin/hephaestus}" \
"./bin/hephaestus"
do
if [ -n "$candidate" ] && [ -x "$candidate" ]; then RUNNER="$candidate"; break; fi
done
[ -n "$RUNNER" ] || { echo "Hephaestus runtime not found. Run the installer first." >&2; exit 1; }
if [ "${HEPHAESTUS_AUTH_AUTOPOPUP:-1}" != "0" ]; then
"$RUNNER" auth ensure --timeout 180 >/dev/null 2>&1 || true
fi
"$RUNNER" search "$ARGUMENTS" --runtime claude-code --limit 10Answer Shape
1. Show `sections.cloud.results` first, then `sections.hub.results`. 2. For each candidate include rank, name, slug, description, callable/routing status, and why it matched. 3. Do not invoke any agent. If the user wants to run exact agents next, use `/hep-call agent-slug-1, agent-slug-2 {context}`. 4. Include `receipt_id` in the final line.
Examples
/hep-search 시장 리포트 써야 하는데 쓸만한 에이전트 찾아줘 /hep-search find agents for ASO review replies
Agent OS: keep specialist agents in a hub, spin up a temporary orchestrator per task. Local-first, works with any model.
Other commands on agentlas-os.
- /agentlas
Agentlas commands — one entry point for network, build, storm, call, and the rest.
Open command - /hep-browser
Use the Agentlas browser hardpoint for browser-required work.
Open command - /hep-build
Build, repair, or package Agentlas agents and teams with Hephaestus.
Open command - /hep-call
Prepare explicitly named Agentlas Hub or Cloud agents.
Open command - /hep-cloud
Staff a task only from the signed-in owner's Agent Cloud agents.
Open command - /hep-connect
Connect Agentlas agents or teams to Telegram.
Open command

