← Back to Plugins
Integration

A1111

slimelab-ai By slimelab-ai 👁 9 views ▲ 0 votes

Automatic1111 WebUI plugin for OpenClaw integration

GitHub

Install

openclaw plugins install -l

README

# openclaw-a1111-plugin

Local OpenClaw plugin that adds image generation via AUTOMATIC1111's `sdapi/v1/txt2img` and `img2img` API.

## Current status

This is a local/dev plugin intended to live outside the `openclaw-src` git checkout so OpenClaw updates do not dirty or break the main repo.

## Install pattern

Recommended local dev setup:

- keep this plugin in its own folder/repo
- add it via `plugins.load.paths` or `openclaw plugins install -l ./openclaw-a1111-plugin`
- keep runtime config under `plugins.entries.a1111.config`

## Config

Example:

```json5
{
  plugins: {
    load: {
      paths: ["/home/robokrabs/.openclaw/workspace/openclaw-a1111-plugin"]
    },
    entries: {
      a1111: {
        enabled: true,
        config: {
          baseUrl: "http://127.0.0.1:7860"
        }
      }
    }
  },
  agents: {
    defaults: {
      imageGenerationModel: {
        primary: "a1111/sd"
      }
    }
  }
}
```

## Notes

- This plugin currently depends on the local `openclaw-src` checkout for the `openclaw/plugin-sdk` runtime import.
- Before publishing, we should replace that with a cleaner packaging strategy and test installation through the normal `openclaw plugins install` flow.
integration

Comments

Sign in to leave a comment

Loading comments...