@chrysb/alphaclaw 0.9.21 → 0.9.23

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/README.md CHANGED
@@ -214,6 +214,10 @@ npm run test:coverage # Coverage report
214
214
 
215
215
  **Requirements:** Node.js ≥ 22.14.0
216
216
 
217
+ ## Official Website
218
+
219
+ [alphaclaw.md](https://alphaclaw.md) is the official AlphaClaw website.
220
+
217
221
  ## License
218
222
 
219
223
  MIT
package/bin/alphaclaw.js CHANGED
@@ -747,6 +747,22 @@ if (fs.existsSync(configPath)) {
747
747
  }
748
748
  }
749
749
 
750
+ if (fs.existsSync(configPath)) {
751
+ try {
752
+ execFileSync(process.execPath, [
753
+ path.join(__dirname, "..", "lib", "scripts", "reconcile-codex-plugin.js"),
754
+ ], {
755
+ env: process.env,
756
+ stdio: "inherit",
757
+ timeout: 150_000,
758
+ });
759
+ } catch (error) {
760
+ console.error(
761
+ `[alphaclaw] Codex plugin reconciliation process failed: ${error.message}`,
762
+ );
763
+ }
764
+ }
765
+
750
766
  if (fs.existsSync(configPath)) {
751
767
  console.log("[alphaclaw] Config exists, reconciling channels...");
752
768