fluxy-bot 0.4.13 → 0.4.14
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/bin/cli.js +7 -4
- package/package.json +1 -1
- package/scripts/install +7 -4
- package/scripts/install.ps1 +14 -8
- package/scripts/install.sh +7 -4
package/bin/cli.js
CHANGED
|
@@ -117,10 +117,13 @@ class Stepper {
|
|
|
117
117
|
|
|
118
118
|
function banner() {
|
|
119
119
|
console.log(`
|
|
120
|
-
${c.blue}${c.bold}
|
|
121
|
-
${c.blue}${c.bold}
|
|
122
|
-
${c.
|
|
123
|
-
${c.
|
|
120
|
+
${c.blue}${c.bold} _______ _ ${c.reset}
|
|
121
|
+
${c.blue}${c.bold} (_______) | ${c.reset}
|
|
122
|
+
${c.blue}${c.bold} _____ | |_ _ _ _ _ _ ${c.reset}
|
|
123
|
+
${c.blue}${c.bold} | ___) | | | | ( \\ / ) | | | ${c.reset}
|
|
124
|
+
${c.pink}${c.bold} | | | | |_| |) X (| |_| | ${c.reset}
|
|
125
|
+
${c.pink}${c.bold} |_| |_|\\____(_/ \\_)\\__ | ${c.reset}
|
|
126
|
+
${c.pink}${c.bold} (____/ ${c.reset}
|
|
124
127
|
${c.dim}v${pkg.version} · Self-hosted AI agent${c.reset}`);
|
|
125
128
|
}
|
|
126
129
|
|
package/package.json
CHANGED
package/scripts/install
CHANGED
|
@@ -25,10 +25,13 @@ BOLD='\033[1m'
|
|
|
25
25
|
RESET='\033[0m'
|
|
26
26
|
|
|
27
27
|
printf "\n"
|
|
28
|
-
printf "${BLUE}${BOLD}
|
|
29
|
-
printf "${BLUE}${BOLD}
|
|
30
|
-
printf "${
|
|
31
|
-
printf "${
|
|
28
|
+
printf "${BLUE}${BOLD} _______ _ ${RESET}\n"
|
|
29
|
+
printf "${BLUE}${BOLD} (_______) | ${RESET}\n"
|
|
30
|
+
printf "${BLUE}${BOLD} _____ | |_ _ _ _ _ _ ${RESET}\n"
|
|
31
|
+
printf "${BLUE}${BOLD} | ___) | | | | ( \\ / ) | | | ${RESET}\n"
|
|
32
|
+
printf "${PINK}${BOLD} | | | | |_| |) X (| |_| | ${RESET}\n"
|
|
33
|
+
printf "${PINK}${BOLD} |_| |_|\\____(_/ \\_)\\__ | ${RESET}\n"
|
|
34
|
+
printf "${PINK}${BOLD} (____/ ${RESET}\n"
|
|
32
35
|
printf "\n"
|
|
33
36
|
printf "${DIM} Self-hosted, self-evolving AI agent with its own dashboard.${RESET}\n"
|
|
34
37
|
printf "${DIM} ─────────────────────────────${RESET}\n\n"
|
package/scripts/install.ps1
CHANGED
|
@@ -38,15 +38,21 @@ function Write-Down($text) {
|
|
|
38
38
|
|
|
39
39
|
Write-Host ""
|
|
40
40
|
if ($vtSupported) {
|
|
41
|
-
Write-Host "${BLUE}${BOLD}
|
|
42
|
-
Write-Host "${BLUE}${BOLD}
|
|
43
|
-
Write-Host "${
|
|
44
|
-
Write-Host "${
|
|
41
|
+
Write-Host "${BLUE}${BOLD} _______ _ ${RSET}"
|
|
42
|
+
Write-Host "${BLUE}${BOLD} (_______) | ${RSET}"
|
|
43
|
+
Write-Host "${BLUE}${BOLD} _____ | |_ _ _ _ _ _ ${RSET}"
|
|
44
|
+
Write-Host "${BLUE}${BOLD} | ___) | | | | ( \ / ) | | | ${RSET}"
|
|
45
|
+
Write-Host "${PINK}${BOLD} | | | | |_| |) X (| |_| | ${RSET}"
|
|
46
|
+
Write-Host "${PINK}${BOLD} |_| |_|\____(_/ \_)\__ | ${RSET}"
|
|
47
|
+
Write-Host "${PINK}${BOLD} (____/ ${RSET}"
|
|
45
48
|
} else {
|
|
46
|
-
Write-Host "
|
|
47
|
-
Write-Host "
|
|
48
|
-
Write-Host "
|
|
49
|
-
Write-Host "
|
|
49
|
+
Write-Host " _______ _ " -ForegroundColor Cyan
|
|
50
|
+
Write-Host " (_______) | " -ForegroundColor Cyan
|
|
51
|
+
Write-Host " _____ | |_ _ _ _ _ _ " -ForegroundColor Cyan
|
|
52
|
+
Write-Host " | ___) | | | | ( \ / ) | | | " -ForegroundColor Cyan
|
|
53
|
+
Write-Host " | | | | |_| |) X (| |_| | " -ForegroundColor Magenta
|
|
54
|
+
Write-Host " |_| |_|\____(_/ \_)\__ | " -ForegroundColor Magenta
|
|
55
|
+
Write-Host " (____/ " -ForegroundColor Magenta
|
|
50
56
|
}
|
|
51
57
|
Write-Host ""
|
|
52
58
|
Write-Host " Self-hosted, self-evolving AI agent with its own dashboard." -ForegroundColor DarkGray
|
package/scripts/install.sh
CHANGED
|
@@ -25,10 +25,13 @@ BOLD='\033[1m'
|
|
|
25
25
|
RESET='\033[0m'
|
|
26
26
|
|
|
27
27
|
printf "\n"
|
|
28
|
-
printf "${BLUE}${BOLD}
|
|
29
|
-
printf "${BLUE}${BOLD}
|
|
30
|
-
printf "${
|
|
31
|
-
printf "${
|
|
28
|
+
printf "${BLUE}${BOLD} _______ _ ${RESET}\n"
|
|
29
|
+
printf "${BLUE}${BOLD} (_______) | ${RESET}\n"
|
|
30
|
+
printf "${BLUE}${BOLD} _____ | |_ _ _ _ _ _ ${RESET}\n"
|
|
31
|
+
printf "${BLUE}${BOLD} | ___) | | | | ( \\ / ) | | | ${RESET}\n"
|
|
32
|
+
printf "${PINK}${BOLD} | | | | |_| |) X (| |_| | ${RESET}\n"
|
|
33
|
+
printf "${PINK}${BOLD} |_| |_|\\____(_/ \\_)\\__ | ${RESET}\n"
|
|
34
|
+
printf "${PINK}${BOLD} (____/ ${RESET}\n"
|
|
32
35
|
printf "\n"
|
|
33
36
|
printf "${DIM} Self-hosted, self-evolving AI agent with its own dashboard.${RESET}\n"
|
|
34
37
|
printf "${DIM} ─────────────────────────────${RESET}\n\n"
|