@mutirolabs/openclaw-brain 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.1] - 2026-04-18
11
+
12
+ ### Added
13
+
14
+ - README prerequisites and wizard help text now suggest `--badge lobster` on
15
+ `mutiro agents create` so the agent shows the OpenClaw lobster badge in the
16
+ Mutiro UI. For existing agents, `mutiro agents update-profile <username>
17
+ --badge lobster` flips it on after the fact.
18
+
10
19
  ## [0.1.0] - 2026-04-18
11
20
 
12
21
  ### Added
@@ -46,5 +55,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
46
55
  with concrete fix commands, plus the paste-into-AI prompt as an alternative
47
56
  for users who'd rather have their AI assistant drive the setup.
48
57
 
49
- [Unreleased]: https://github.com/mutirolabs/openclaw-brain/compare/v0.1.0...HEAD
58
+ [Unreleased]: https://github.com/mutirolabs/openclaw-brain/compare/v0.1.1...HEAD
59
+ [0.1.1]: https://github.com/mutirolabs/openclaw-brain/compare/v0.1.0...v0.1.1
50
60
  [0.1.0]: https://github.com/mutirolabs/openclaw-brain/releases/tag/v0.1.0
package/README.md CHANGED
@@ -13,7 +13,7 @@ Start below, confirm each of these passes:
13
13
  |-------|-----------------|
14
14
  | `mutiro version` prints a version | `curl -sSL https://mutiro.com/downloads/install.sh \| bash` |
15
15
  | `mutiro auth whoami` prints your username | sign up: `mutiro auth signup <email> <username> "<Display Name>"` — or log in: `mutiro auth login <email>` |
16
- | `mutiro agents list` shows at least one agent you own | `mutiro agents create <username> "<Display>" --engine genie --bio "<short bio>"` |
16
+ | `mutiro agents list` shows at least one agent you own | `mutiro agents create <username> "<Display>" --engine genie --bio "<short bio>" --badge lobster` |
17
17
  | The built-in Mutiro brain for that agent is **not** running | `mutiro agent doctor`, and stop any `mutiro agent run` / `mutiro start` process for that agent |
18
18
 
19
19
  Want an AI assistant to drive you through those steps instead? Paste this into
@@ -25,6 +25,13 @@ Read this page from the Mutiro docs: https://mutiro.com/docs/guides/create-agent
25
25
 
26
26
  Canonical reference: [Mutiro create-agent guide](https://www.mutiro.com/docs/guides/create-agent.md).
27
27
 
28
+ > **Show the 🦞 badge.** Pass `--badge lobster` on `mutiro agents create` to mark
29
+ > the agent as OpenClaw-powered in the Mutiro UI. Already have an agent? Flip
30
+ > the badge with:
31
+ > ```bash
32
+ > mutiro agents update-profile <agent-username> --badge lobster
33
+ > ```
34
+
28
35
  > **Two brains, one agent = trouble.** Mutiro ships its own built-in brain. If
29
36
  > you leave it running, it will race OpenClaw for the same conversations and
30
37
  > both will reply (or neither will, depending on ordering). Stop it before
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutirolabs/openclaw-brain",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "OpenClaw channel plugin that drives a Mutiro agent over chatbridge. OpenClaw becomes the brain; Mutiro stays the messaging surface.",
5
5
  "type": "module",
6
6
  "license": "ISC",
@@ -183,7 +183,7 @@ export const mutiroSetupWizard: ChannelSetupWizard = {
183
183
  "",
184
184
  "Then log in and create (or pick) an agent:",
185
185
  " mutiro auth login <email>",
186
- ' mutiro agents create <username> "<Display Name>" --engine genie --bio "<bio>"',
186
+ ' mutiro agents create <username> "<Display Name>" --engine genie --bio "<bio>" --badge lobster',
187
187
  "",
188
188
  `Guide: ${CREATE_AGENT_GUIDE}`,
189
189
  ].join("\n"),
@@ -204,7 +204,7 @@ export const mutiroSetupWizard: ChannelSetupWizard = {
204
204
  "should drive. Each configured account points to one agent directory.",
205
205
  "",
206
206
  "If you don't have one yet:",
207
- ' mutiro agents create <username> "<Display Name>" --engine genie --bio "<bio>"',
207
+ ' mutiro agents create <username> "<Display Name>" --engine genie --bio "<bio>" --badge lobster',
208
208
  `Guide: ${CREATE_AGENT_GUIDE}`,
209
209
  ],
210
210
  currentValue: ({ cfg, accountId }) =>