We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dedab6 commit cdff4edCopy full SHA for cdff4ed
1 file changed
packages/openclaw-ryzome/src/cli.ts
@@ -251,6 +251,10 @@ export function registerCliSetup(api: OpenClawPluginApi): void {
251
).trim();
252
253
const current = api.runtime.config.loadConfig();
254
+ const allow = current.plugins?.allow ?? [];
255
+ const nextAllow = allow.includes("openclaw-ryzome")
256
+ ? allow
257
+ : [...allow, "openclaw-ryzome"];
258
const entries = (current.plugins?.entries ?? {}) as Record<
259
string,
260
RyzomePluginEntry | undefined
@@ -271,6 +275,7 @@ export function registerCliSetup(api: OpenClawPluginApi): void {
271
275
...current,
272
276
plugins: {
273
277
...current.plugins,
278
+ allow: nextAllow,
274
279
entries: {
280
...entries,
281
"openclaw-ryzome": nextEntry,
0 commit comments