Skip to content

O Que Acontece Nesta Seção

Você vai registrar cada agente no OpenClaw e dar a eles o primeiro comando. Ao final, todos os 6 agentes estarão ativos — reportando para seus canais no Discord e prontos para receber suas instruções.

Duas formas de falar com seus agentes:

MétodoMelhor paraComo funciona
OpenGoat UIIniciantes — interface visualPainel no navegador, clique para selecionar o agente e digite sua mensagem
Terminal do VS CodeRecomendado — mais rápido e com mais controleopenclaw agent --agent [id] "sua mensagem"

Ambos os métodos funcionam. Comece com o que parecer mais confortável.

Abordagem recomendada — híbrida com IA: No início, mantenha uma conversa aberta com Claude, ChatGPT ou Gemini enquanto trabalha com seus agentes. Se um comando não funcionar ou você não souber o que digitar, apenas descreva a situação para a IA e peça ajuda. É exatamente assim que a maioria das pessoas — incluindo a equipe do BALIA OS — trabalhou no começo. Você não precisa dominar o terminal logo de cara. A janela de chat com a IA está sempre disponível como seu copiloto.


Como Esta Seção Funciona

Cole o prompt abaixo no Claude, ChatGPT ou Gemini. A IA vai guiá-lo pelo processo de registrar todos os 6 agentes e enviar o primeiro comando para cada um. Anexe seu Documento de Design da Equipe para que a IA conheça seus IDs de agentes e caminhos de workspace.

Se algo der errado, descreva o erro ou tire um print e compartilhe — a IA vai ajudá-lo a resolver.


▶ Cole isto em seu IA para começar

Anexe seu Documento de Design da Equipe antes de enviar.

You are helping me register and launch my BALIA OS multi-agent team 
on OpenClaw.

I have attached my Team Design Document. Read it to get my agent IDs,
names, and workspace paths before starting.

My balia-os path is set in my .env file as BALIA_OS_PATH.
Please ask me to open my .env file and read the value of BALIA_OS_PATH,
then use that path throughout this session.

Guide me step by step. One step at a time. If I hit an error,
help me fix it before moving on. If I get stuck, ask me to share
a screenshot or paste the error message.

Here is what we need to do:

STEP 1 — Start the gateway
Tell me: "We'll start the OpenClaw gateway with a command that filters 
out noisy background logs so the terminal stays readable."

Guide me to open a new VS Code terminal tab and run the correct command 
for my OS (ask me which OS I'm on if you don't know yet):

Windows:
  $env:DEBUG="-ciao*"; openclaw gateway --force

Mac:
  DEBUG="-ciao*" openclaw gateway --force

Explain what this does:
"The DEBUG='-ciao*' part hides background network discovery logs that 
would otherwise flood the terminal. The --force flag clears any 
previous gateway instance. Your terminal will stay clean and readable."

Ask me to confirm I see: "✓ Gateway running on port 18789"
Tell me to leave this terminal tab open — the gateway must keep running.
If there's an error, help me fix it before moving on.

STEP 2 — Register each agent with OpenClaw
For each of my 6 agents (read IDs from Team Design Document),
guide me to run this command in the VS Code terminal:

openclaw agents add [agentid] --workspace ~/.openclaw/workspace-[agentid]

Example: openclaw agents add marcus --workspace ~/.openclaw/workspace-marcus

Show me all 6 commands at once with my actual agent IDs filled in.
Ask me to run them one by one and confirm each succeeds before 
showing the next one.

After all 6 are registered, guide me to verify:
openclaw agents list
Ask me to confirm all 6 agents appear in the list.

STEP 3 — Restart the gateway
After registering agents, the gateway needs to restart to load them.
Guide me to run:
openclaw gateway restart
Ask me to confirm the gateway is running again before moving on.

STEP 4 — Send first command via VS Code terminal (recommended)
Explain this first:
"The VS Code terminal is the recommended way to talk to your agents.
The command is:
openclaw agent --agent [agentid] 'your message here'

This sends a message directly to that specific agent."

Guide me to send a test command to the first agent:
openclaw agent --agent [first-agentid] 'Please introduce yourself and 
confirm you have read your SOUL.md, AGENTS.md, and IDENTITY.md. 
Then report to your Discord channel that you are online.'

Ask me: "What did the agent respond? 
Did you see a message appear in its Discord channel?"
If yes: great — move to next agent.
If no: help me troubleshoot.

Repeat for all 6 agents.

STEP 5 — (Optional) OpenGoat UI setup
After all agents are confirmed working via terminal, offer:
"You can also talk to your agents through the OpenGoat UI — 
a visual browser dashboard.
Would you like to set that up as well?
It gives you a clickable interface to select agents and send messages
without typing terminal commands."
If yes: guide me to:
1. Open a new VS Code terminal tab
2. Run: opengoat start
3. The browser will open automatically with the OpenGoat UI
Walk me through the interface — how to select an agent and send a message.
(If the browser doesn't open automatically, go to http://localhost:18789)
If no: skip and move to Step 6.

STEP 6 — Final confirmation
Run through this checklist with me:
□ All 6 agents registered (openclaw agents list shows all 6)
□ Gateway running (port 18789)
□ Each agent responded to first command
□ Each agent posted to their Discord channel
□ (Optional) OpenGoat UI accessible at localhost:18789

When all boxes are checked, say:
"Your BALIA OS team is live. All 6 agents are running and reporting 
to Discord. You're ready for Section 6 — Building Your First 
Skill Cassette."

Start now. Ask me the first question.

Falando com Seus Agentes no Dia a Dia

Após tudo configurado, veja como dar comandos:

Inicie o gateway (faça isso primeiro, a cada sessão):

Windows:

$env:DEBUG="-ciao*"; openclaw gateway --force

Mac:

DEBUG="-ciao*" openclaw gateway --force

Deixe esta aba do terminal em execução. Abra uma nova aba para outros comandos.

Via terminal do VS Code:

# Talk to a specific agent
openclaw agent --agent marcus "Summarize what you worked on today"

# Check agent list
openclaw agents list

# Restart gateway if needed
openclaw gateway restart

Via OpenGoat UI:

  1. Abra uma nova aba no terminal do VS Code
  2. Execute: opengoat start
  3. O navegador abre automaticamente com o OpenGoat UI
  4. Selecione o agente no painel à esquerda
  5. Digite sua mensagem e pressione Enter (Se o navegador não abrir automaticamente: acesse http://localhost:18789)

Via Discord (apenas relatórios — não para comandos): O Discord é onde seus agentes postam seus relatórios. Você acompanha as atualizações por lá. Enviar comandos para agentes via Discord requer um Bot do Discord — esta é uma configuração avançada que não está coberta no T1. Por enquanto, use o terminal do VS Code ou o OpenGoat UI para enviar comandos.


Se um Agente Não Responder

Verifique na seguinte ordem:

  1. O gateway está em execução?

    openclaw gateway restart
  2. O agente está registrado?

    openclaw agents list

    Se seu agente não estiver listado, execute novamente o comando agents add do Passo 2.

  3. Os arquivos do workspace estão no lugar certo? Verifique se SOUL.md, AGENTS.md e IDENTITY.md existem em: ~/.openclaw/workspace-[agentid]/

  4. A chave de API está configurada corretamente? Abra o .env e confirme que ANTHROPIC_API_KEY está preenchida.

Se ainda estiver com dificuldades, cole a mensagem de erro no Claude, ChatGPT ou Gemini e peça ajuda.