omni-catalyst 1.0.1 → 4.7.0
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/core/cli/commands/doctor.sh +1 -1
- package/core/tools/ai/freebuff/bin/freebuff +0 -0
- package/core/tools/ai/gentle-ai/termux-patches.go +0 -0
- package/core/tools/ai/gga/install.sh +0 -0
- package/core/utils/banner.sh +1 -1
- package/core/utils/env.sh +1 -1
- package/install.sh +0 -0
- package/package.json +6 -6
|
@@ -378,7 +378,7 @@ doctor_main() {
|
|
|
378
378
|
separator_section "AI Tools Installed"
|
|
379
379
|
echo
|
|
380
380
|
|
|
381
|
-
local -a ai_cmds=("opencode" "claude" "gemini" "codex" "qwen" "vibe" "mimo" "hermes" "kimi" "ollama" "freebuff" "pi" "agy" "mmx" "gentle-ai" "gga" "engram" "codegraph" "kiro" "
|
|
381
|
+
local -a ai_cmds=("opencode" "claude" "gemini" "codex" "qwen" "vibe" "mimo" "hermes" "kimi" "ollama" "freebuff" "pi" "agy" "mmx" "gentle-ai" "gga" "engram" "codegraph" "kiro" "heygen" "seedance" "veo3" "odysseus" "openclaude" "openclaw" "command-code")
|
|
382
382
|
local ai_count=0
|
|
383
383
|
|
|
384
384
|
for cmd in "${ai_cmds[@]}"; do
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/core/utils/banner.sh
CHANGED
|
@@ -410,8 +410,8 @@ _render() {
|
|
|
410
410
|
local entry="${TP[$(( i * 3 + 1 ))]}${PANEL_ICONS[$i]}${NC} ${WHITE}${PANEL_HEADERS[$i]}${NC} ${GREEN1}${val}${NC}"
|
|
411
411
|
local ev; ev=$(_ansi_len "$entry")
|
|
412
412
|
local epad=$(( (col_w - ev) / 2 ))
|
|
413
|
+
(( epad < 1 )) && epad=1
|
|
413
414
|
local epad2=$(( col_w - ev - epad ))
|
|
414
|
-
(( epad < 0 )) && epad=0
|
|
415
415
|
(( epad2 < 0 )) && epad2=0
|
|
416
416
|
col_line+="$(printf '%*s' "$epad" '')${entry}$(printf '%*s' "$epad2" '')"
|
|
417
417
|
(( i < 4 )) && col_line+="${GRAY}│${NC}"
|
package/core/utils/env.sh
CHANGED
package/install.sh
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omni-catalyst",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"description": "Modular Dev Environment for Termux — install languages, databases, AI agents, editors, and more with one command",
|
|
5
5
|
"bin": {
|
|
6
6
|
"omni": "core/bin/omni",
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
"README.md",
|
|
14
14
|
"LICENSE"
|
|
15
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"postinstall": "node scripts/npm-install.js"
|
|
18
|
+
},
|
|
16
19
|
"engines": {
|
|
17
20
|
"node": ">=14.0.0"
|
|
18
21
|
},
|
|
@@ -36,8 +39,5 @@
|
|
|
36
39
|
"homepage": "https://omni-catalyst.vercel.app",
|
|
37
40
|
"os": [
|
|
38
41
|
"android"
|
|
39
|
-
]
|
|
40
|
-
|
|
41
|
-
"postinstall": "node scripts/npm-install.js"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
42
|
+
]
|
|
43
|
+
}
|