@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 +4 -0
- package/bin/alphaclaw.js +16 -0
- package/lib/public/dist/app.bundle.js +362 -362
- package/lib/public/js/components/models-tab/index.js +3 -2
- package/lib/public/js/components/models-tab/use-models.js +11 -2
- package/lib/scripts/reconcile-codex-plugin.js +72 -0
- package/lib/server/init/register-server-routes.js +2 -1
- package/lib/server/routes/codex.js +4 -0
- package/lib/server/routes/models.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
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
|
|