Skip to content
Development
Command

/hep-search

Search Agentlas Cloud and Hub agent candidates without invoking.

From plugin
agentlas-os
1.2k14 skills5 agents14 commands1 MCP
Install
> /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.md
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 10

Answer 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
Ships withagentlas-os

Agent OS: keep specialist agents in a hub, spin up a temporary orchestrator per task. Local-first, works with any model.

Get the whole plugin