@zeyue0329/xiaoma-cli 1.0.6 → 1.0.7
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/package.json
CHANGED
|
@@ -132,12 +132,12 @@ async function promptInstallation() {
|
|
|
132
132
|
|
|
133
133
|
// Display ASCII logo
|
|
134
134
|
console.log(chalk.bold.cyan(`
|
|
135
|
-
██╗ ██╗██╗ █████╗ ██████╗ ███╗ ███╗ █████╗
|
|
136
|
-
╚██╗██╔╝██║██╔══██╗██╔═══██╗████╗ ████║██╔══██╗ ██║
|
|
137
|
-
╚███╔╝ ██║███████║██║ ██║██╔████╔██║███████║█████╗██║
|
|
138
|
-
██╔██╗ ██║██╔══██║██║
|
|
139
|
-
██╔╝ ██╗██║██║ ██║╚██████╔╝██║ ╚═╝ ██║██║ ██║
|
|
140
|
-
╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
|
|
135
|
+
██╗ ██╗██╗ █████╗ ██████╗ ███╗ ███╗ █████╗ ██████╗██╗ ██╗
|
|
136
|
+
╚██╗██╔╝██║██╔══██╗██╔═══██╗████╗ ████║██╔══██╗ ██╔════╝██║ ██║
|
|
137
|
+
╚███╔╝ ██║███████║██║ ██║██╔████╔██║███████║█████╗██║ ██║ ██║
|
|
138
|
+
██╔██╗ ██║██╔══██║██║ ██║██║╚██╔╝██║██╔══██║╚════╝██║ ██║ ██║
|
|
139
|
+
██╔╝ ██╗██║██║ ██║╚██████╔╝██║ ╚═╝ ██║██║ ██║ ╚██████╗███████╗██║
|
|
140
|
+
╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚══════╝╚═╝
|
|
141
141
|
`));
|
|
142
142
|
|
|
143
143
|
console.log(chalk.bold.magenta('🚀 Universal AI Agent Framework for Any Domain'));
|
|
@@ -881,11 +881,11 @@ class Installer {
|
|
|
881
881
|
if (config.installType === "single-agent") {
|
|
882
882
|
console.log(
|
|
883
883
|
chalk.dim(
|
|
884
|
-
"\nNeed other agents? Run: npx xiaoma-
|
|
884
|
+
"\nNeed other agents? Run: npx xiaoma-cli install --agent=<name>"
|
|
885
885
|
)
|
|
886
886
|
);
|
|
887
887
|
console.log(
|
|
888
|
-
chalk.dim("Need everything? Run: npx xiaoma-
|
|
888
|
+
chalk.dim("Need everything? Run: npx xiaoma-cli install --full")
|
|
889
889
|
);
|
|
890
890
|
}
|
|
891
891
|
|
|
@@ -929,7 +929,7 @@ class Installer {
|
|
|
929
929
|
}
|
|
930
930
|
|
|
931
931
|
console.log(
|
|
932
|
-
chalk.dim("\nInstall with: npx xiaoma-
|
|
932
|
+
chalk.dim("\nInstall with: npx xiaoma-cli install --agent=<id>\n")
|
|
933
933
|
);
|
|
934
934
|
}
|
|
935
935
|
|
|
@@ -954,7 +954,7 @@ class Installer {
|
|
|
954
954
|
}
|
|
955
955
|
|
|
956
956
|
console.log(
|
|
957
|
-
chalk.dim("Install with: npx xiaoma-
|
|
957
|
+
chalk.dim("Install with: npx xiaoma-cli install --full --expansion-packs <id>\n")
|
|
958
958
|
);
|
|
959
959
|
}
|
|
960
960
|
|