@chrysb/alphaclaw 0.5.7-beta.0 → 0.6.0-beta.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.
@@ -577,7 +577,8 @@ export const DoctorTab = ({ isActive = false, onOpenFile = () => {} }) => {
577
577
  title=${runDoctorDisabledReason}
578
578
  />
579
579
  <p class="text-xs text-gray-500 leading-5 mt-10">
580
- No changes will be made without your direct approval
580
+ Runs on your main agent and consumes tokens. No
581
+ changes will be made without your approval.
581
582
  </p>
582
583
  </div>
583
584
  </div>
@@ -414,6 +414,7 @@ const listConfiguredChannelAccounts = ({ fsImpl, OPENCLAW_DIR, cfg }) => {
414
414
  cfg?.channels && typeof cfg.channels === "object" ? cfg.channels : {};
415
415
  return Object.entries(channels)
416
416
  .map(([channelId, channelConfig]) => {
417
+ if (!kChannelEnvKeys[String(channelId || "").trim()]) return null;
417
418
  const config =
418
419
  channelConfig && typeof channelConfig === "object" ? channelConfig : {};
419
420
  const accountsConfig =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrysb/alphaclaw",
3
- "version": "0.5.7-beta.0",
3
+ "version": "0.6.0-beta.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,7 +31,7 @@
31
31
  "dependencies": {
32
32
  "express": "^4.21.0",
33
33
  "http-proxy": "^1.18.1",
34
- "openclaw": "2026.3.7"
34
+ "openclaw": "^2026.3.8"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@vitest/coverage-v8": "^4.0.18",