Skip to content

Commit fea10e0

Browse files
committed
Revert "feat(openclaw-ryzome): add contracts.tools and allowlist status output"
This reverts commit 1c35736.
1 parent 1c35736 commit fea10e0

2 files changed

Lines changed: 4 additions & 18 deletions

File tree

packages/openclaw-ryzome/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
"agent"
2323
],
2424
"openclaw": {
25-
"contracts": {
26-
"tools": ["*"]
27-
},
2825
"extensions": [
2926
"./src/index.ts"
3027
],

packages/openclaw-ryzome/src/cli.ts

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -320,29 +320,18 @@ export function registerCliSetup(api: OpenClawPluginApi): void {
320320
return;
321321
}
322322

323-
const isAllowlisted = current.plugins?.allow?.includes("openclaw-ryzome");
324-
325323
console.log(
326324
success(" 🫚 Ryzome in circuit.") +
327325
dim(` (key from ${apiKeyStatus.source})`),
328326
);
329327
console.log("");
330-
console.log(accent(" Key: ") + maskSecret(apiKeyStatus.apiKey));
328+
console.log(accent(" Key: ") + maskSecret(apiKeyStatus.apiKey));
331329
console.log(
332-
accent(" Enabled: ") +
330+
accent(" Enabled: ") +
333331
((entry?.enabled ?? true) ? success("yes") : dim("no")),
334332
);
335-
console.log(
336-
accent(" Agent access: ") +
337-
(isAllowlisted
338-
? success("allowlisted")
339-
: dim("✗ not allowlisted") +
340-
" (run " +
341-
dim("openclaw plugins allow openclaw-ryzome") +
342-
")"),
343-
);
344-
console.log(accent(" API: ") + resolved.apiUrl);
345-
console.log(accent(" App: ") + resolved.appUrl);
333+
console.log(accent(" API: ") + resolved.apiUrl);
334+
console.log(accent(" App: ") + resolved.appUrl);
346335
console.log("");
347336
console.log(
348337
dim(" Your context is mapped. Outputs land closer to intent."),

0 commit comments

Comments
 (0)