Urgent.News

What's breaking now, across thousands of outlets.

Tech

Three gotchas installing a plugin into someone else's agent

Three gotchas installing a plugin into someone else's agent This one is scoped tight: getting a plugin into OpenClaw's gateway so it loads, registers, and shows up next to the bundled providers. Nothing here about whether a real model's tool call actually reaches it; that part is a separate piece, with its own log lines and receipts. Three things broke on the way, and every one of them turned out…

Three common pitfalls to consider when installing a plugin into someone else's agent using OpenClaw:

Firstly, OpenClaw's plugin loader checks the path of the plugin file for world-writable permissions. In this case, the plugin was initially placed under a world-writable WSL mount, causing a configuration warning. Moving the plugin directory to a more restricted file system resolved this issue.

Secondly, the status of a plugin being enabled and loaded at boot time are distinct concepts. Even if the plugin is enabled, it may not automatically load during the gateway startup process. The manifest of the plugin must declare activation: { onStartup: true } for it to be loaded automatically. If it lacks a manifest, the loader won't consider it a candidate for startup activation.

Lastly, during the installation process, the installer dynamically runs your plugin code before you can interact with the `openclaw plugins install` command. Any errors in the registration process will be immediately apparent, as the installer calls your registration function directly. In this instance, the error was caused by incorrectly formatting the matcher option in the plugin's registration, resulting in a TypeError. Ensuring the correct format for the matcher option avoids this common issue.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

The discriminator between a membrane and a logger

The discriminator between a membrane and a logger The first version of this test passed for the wrong reason, and it took me a while to notice.

  • OpenClaw's native tool writes bytes before gx can commit inverse, causing simultaneous writes
  • Added line of code allows OpenClaw's tool to check file snapshot before writing, separating writers

A red gate and a silent one turned out to mean the same thing

A red gate and a silent one turned out to mean the same thing I wrote up an incident here a couple of days ago: CI on a Rust project I maintain showed red for weeks, and not one of those jobs had ever…

  • Red gate and silent gate indicated same error in CI process
  • Two incidents of scheduler refusing jobs and log missing
  • Introduced "untestable" category to avoid miscounting

I don't like what AIs are saying about my package (@bananacool467/ui-tools)

If you don't want to read the entire thing, my point is: Ai is literally flagging my entire account as malicious Even though MAL-2026-13416 was only complaining about 0.1.0-beta to 0.1.7-beta And I've…

  • AI system Gemini flagged package @bananacool467/ui-tools as malicious.
  • Developer had fixed vulnerability in later version 0.1.9-beta.
  • Gemini incorrectly labeled package despite developer's explanations.

More from Thursday 3 September →