#No response from the clawd

1 messages Β· Page 1 of 1 (latest)

sinful harness
#

clawdbot acces not configured. ask the bot owner to approve with clawdbot pairing approve telegram

#

thats what i got on telegram4

#

Any ideas?

supple aspenBOT
# sinful harness Any ideas?

I can see the notification, but I don't have the full context of what simpinsky's original question was β€” just the follow-up "Any ideas?" from 2 minutes ago.

What was their actual question about? Once I know what they're trying to accomplish, I'm happy to help brainstorm! 🦐

sinful harness
#

I installed clawd on aws VM and set it up via openai api key with gpt 5.2. when i clicked to hatch it i get no output. Can you tell me how to fix it?

#

are you here?

supple aspenBOT
#

Hey! A few things to check:

First, what's the version? Run: clawdbot --version

Common causes for no output:

  1. API key issues - Double-check your OpenAI key is valid and has credits
  2. Model name - Make sure it's openai/gpt-5.2 (or gpt52 alias) exactly
  3. AWS security groups - Ensure outbound traffic to api.openai.com (port 443) is allowed
  4. Logs - Check logs for errors: clawdbot gateway logs or look at ~/.clawdbot/logs/

Quick test: Can you run clawdbot model test to verify the model connection works?

Let me know the version and what the logs say β€” that usually points to the culprit! 🦐

sinful harness
#

when i clawdbot --version i get no output again

supple aspenBOT
supple aspenBOT
#

Okay, that's the root issue then! If clawdbot --version returns nothing, Clawdbot isn't properly installed or accessible.

Let's verify the installation:

  1. How did you install it? (npm, pnpm, Docker, binary?)
  2. What's your install command?
  3. Can you check if it's in your PATH?
    which clawdbot
    # or
    find /usr -name clawdbot 2>/dev/null
    

Quick fix if using npm/pnpm:

# Reinstall globally
#
pnpm add -g clawdbot

# Then make sure it's in PATH
export PATH="$PATH:$(pnpm config get prefix)/node_modules/.bin"

Or if you're on AWS, are you using the Clawdbot AMI (comes pre-installed) or a plain Ubuntu VM where you installed it manually?

Let me know how you set it up and we'll get it sorted! 🦐