광고 한 번씩 클릭해 주시면 글 쓰는데 큰 힘이 됩니다 (제발~)

IT/A.I.

오픈클로 raw 샘플 [openclaw Raw sample, openclaw.json]

ThinkTheStory 2026. 3. 4. 17:09
728x90

오픈클로를 쓰려고 텔레그램이랑 구글API랑 꿍짝꿍짝 하다보면 사실 별거 아닌데 이상하게 raw 쪽 세팅에서 한번에 꼭 안넘어가고 삽질을 하게 만든다. (나 같은 경우 pc에 세팅할때마다 늘 그랬음 ㅋㅋ)

그래서 일단 날 위해서 가장 기본적으로 잘 도는 샘플을 정리해봤음. 

잘안되시면 해당 내용 그대로 복붙해서 쓰면 (물론 최소한의 정보는 자신에 맞게 수정) 되지 않을까 싶다.

{
  meta: {
    lastTouchedVersion: '2026.3.2',
    lastTouchedAt: '2026-03-04T07:56:28.516Z',
  },
  wizard: {
    lastRunAt: '2026-03-04T06:15:11.383Z',
    lastRunVersion: '2026.3.2',
    lastRunCommand: 'doctor',
    lastRunMode: 'local',
  },
  auth: {
    profiles: {
      'google:default': {
        provider: 'google',
        mode: 'api_key',
        email: '자신의 메일',
      },
    },
  },
  agents: {
    defaults: {
      model: {
        primary: 'google/gemini-3-flash',
      },
      models: {
        'google/gemini-3-flash': {},
      },
      workspace: '~\\.openclaw\\workspace',
    },
  },

320x100


  messages: {
    ackReactionScope: 'group-mentions',
  },
  commands: {
    native: 'auto',
    nativeSkills: 'auto',
    restart: true,
    ownerDisplay: 'raw',
  },
  session: {
    dmScope: 'per-channel-peer',
  },
  hooks: {
    internal: {
      enabled: true,
      entries: {
        'boot-md': {
          enabled: true,
        },
        'command-logger': {
          enabled: true,
        },
        'session-memory': {
          enabled: true,
        },
      },
    },
  },
  channels: {
    telegram: {
      enabled: true,
      dmPolicy: 'pairing',
      botToken: '__OPENCLAW_REDACTED__',
      allowFrom: [
        ' 자신에게 할당된 number ',
      ],
      groupPolicy: 'open',
      streaming: 'partial',
    },
  },
  gateway: {
    port: 18789,
    mode: 'local',
    bind: 'loopback',
    auth: {
      mode: 'token',
      token: '__OPENCLAW_REDACTED__',
    },
    tailscale: {
      mode: 'off',
      resetOnExit: false,
    },
    nodes: {
      denyCommands: [
        'camera.snap',
        'camera.clip',
        'screen.record',
        'calendar.add',
        'contacts.add',
        'reminders.add',
      ],
    },
  },
}

 

많은 분들에게 도움되기를~

320x100