agi-farm 3.3.2 → 3.3.3
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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/scripts/setup.js +4 -3
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "agi-farm",
|
|
3
3
|
"kind": "team-orchestration",
|
|
4
4
|
"name": "AGI Farm — Multi-Agent Team Builder",
|
|
5
|
-
"version": "3.3.
|
|
5
|
+
"version": "3.3.3",
|
|
6
6
|
"description": "Bootstrap complete multi-agent AI teams with Paperclip dashboard, auto-dispatcher, and infrastructure. Includes interactive wizard, SOUL.md generation, comms setup, cron registration, and OpenClaw gateway integration.",
|
|
7
7
|
"author": "oabdelmaksoud",
|
|
8
8
|
"homepage": "https://github.com/oabdelmaksoud/AGI-FARM-PLUGIN",
|
package/package.json
CHANGED
package/scripts/setup.js
CHANGED
|
@@ -47,15 +47,16 @@ function getAgentTemplatePath(templateName) {
|
|
|
47
47
|
|
|
48
48
|
// ── Environment Checks ───────────────────────────────────────────────────────
|
|
49
49
|
async function checkOpenClaw() {
|
|
50
|
-
|
|
50
|
+
process.stdout.write(chalk.cyan('🔍 Checking OpenClaw environment... '));
|
|
51
51
|
const result = runCommand('openclaw', ['--version']);
|
|
52
52
|
|
|
53
53
|
if (result.status === 0) {
|
|
54
54
|
const version = result.stdout.trim();
|
|
55
|
-
|
|
55
|
+
process.stdout.write(chalk.green(`Detected ${version}\n`));
|
|
56
56
|
return version;
|
|
57
57
|
} else {
|
|
58
|
-
|
|
58
|
+
process.stdout.write(chalk.yellow('OpenClaw not found in PATH.\n'));
|
|
59
|
+
console.log(chalk.dim(' Hint: Ensure it is installed via "npm install -g openclaw"\n'));
|
|
59
60
|
return null;
|
|
60
61
|
}
|
|
61
62
|
}
|