Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,9 @@ print_done() {
printf " %s$%s source %s\n" "$C_GREEN" "$C_RESET" "$(detect_shell_profile)"
fi
printf " %s$%s nemoclaw %s connect\n" "$C_GREEN" "$C_RESET" "$sandbox_name"
if [[ "$agent_name" == "openclaw" || -z "$agent_name" ]]; then
if [[ "$agent_name" == "hermes" ]]; then
printf " %ssandbox@%s$%s hermes\n" "$C_GREEN" "$sandbox_name" "$C_RESET"
else
printf " %ssandbox@%s$%s openclaw tui\n" "$C_GREEN" "$sandbox_name" "$C_RESET"
fi
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
elif [[ "$NEMOCLAW_READY_NOW" == true ]]; then
Expand Down
5 changes: 3 additions & 2 deletions src/nemoclaw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1230,11 +1230,12 @@ async function sandboxConnect(sandboxName, { dangerouslySkipPermissions = false
!["1", "true"].includes(String(process.env.NEMOCLAW_NO_CONNECT_HINT || ""))
) {
console.log("");
const agentCmd = sb?.agent === "hermes" ? "hermes" : "openclaw tui";
console.log(` ${G}✓${R} Connecting to sandbox '${sandboxName}'`);
console.log(
` ${D}Inside the sandbox, run \`openclaw tui\` to start chatting with the agent.${R}`,
` ${D}Inside the sandbox, run \`${agentCmd}\` to start chatting with the agent.${R}`,
);
console.log(` ${D}Type \`exit\` (or Ctrl-D) to return to the host shell.${R}`);
console.log(` ${D}Type \`/exit\` to leave the chat, then \`exit\` to return to the host shell.${R}`);
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
console.log("");
}
const result = spawnSync(getOpenshellBinary(), ["sandbox", "connect", sandboxName], {
Expand Down