agentlas-core-engine-m…
Use when creating a single Agentlas agent, creating a multi-agent team, or packaging an existing local/external agent into Agentlas architecture. Make sure to…
Use when the user types /prompts:hep-build or /agentlas-build, mentions @Hephaestus for build work, asks to create a single Agentlas agent, create a multi-agent team, or package an existing local/external agent into Agentlas architecture.
$ npx -y skills add agentlas-ai/Agentlas-OS --skill hephaestus-build --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hephaestus-buildContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user types /prompts:hep-build or /agentlas-build, mentions @Hephaestus for build work, asks to create a single Agentlas agent, create a multi-agent team, or package an existing local/external agent into Agentlas architecture.
name: hephaestus-build description: "Use when the user types /prompts:hep-build or /agentlas-build, mentions @Hephaestus for build work, asks to create a single Agentlas agent, create a multi-agent team, or package an existing local/external agent into Agentlas architecture."
1. Treat this as the public Codex build surface. Do not expose or ask the user to invoke the older internal support skill names. 2. Resolve the trusted engine root before reading any build contract:
ENGINE=""
for candidate in \
"${CODEX_PLUGIN_ROOT:-}" \
"${CLAUDE_PLUGIN_ROOT:-}" \
"${PLUGIN_ROOT:-}" \
"$HOME/.agentlas/runtime/current/host_adapters/codex/plugins/agentlas-core-engine-meta-agent" \
"$HOME/.agentlas/runtime/current/host_adapters/claude/plugins/agentlas-core-engine-meta-agent" \
"$HOME/.agentlas/runtime/current" \
"."
do
if [ -n "$candidate" ] && [ -f "$candidate/AGENTS.md" ] && [ -f "$candidate/package-contract.json" ] && [ -f "$candidate/contracts/builder-interview-research-gate.md" ]; then
ENGINE="$candidate"
break
fi
done
[ -n "$ENGINE" ] || { echo "Hephaestus engine not found. Run the installer first." >&2; exit 1; }
RUNNER=""
for candidate in "$HOME/.agentlas/runtime/current/bin/hephaestus" "$ENGINE/bin/hephaestus"; do
if [ -x "$candidate" ]; then RUNNER="$candidate"; break; fi
done
[ -n "$RUNNER" ] || { echo "Hephaestus runner not found." >&2; exit 1; }For an interactive request whose first argument is `session`, do not resolve a generic `PACKAGE_TARGET` and do not ask for a JSON/JSONL export. Ask first: "이 세션에서 만든 에이전트를 기본 전역 Agentlas 에이전트 폴더에 만들까요? 다른 위치를 원하면 경로를 알려주세요. 별도 위치를 지정하지 않으면 전역 폴더에 만듭니다." If no alternate location is named, use `AGENTLAS_AGENT_HOME` or `~/.agentlas/agentlas-agent` and create a new safe-slug child package. If a destination is supplied, validate that exact folder. Never overwrite an existing child. The current conversation is the source; do not inspect recent sessions or host databases.
For every other build request, take exactly one folder explicitly named or confirmed by the user as `PACKAGE_TARGET`. If none was named, or multiple candidates exist, stop and ask. Never default to `.`, the cwd, or `$ENGINE`. Run `"$RUNNER" contract resolve-target "$PACKAGE_TARGET" --base "$PWD"` and set `PACKAGE_ROOT` only to the status-`ok` receipt's exact `package_root`. Nonzero or error receipts are blockers.
Read `$ENGINE/AGENTS.md`, `$ENGINE/.agentlas/mode-map.json`, the selected mode contract under `$ENGINE/modes/`, and `$ENGINE/contracts/builder-interview-research-gate.md`. Do not substitute files from the user's package workspace. 3. Run the public mode classifier by independent ownership boundaries, not by keywords such as "team":
exported session in a terminal/headless run -> `40-session-agent-builder`;
`10-single-agent-builder`;
handoff, or synthesis needs -> `20-multi-agent-team-builder`. If the shape is unclear, ask before generating. The user-facing question must be plain language, for example: "이 일을 한 명의 전문가가 처음부터 끝까지 맡으면 되나요, 아니면 조사/분석/검토처럼 여러 전문가가 나눠 맡고 마지막에 합쳐야 하나요?" Do not expose internal labels such as `single-agent`, `team-builder`, ownership boundary, memory/context, synthesis, or produces/consumes. 4. Run the Builder Interview and Research Gate from `$ENGINE/contracts/builder-interview-research-gate.md` before writing substantial package files:
the source interview and ask only the destination question plus focused gaps that would change scope, permissions, output, or safety;
role count, separated tools or permissions, final merge needs, execution order, memory, failure modes, and evals are clear;
whether each role needs different files/accounts/tools, whether someone must merge the result, and whether work can run at the same time or must pass from one person to the next;
comparables, GitHub examples, academic/professional theory, and tool/plugin docs;
fallback, and smoke-test notes;
agents/repos, theory, and tool choices;
`docs/tool-selection.md`, `docs/domain-expert-synthesis.md`, `docs/prompt-performance-contract.md`, and `.agentlas/capability-eval-plan.json`. 5. If missing narrow details still change files, adapters, or public/private boundaries, ask one to five clarify questions before generating. 6. Pick one:
For `40-session-agent-builder`, run the current-session two-pass flow: first show a `Generalized Session Report` that extracts reusable intent, procedures, corrections, failed approaches, validation, and conditional `IF / THEN / BECAUSE / AVOID / INSTEAD` rules; then offer `Build Agent` or `Edit`. Only the approved report is converted into the standalone agent prompt and package. Do not present JSON/JSONL as an
Agent OS: keep specialist agents in a hub, spin up a temporary orchestrator per task. Local-first, works with any model.
Use when creating a single Agentlas agent, creating a multi-agent team, or packaging an existing local/external agent into Agentlas architecture. Make sure to…
Use when the user types /agentlas-build, /agentlas build, or /hep-build to design, build, and package a single agent or multi-agent team.
Use when the user types /agentlas-cloud, /agentlas cloud, or /hep-cloud to staff only from the signed-in owner's private Cloud packages.
Use when the user types /agentlas-graph, /agentlas graph, or /hep-graph to create, list, inspect, or run Agentlas automation graphs.
Use when the user types /agentlas-network, /agentlas network, $hephaestus-network, or /hep-network to staff a durable goal from registered Local, owner Cloud,…
Use when the user types /agentlas-storm, /agentlas storm, /hep-storm, or says @Hephaestus storm <goal> to drive a goal through the force-robust Stormbreaker…