omni-catalyst 1.0.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.
Files changed (237) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1137 -0
  3. package/core/bin/core +85 -0
  4. package/core/bin/omni +21 -0
  5. package/core/cli/commands/--version.sh +8 -0
  6. package/core/cli/commands/brain.sh +1549 -0
  7. package/core/cli/commands/doctor.sh +834 -0
  8. package/core/cli/commands/env.sh +226 -0
  9. package/core/cli/commands/init.sh +1266 -0
  10. package/core/cli/commands/install.sh +759 -0
  11. package/core/cli/commands/list.sh +397 -0
  12. package/core/cli/commands/open.sh +71 -0
  13. package/core/cli/commands/pg.sh +761 -0
  14. package/core/cli/commands/reinstall.sh +694 -0
  15. package/core/cli/commands/show.sh +90 -0
  16. package/core/cli/commands/uninstall.sh +700 -0
  17. package/core/cli/commands/update.sh +754 -0
  18. package/core/cli/commands/voice.sh +170 -0
  19. package/core/cli/core.sh +82 -0
  20. package/core/cli/omni.sh +634 -0
  21. package/core/modules/ai.sh +152 -0
  22. package/core/modules/auto.sh +90 -0
  23. package/core/modules/db.sh +94 -0
  24. package/core/modules/deploy.sh +50 -0
  25. package/core/modules/dev.sh +126 -0
  26. package/core/modules/editor.sh +101 -0
  27. package/core/modules/lang.sh +100 -0
  28. package/core/modules/npm.sh +122 -0
  29. package/core/modules/shell.sh +312 -0
  30. package/core/modules/ui.sh +115 -0
  31. package/core/tools/ai/all.sh +63 -0
  32. package/core/tools/ai/antigravity-cli/README.md +45 -0
  33. package/core/tools/ai/antigravity-cli/bin/agy +28 -0
  34. package/core/tools/ai/antigravity-cli/helper/agy_helper.c +39 -0
  35. package/core/tools/ai/antigravity-cli/install.sh +469 -0
  36. package/core/tools/ai/claude-code/README.md +45 -0
  37. package/core/tools/ai/claude-code/bin/claude +29 -0
  38. package/core/tools/ai/claude-code/helper/claude_helper.c +42 -0
  39. package/core/tools/ai/claude-code/install.sh +278 -0
  40. package/core/tools/ai/codegraph/README.md +43 -0
  41. package/core/tools/ai/codegraph/bin/codegraph +3 -0
  42. package/core/tools/ai/codegraph/install.sh +149 -0
  43. package/core/tools/ai/codex/README.md +44 -0
  44. package/core/tools/ai/codex/install.sh +104 -0
  45. package/core/tools/ai/command-code/README.md +62 -0
  46. package/core/tools/ai/command-code/install.sh +136 -0
  47. package/core/tools/ai/engram/README.md +44 -0
  48. package/core/tools/ai/engram/install.sh +127 -0
  49. package/core/tools/ai/freebuff/README.md +52 -0
  50. package/core/tools/ai/freebuff/bin/freebuff +28 -0
  51. package/core/tools/ai/freebuff/helper/freebuff_helper.c +47 -0
  52. package/core/tools/ai/freebuff/install.sh +301 -0
  53. package/core/tools/ai/gemini-cli/README.md +46 -0
  54. package/core/tools/ai/gemini-cli/install.sh +111 -0
  55. package/core/tools/ai/gentle-ai/README.md +42 -0
  56. package/core/tools/ai/gentle-ai/install.sh +253 -0
  57. package/core/tools/ai/gentle-ai/termux-patches.go +256 -0
  58. package/core/tools/ai/gga/README.md +49 -0
  59. package/core/tools/ai/gga/install.sh +134 -0
  60. package/core/tools/ai/hermes-agent/README.md +50 -0
  61. package/core/tools/ai/hermes-agent/install.sh +80 -0
  62. package/core/tools/ai/heygen/README.md +24 -0
  63. package/core/tools/ai/heygen/install.sh +126 -0
  64. package/core/tools/ai/kilocode-cli/README.md +45 -0
  65. package/core/tools/ai/kilocode-cli/bin/kilocode +21 -0
  66. package/core/tools/ai/kilocode-cli/helper/kilocode_helper.c +47 -0
  67. package/core/tools/ai/kilocode-cli/install.sh +179 -0
  68. package/core/tools/ai/kimchi-code/README.md +8 -0
  69. package/core/tools/ai/kimchi-code/install.sh +120 -0
  70. package/core/tools/ai/kimi-code/README.md +45 -0
  71. package/core/tools/ai/kimi-code/install.sh +111 -0
  72. package/core/tools/ai/kiro-cli/README.md +23 -0
  73. package/core/tools/ai/kiro-cli/install.sh +127 -0
  74. package/core/tools/ai/mimocode/README.md +43 -0
  75. package/core/tools/ai/mimocode/bin/mimo +28 -0
  76. package/core/tools/ai/mimocode/helper/mimocode_helper.c +47 -0
  77. package/core/tools/ai/mimocode/install.sh +287 -0
  78. package/core/tools/ai/minimax-cli/README.md +45 -0
  79. package/core/tools/ai/minimax-cli/install.sh +111 -0
  80. package/core/tools/ai/mistral-vibe/README.md +46 -0
  81. package/core/tools/ai/mistral-vibe/install.sh +119 -0
  82. package/core/tools/ai/odysseus/README.md +35 -0
  83. package/core/tools/ai/odysseus/install.sh +163 -0
  84. package/core/tools/ai/ollama/README.md +44 -0
  85. package/core/tools/ai/ollama/install.sh +78 -0
  86. package/core/tools/ai/openclaude/README.md +46 -0
  87. package/core/tools/ai/openclaude/install.sh +110 -0
  88. package/core/tools/ai/openclaw/README.md +47 -0
  89. package/core/tools/ai/openclaw/install.sh +112 -0
  90. package/core/tools/ai/opencode/README.md +51 -0
  91. package/core/tools/ai/opencode/bin/opencode +28 -0
  92. package/core/tools/ai/opencode/helper/opencode_helper.c +57 -0
  93. package/core/tools/ai/opencode/install.sh +290 -0
  94. package/core/tools/ai/pi/README.md +46 -0
  95. package/core/tools/ai/pi/install.sh +104 -0
  96. package/core/tools/ai/qwen-code/README.md +45 -0
  97. package/core/tools/ai/qwen-code/install.sh +111 -0
  98. package/core/tools/ai/seedance/README.md +22 -0
  99. package/core/tools/ai/seedance/install.sh +134 -0
  100. package/core/tools/ai/veo3/README.md +36 -0
  101. package/core/tools/ai/veo3/install.sh +151 -0
  102. package/core/tools/auto/all.sh +57 -0
  103. package/core/tools/auto/n8n/README.md +47 -0
  104. package/core/tools/auto/n8n/install.sh +102 -0
  105. package/core/tools/db/all.sh +60 -0
  106. package/core/tools/db/mariadb/README.md +43 -0
  107. package/core/tools/db/mariadb/install.sh +65 -0
  108. package/core/tools/db/mongodb/README.md +42 -0
  109. package/core/tools/db/mongodb/install.sh +73 -0
  110. package/core/tools/db/postgresql/README.md +45 -0
  111. package/core/tools/db/postgresql/install.sh +65 -0
  112. package/core/tools/db/sqlite/README.md +44 -0
  113. package/core/tools/db/sqlite/install.sh +65 -0
  114. package/core/tools/deploy/all.sh +39 -0
  115. package/core/tools/deploy/netlify/install.sh +41 -0
  116. package/core/tools/deploy/railway/install.sh +47 -0
  117. package/core/tools/deploy/vercel/install.sh +43 -0
  118. package/core/tools/dev/all.sh +75 -0
  119. package/core/tools/dev/bat/README.md +44 -0
  120. package/core/tools/dev/bat/install.sh +82 -0
  121. package/core/tools/dev/bc/README.md +44 -0
  122. package/core/tools/dev/bc/install.sh +82 -0
  123. package/core/tools/dev/cloudflared/README.md +43 -0
  124. package/core/tools/dev/cloudflared/install.sh +82 -0
  125. package/core/tools/dev/curl/README.md +43 -0
  126. package/core/tools/dev/curl/install.sh +82 -0
  127. package/core/tools/dev/fzf/README.md +44 -0
  128. package/core/tools/dev/fzf/install.sh +82 -0
  129. package/core/tools/dev/gh/README.md +43 -0
  130. package/core/tools/dev/gh/install.sh +82 -0
  131. package/core/tools/dev/html2text/README.md +44 -0
  132. package/core/tools/dev/html2text/install.sh +82 -0
  133. package/core/tools/dev/imagemagick/README.md +44 -0
  134. package/core/tools/dev/imagemagick/install.sh +82 -0
  135. package/core/tools/dev/jq/README.md +44 -0
  136. package/core/tools/dev/jq/install.sh +82 -0
  137. package/core/tools/dev/lsd/README.md +44 -0
  138. package/core/tools/dev/lsd/install.sh +82 -0
  139. package/core/tools/dev/make/README.md +44 -0
  140. package/core/tools/dev/make/install.sh +82 -0
  141. package/core/tools/dev/ncurses/README.md +42 -0
  142. package/core/tools/dev/ncurses/install.sh +82 -0
  143. package/core/tools/dev/proot/README.md +43 -0
  144. package/core/tools/dev/proot/install.sh +82 -0
  145. package/core/tools/dev/shfmt/README.md +44 -0
  146. package/core/tools/dev/shfmt/install.sh +82 -0
  147. package/core/tools/dev/tmate/README.md +44 -0
  148. package/core/tools/dev/tmate/install.sh +82 -0
  149. package/core/tools/dev/translate/README.md +44 -0
  150. package/core/tools/dev/translate/install.sh +82 -0
  151. package/core/tools/dev/tree/README.md +44 -0
  152. package/core/tools/dev/tree/install.sh +82 -0
  153. package/core/tools/dev/udocker/README.md +44 -0
  154. package/core/tools/dev/udocker/install.sh +82 -0
  155. package/core/tools/dev/wget/README.md +44 -0
  156. package/core/tools/dev/wget/install.sh +82 -0
  157. package/core/tools/editor/all.sh +58 -0
  158. package/core/tools/editor/neovim/README.md +43 -0
  159. package/core/tools/editor/neovim/install.sh +66 -0
  160. package/core/tools/editor/nvchad/README.md +45 -0
  161. package/core/tools/editor/nvchad/install.sh +110 -0
  162. package/core/tools/lang/all.sh +63 -0
  163. package/core/tools/lang/clang/README.md +43 -0
  164. package/core/tools/lang/clang/install.sh +79 -0
  165. package/core/tools/lang/golang/README.md +43 -0
  166. package/core/tools/lang/golang/install.sh +79 -0
  167. package/core/tools/lang/nodejs/README.md +43 -0
  168. package/core/tools/lang/nodejs/install.sh +79 -0
  169. package/core/tools/lang/perl/README.md +43 -0
  170. package/core/tools/lang/perl/install.sh +79 -0
  171. package/core/tools/lang/php/README.md +43 -0
  172. package/core/tools/lang/php/install.sh +79 -0
  173. package/core/tools/lang/python/README.md +43 -0
  174. package/core/tools/lang/python/install.sh +79 -0
  175. package/core/tools/lang/rust/README.md +43 -0
  176. package/core/tools/lang/rust/install.sh +79 -0
  177. package/core/tools/npm/all.sh +67 -0
  178. package/core/tools/npm/live-server/README.md +43 -0
  179. package/core/tools/npm/live-server/install.sh +95 -0
  180. package/core/tools/npm/localtunnel/README.md +43 -0
  181. package/core/tools/npm/localtunnel/install.sh +111 -0
  182. package/core/tools/npm/markserv/README.md +43 -0
  183. package/core/tools/npm/markserv/install.sh +94 -0
  184. package/core/tools/npm/ncu/README.md +43 -0
  185. package/core/tools/npm/ncu/install.sh +94 -0
  186. package/core/tools/npm/nestjs/README.md +43 -0
  187. package/core/tools/npm/nestjs/install.sh +94 -0
  188. package/core/tools/npm/ngrok/README.md +44 -0
  189. package/core/tools/npm/ngrok/install.sh +94 -0
  190. package/core/tools/npm/prettier/README.md +43 -0
  191. package/core/tools/npm/prettier/install.sh +94 -0
  192. package/core/tools/npm/psqlformat/README.md +43 -0
  193. package/core/tools/npm/psqlformat/install.sh +94 -0
  194. package/core/tools/npm/turbopack/README.md +8 -0
  195. package/core/tools/npm/turbopack/install.sh +41 -0
  196. package/core/tools/npm/typescript/README.md +43 -0
  197. package/core/tools/npm/typescript/install.sh +94 -0
  198. package/core/tools/npm/vercel/README.md +43 -0
  199. package/core/tools/npm/vercel/install.sh +94 -0
  200. package/core/tools/shell/all.sh +67 -0
  201. package/core/tools/shell/better-npm/README.md +43 -0
  202. package/core/tools/shell/better-npm/install.sh +85 -0
  203. package/core/tools/shell/fzf-tab/README.md +44 -0
  204. package/core/tools/shell/fzf-tab/install.sh +85 -0
  205. package/core/tools/shell/history-substring/README.md +43 -0
  206. package/core/tools/shell/history-substring/install.sh +85 -0
  207. package/core/tools/shell/powerlevel10k/README.md +43 -0
  208. package/core/tools/shell/powerlevel10k/install.sh +85 -0
  209. package/core/tools/shell/you-should-use/README.md +43 -0
  210. package/core/tools/shell/you-should-use/install.sh +85 -0
  211. package/core/tools/shell/zsh-autopair/README.md +44 -0
  212. package/core/tools/shell/zsh-autopair/install.sh +85 -0
  213. package/core/tools/shell/zsh-autosuggestions/README.md +43 -0
  214. package/core/tools/shell/zsh-autosuggestions/install.sh +85 -0
  215. package/core/tools/shell/zsh-completions/README.md +43 -0
  216. package/core/tools/shell/zsh-completions/install.sh +85 -0
  217. package/core/tools/shell/zsh-defer/README.md +43 -0
  218. package/core/tools/shell/zsh-defer/install.sh +85 -0
  219. package/core/tools/shell/zsh-syntax-highlighting/README.md +43 -0
  220. package/core/tools/shell/zsh-syntax-highlighting/install.sh +72 -0
  221. package/core/tools/ui/all.sh +61 -0
  222. package/core/tools/ui/banner/README.md +42 -0
  223. package/core/tools/ui/banner/install.sh +151 -0
  224. package/core/tools/ui/cursor/README.md +42 -0
  225. package/core/tools/ui/cursor/install.sh +58 -0
  226. package/core/tools/ui/extra-keys/README.md +43 -0
  227. package/core/tools/ui/extra-keys/install.sh +62 -0
  228. package/core/tools/ui/font/README.md +43 -0
  229. package/core/tools/ui/font/install.sh +63 -0
  230. package/core/utils/banner.sh +519 -0
  231. package/core/utils/bootstrap.sh +25 -0
  232. package/core/utils/colors.sh +31 -0
  233. package/core/utils/dialogrc +30 -0
  234. package/core/utils/env.sh +53 -0
  235. package/core/utils/log.sh +598 -0
  236. package/install.sh +272 -0
  237. package/package.json +43 -0
@@ -0,0 +1,43 @@
1
+ # TypeScript
2
+
3
+ Typed superset of JavaScript that compiles to plain JavaScript
4
+
5
+ **Package:** typescript
6
+ **Author:** israel676767
7
+ **Repository:** https://github.com/israel676767/omni
8
+ **Official:** https://www.typescriptlang.org
9
+ **Type:** Node.js global module (npm)
10
+ **License:** Apache 2.0
11
+
12
+ ## Description
13
+
14
+ TypeScript adds optional static typing, classes, and modules to JavaScript, enabling better tooling and catching errors at compile time. It compiles to clean, readable JavaScript that runs anywhere JavaScript runs.
15
+
16
+ ## Dependencies
17
+
18
+ - Node.js LTS (nodejs-lts)
19
+
20
+ ## Install
21
+
22
+ ```bash
23
+ core install npm --typescript
24
+ ```
25
+
26
+ ## Uninstall
27
+
28
+ ```bash
29
+ core uninstall npm --typescript
30
+ ```
31
+
32
+ ## Update
33
+
34
+ ```bash
35
+ core update npm --typescript
36
+ ```
37
+
38
+ ## Notes
39
+
40
+ - Command: `tsc`
41
+ - Installed as a global npm package
42
+ - Required for `core init` templates (Next.js, React, Express, NestJS)
43
+
@@ -0,0 +1,94 @@
1
+ #!/usr/bin/env bash
2
+
3
+ import "@/utils/log"
4
+
5
+ LOG_FILE="$OMNI_CACHE/install_npm.log"
6
+
7
+ _typescript_dependencies() {
8
+ if command -v node &>/dev/null && command -v npm &>/dev/null; then
9
+ log_info "Node.js and npm are already installed"
10
+ return 0
11
+ fi
12
+
13
+ log_info "Installing Nodejs..."
14
+ mkdir -p "$(dirname "$LOG_FILE")"
15
+ pkg install nodejs-lts -y &>>"$LOG_FILE"
16
+ }
17
+
18
+ _install_typescript_npm() {
19
+ loading "Installing TypeScript" _install_typescript_npm_impl
20
+ }
21
+
22
+ _install_typescript_npm_impl() {
23
+ if ! npm install -g typescript &>>"$LOG_FILE"; then
24
+ log_error "Failed to install TypeScript"
25
+ return 1
26
+ fi
27
+ return 0
28
+ }
29
+
30
+ install_typescript() {
31
+ if command -v tsc &>/dev/null; then
32
+ return 0
33
+ fi
34
+ log_info "Installing TypeScript..."
35
+
36
+ _typescript_dependencies
37
+
38
+ mkdir -p "$(dirname "$LOG_FILE")"
39
+
40
+ _install_typescript_npm || return 1
41
+ log_success "TypeScript installed"
42
+ return 0
43
+ }
44
+
45
+ _uninstall_typescript_npm() {
46
+ loading "Uninstalling TypeScript" _uninstall_typescript_npm_impl
47
+ }
48
+
49
+ _uninstall_typescript_npm_impl() {
50
+ if ! npm uninstall -g typescript &>>"$LOG_FILE"; then
51
+ log_error "Failed to uninstall TypeScript"
52
+ return 1
53
+ fi
54
+ return 0
55
+ }
56
+
57
+ uninstall_typescript() {
58
+ if ! command -v tsc &>/dev/null; then
59
+ log_info "TypeScript is not installed"
60
+ return 0
61
+ fi
62
+ log_info "Uninstalling TypeScript..."
63
+ mkdir -p "$(dirname "$LOG_FILE")"
64
+
65
+ _uninstall_typescript_npm || return 1
66
+ log_success "TypeScript uninstalled"
67
+ return 0
68
+ }
69
+
70
+ _update_typescript_npm() {
71
+ loading "Updating TypeScript" _update_typescript_npm_impl
72
+ }
73
+
74
+ _update_typescript_npm_impl() {
75
+ if ! npm update -g typescript &>>"$LOG_FILE"; then
76
+ log_error "Failed to update TypeScript"
77
+ return 1
78
+ fi
79
+ return 0
80
+ }
81
+
82
+ update_typescript() {
83
+ log_info "Updating TypeScript..."
84
+ mkdir -p "$(dirname "$LOG_FILE")"
85
+
86
+ _update_typescript_npm || return 1
87
+ log_success "TypeScript updated"
88
+ return 0
89
+ }
90
+
91
+ reinstall_typescript() {
92
+ uninstall_typescript
93
+ install_typescript
94
+ }
@@ -0,0 +1,43 @@
1
+ # Vercel CLI
2
+
3
+ Deploy frontend applications and serverless functions
4
+
5
+ **Package:** vercel
6
+ **Author:** israel676767
7
+ **Repository:** https://github.com/israel676767/omni
8
+ **Official:** https://vercel.com/docs/cli
9
+ **Type:** Node.js global module (npm)
10
+ **License:** Apache 2.0
11
+
12
+ ## Description
13
+
14
+ Vercel CLI allows you to deploy frontend applications and serverless functions to Vercel's global edge network. It supports frameworks like Next.js, React, and more with zero configuration required.
15
+
16
+ ## Dependencies
17
+
18
+ - Node.js LTS (nodejs-lts)
19
+
20
+ ## Install
21
+
22
+ ```bash
23
+ core install npm --vercel
24
+ ```
25
+
26
+ ## Uninstall
27
+
28
+ ```bash
29
+ core uninstall npm --vercel
30
+ ```
31
+
32
+ ## Update
33
+
34
+ ```bash
35
+ core update npm --vercel
36
+ ```
37
+
38
+ ## Notes
39
+
40
+ - Command: `vercel`
41
+ - Integrates with GitHub, GitLab, and Bitbucket
42
+ - Supports environment variables, domains, and team management
43
+
@@ -0,0 +1,94 @@
1
+ #!/usr/bin/env bash
2
+
3
+ import "@/utils/log"
4
+
5
+ LOG_FILE="$OMNI_CACHE/install_npm.log"
6
+
7
+ _vercel_dependencies() {
8
+ if command -v node &>/dev/null && command -v npm &>/dev/null; then
9
+ log_info "Node.js and npm are already installed"
10
+ return 0
11
+ fi
12
+
13
+ log_info "Installing Nodejs..."
14
+ mkdir -p "$(dirname "$LOG_FILE")"
15
+ pkg install nodejs-lts -y &>>"$LOG_FILE"
16
+ }
17
+
18
+ _install_vercel_npm() {
19
+ loading "Installing Vercel CLI" _install_vercel_npm_impl
20
+ }
21
+
22
+ _install_vercel_npm_impl() {
23
+ if ! npm install -g vercel &>>"$LOG_FILE"; then
24
+ log_error "Failed to install Vercel CLI"
25
+ return 1
26
+ fi
27
+ return 0
28
+ }
29
+
30
+ install_vercel() {
31
+ if command -v vercel &>/dev/null; then
32
+ return 0
33
+ fi
34
+ log_info "Installing Vercel CLI..."
35
+
36
+ _vercel_dependencies
37
+
38
+ mkdir -p "$(dirname "$LOG_FILE")"
39
+
40
+ _install_vercel_npm || return 1
41
+ log_success "Vercel CLI installed"
42
+ return 0
43
+ }
44
+
45
+ _uninstall_vercel_npm() {
46
+ loading "Uninstalling Vercel CLI" _uninstall_vercel_npm_impl
47
+ }
48
+
49
+ _uninstall_vercel_npm_impl() {
50
+ if ! npm uninstall -g vercel &>>"$LOG_FILE"; then
51
+ log_error "Failed to uninstall Vercel CLI"
52
+ return 1
53
+ fi
54
+ return 0
55
+ }
56
+
57
+ uninstall_vercel() {
58
+ if ! command -v vercel &>/dev/null; then
59
+ log_info "Vercel CLI is not installed"
60
+ return 0
61
+ fi
62
+ log_info "Uninstalling Vercel CLI..."
63
+ mkdir -p "$(dirname "$LOG_FILE")"
64
+
65
+ _uninstall_vercel_npm || return 1
66
+ log_success "Vercel CLI uninstalled"
67
+ return 0
68
+ }
69
+
70
+ _update_vercel_npm() {
71
+ loading "Updating Vercel CLI" _update_vercel_npm_impl
72
+ }
73
+
74
+ _update_vercel_npm_impl() {
75
+ if ! npm update -g vercel &>>"$LOG_FILE"; then
76
+ log_error "Failed to update Vercel CLI"
77
+ return 1
78
+ fi
79
+ return 0
80
+ }
81
+
82
+ update_vercel() {
83
+ log_info "Updating Vercel CLI..."
84
+ mkdir -p "$(dirname "$LOG_FILE")"
85
+
86
+ _update_vercel_npm || return 1
87
+ log_success "Vercel CLI updated"
88
+ return 0
89
+ }
90
+
91
+ reinstall_vercel() {
92
+ uninstall_vercel
93
+ install_vercel
94
+ }
@@ -0,0 +1,67 @@
1
+ #!/usr/bin/env bash
2
+
3
+ import "@/utils/log"
4
+
5
+ LOG_FILE="$OMNI_CACHE/install_shell.log"
6
+ ZSH_PLUGINS_DIR="$HOME/.zsh-plugins"
7
+
8
+ SHELL_PLUGINS=(
9
+ "powerlevel10k"
10
+ "zsh-defer"
11
+ "zsh-autosuggestions"
12
+ "zsh-syntax-highlighting"
13
+ "history-substring"
14
+ "zsh-completions"
15
+ "fzf-tab"
16
+ "you-should-use"
17
+ "zsh-autopair"
18
+ "better-npm"
19
+ )
20
+
21
+ for _tool in "${SHELL_PLUGINS[@]}"; do
22
+ source "$(dirname "$BASH_SOURCE")/$_tool/install.sh"
23
+ done
24
+ unset _tool
25
+
26
+ _batch_shell() {
27
+ local action="$1"
28
+ local action_past="$2"
29
+ local count_var="$3"
30
+ local count=0
31
+ local failed=0
32
+ local total=${#SHELL_PLUGINS[@]}
33
+ local current=0
34
+ local func_name
35
+
36
+ progress_start "$total" "${action_past}ing shell plugins..."
37
+
38
+ for tool in "${SHELL_PLUGINS[@]}"; do
39
+ func_name="${action}_${tool//-/_}"
40
+ if declare -f "$func_name" &>/dev/null; then
41
+ loading "${action_past^}ing ${tool}" "$func_name"
42
+ case $? in 0) ((count++));; 1) ((failed++));; esac
43
+ fi
44
+ ((current++))
45
+ progress_update "$current" "$total"
46
+ done
47
+
48
+ progress_done "$total"
49
+ eval "$count_var=$count"
50
+ return $failed
51
+ }
52
+
53
+ install_all_shell_plugins() {
54
+ _batch_shell "install" "install" "installed_count"
55
+ }
56
+
57
+ uninstall_all_shell_plugins() {
58
+ _batch_shell "uninstall" "uninstall" "uninstalled_count"
59
+ }
60
+
61
+ update_all_shell_plugins() {
62
+ _batch_shell "update" "update" "updated_count"
63
+ }
64
+
65
+ reinstall_all_shell_plugins() {
66
+ _batch_shell "reinstall" "reinstall" "reinstalled_count"
67
+ }
@@ -0,0 +1,43 @@
1
+ # Zsh-better-npm-completion
2
+
3
+ Better npm completion for ZSH
4
+
5
+ **Package:** zsh-better-npm-completion
6
+ **Author:** israel676767
7
+ **Repository:** https://github.com/israel676767/omni
8
+ **Official:** https://github.com/lukechilds/zsh-better-npm-completion
9
+ **Type:** ZSH plugin (git clone)
10
+ **License:** MIT
11
+
12
+ ## Description
13
+
14
+ Zsh-better-npm-completion provides enhanced tab completion for npm commands. It adds completions for npm scripts, package names from the registry, and npm subcommands with descriptions.
15
+
16
+ ## Dependencies
17
+
18
+ - ZSH, git, zoxide
19
+
20
+ ## Install
21
+
22
+ ```bash
23
+ core install shell --better-npm
24
+ ```
25
+
26
+ ## Uninstall
27
+
28
+ ```bash
29
+ core uninstall shell --better-npm
30
+ ```
31
+
32
+ ## Update
33
+
34
+ ```bash
35
+ core update shell --better-npm
36
+ ```
37
+
38
+ ## Notes
39
+
40
+ - Installed in `~/.zsh-plugins/`
41
+ - Enhanced npm tab completion
42
+ - Supports npm scripts, packages, and subcommands
43
+
@@ -0,0 +1,85 @@
1
+ #!/usr/bin/env bash
2
+
3
+ import "@/utils/log"
4
+
5
+ LOG_FILE="$OMNI_CACHE/install_shell.log"
6
+ ZSH_PLUGINS_DIR="$HOME/.zsh-plugins"
7
+
8
+ _better_npm_dependencies() {
9
+ declare -A DEPS=(
10
+ ["zsh"]="zsh"
11
+ ["zoxide"]="zoxide"
12
+ ["git"]="git"
13
+ )
14
+
15
+ local pkg_name bin_name
16
+ for pkg_name in "${!DEPS[@]}"; do
17
+ bin_name="${DEPS[$pkg_name]}"
18
+ if ! command -v "$bin_name" &>/dev/null; then
19
+ if ! pkg install "$pkg_name" -y &>>"$LOG_FILE"; then
20
+ log_error "Failed to install $pkg_name"
21
+ return 1
22
+ fi
23
+ fi
24
+ done
25
+
26
+ log_success "Shell dependencies installed"
27
+ return 0
28
+ }
29
+
30
+ _install_better_npm_git() {
31
+ loading "Installing zsh-better-npm-completion" _install_better_npm_git_impl
32
+ }
33
+
34
+ _install_better_npm_git_impl() {
35
+ mkdir -p "$(dirname "$LOG_FILE")"
36
+ if ! git clone --depth=1 "https://github.com/lukechilds/zsh-better-npm-completion.git" "$ZSH_PLUGINS_DIR/zsh-better-npm-completion" &>>"$LOG_FILE"; then
37
+ log_error "Failed to install zsh-better-npm-completion"
38
+ return 1
39
+ fi
40
+ return 0
41
+ }
42
+
43
+ install_better_npm() {
44
+ if [[ -d "$ZSH_PLUGINS_DIR/zsh-better-npm-completion" ]]; then
45
+ log_info "zsh-better-npm-completion already installed"
46
+ return 0
47
+ fi
48
+
49
+ _better_npm_dependencies
50
+
51
+ _install_better_npm_git || return 1
52
+ log_success "Installed"
53
+ return 0
54
+ }
55
+
56
+ _uninstall_better_npm_impl() {
57
+ if [[ ! -d "$ZSH_PLUGINS_DIR/zsh-better-npm-completion" ]]; then
58
+ log_info "zsh-better-npm-completion is not installed"
59
+ return 0
60
+ fi
61
+
62
+ rm -rf "$ZSH_PLUGINS_DIR/zsh-better-npm-completion"
63
+ }
64
+
65
+ uninstall_better_npm() {
66
+ loading "Uninstalling zsh-better-npm-completion" _uninstall_better_npm_impl
67
+ }
68
+
69
+ _update_better_npm_impl() {
70
+ if [[ ! -d "$ZSH_PLUGINS_DIR/zsh-better-npm-completion/.git" ]]; then
71
+ log_warn "zsh-better-npm-completion not installed"
72
+ return 0
73
+ fi
74
+
75
+ git -C "$ZSH_PLUGINS_DIR/zsh-better-npm-completion" pull &>>"$LOG_FILE"
76
+ }
77
+
78
+ update_better_npm() {
79
+ loading "Updating zsh-better-npm-completion" _update_better_npm_impl
80
+ }
81
+
82
+ reinstall_better_npm() {
83
+ uninstall_better_npm
84
+ install_better_npm
85
+ }
@@ -0,0 +1,44 @@
1
+ # Fzf-tab
2
+
3
+ Fuzzy completion with fzf for ZSH
4
+
5
+ **Package:** fzf-tab
6
+ **Author:** israel676767
7
+ **Repository:** https://github.com/israel676767/omni
8
+ **Official:** https://github.com/Aloxaf/fzf-tab
9
+ **Type:** ZSH plugin (git clone)
10
+ **License:** MIT
11
+
12
+ ## Description
13
+
14
+ Fzf-tab replaces ZSH's default completion menu with an fzf-based fuzzy finder. It provides interactive, searchable completions with preview capabilities, making it easier to find the right option from long lists.
15
+
16
+ ## Dependencies
17
+
18
+ - ZSH, git, zoxide, fzf
19
+
20
+ ## Install
21
+
22
+ ```bash
23
+ core install shell --fzf-tab
24
+ ```
25
+
26
+ ## Uninstall
27
+
28
+ ```bash
29
+ core uninstall shell --fzf-tab
30
+ ```
31
+
32
+ ## Update
33
+
34
+ ```bash
35
+ core update shell --fzf-tab
36
+ ```
37
+
38
+ ## Notes
39
+
40
+ - Installed in `~/.zsh-plugins/`
41
+ - Requires fzf (install via `core install dev --fzf`)
42
+ - Fuzzy completion with preview
43
+ - Replaces default ZSH completion menu
44
+
@@ -0,0 +1,85 @@
1
+ #!/usr/bin/env bash
2
+
3
+ import "@/utils/log"
4
+
5
+ LOG_FILE="$OMNI_CACHE/install_shell.log"
6
+ ZSH_PLUGINS_DIR="$HOME/.zsh-plugins"
7
+
8
+ _fzf_tab_dependencies() {
9
+ declare -A DEPS=(
10
+ ["zsh"]="zsh"
11
+ ["zoxide"]="zoxide"
12
+ ["git"]="git"
13
+ )
14
+
15
+ local pkg_name bin_name
16
+ for pkg_name in "${!DEPS[@]}"; do
17
+ bin_name="${DEPS[$pkg_name]}"
18
+ if ! command -v "$bin_name" &>/dev/null; then
19
+ if ! pkg install "$pkg_name" -y &>>"$LOG_FILE"; then
20
+ log_error "Failed to install $pkg_name"
21
+ return 1
22
+ fi
23
+ fi
24
+ done
25
+
26
+ log_success "Shell dependencies installed"
27
+ return 0
28
+ }
29
+
30
+ _install_fzf_tab_git() {
31
+ loading "Installing fzf-tab" _install_fzf_tab_git_impl
32
+ }
33
+
34
+ _install_fzf_tab_git_impl() {
35
+ mkdir -p "$(dirname "$LOG_FILE")"
36
+ if ! git clone --depth=1 "https://github.com/Aloxaf/fzf-tab.git" "$ZSH_PLUGINS_DIR/fzf-tab" &>>"$LOG_FILE"; then
37
+ log_error "Failed to install fzf-tab"
38
+ return 1
39
+ fi
40
+ return 0
41
+ }
42
+
43
+ install_fzf_tab() {
44
+ if [[ -d "$ZSH_PLUGINS_DIR/fzf-tab" ]]; then
45
+ log_info "fzf-tab already installed"
46
+ return 0
47
+ fi
48
+
49
+ _fzf_tab_dependencies
50
+
51
+ _install_fzf_tab_git || return 1
52
+ log_success "Installed"
53
+ return 0
54
+ }
55
+
56
+ _uninstall_fzf_tab_impl() {
57
+ if [[ ! -d "$ZSH_PLUGINS_DIR/fzf-tab" ]]; then
58
+ log_info "fzf-tab is not installed"
59
+ return 0
60
+ fi
61
+
62
+ rm -rf "$ZSH_PLUGINS_DIR/fzf-tab"
63
+ }
64
+
65
+ uninstall_fzf_tab() {
66
+ loading "Uninstalling fzf-tab" _uninstall_fzf_tab_impl
67
+ }
68
+
69
+ _update_fzf_tab_impl() {
70
+ if [[ ! -d "$ZSH_PLUGINS_DIR/fzf-tab/.git" ]]; then
71
+ log_warn "fzf-tab not installed"
72
+ return 0
73
+ fi
74
+
75
+ git -C "$ZSH_PLUGINS_DIR/fzf-tab" pull &>>"$LOG_FILE"
76
+ }
77
+
78
+ update_fzf_tab() {
79
+ loading "Updating fzf-tab" _update_fzf_tab_impl
80
+ }
81
+
82
+ reinstall_fzf_tab() {
83
+ uninstall_fzf_tab
84
+ install_fzf_tab
85
+ }
@@ -0,0 +1,43 @@
1
+ # Zsh-history-substring-search
2
+
3
+ History search by typing substrings
4
+
5
+ **Package:** zsh-history-substring-search
6
+ **Author:** israel676767
7
+ **Repository:** https://github.com/israel676767/omni
8
+ **Official:** https://github.com/zsh-users/zsh-history-substring-search
9
+ **Type:** ZSH plugin (git clone)
10
+ **License:** BSD 3-Clause
11
+
12
+ ## Description
13
+
14
+ Zsh-history-substring-search allows you to search through your ZSH history by typing any part of a previously entered command. It provides up/down arrow key bindings to cycle through matching entries.
15
+
16
+ ## Dependencies
17
+
18
+ - ZSH, git, zoxide
19
+
20
+ ## Install
21
+
22
+ ```bash
23
+ core install shell --history-substring
24
+ ```
25
+
26
+ ## Uninstall
27
+
28
+ ```bash
29
+ core uninstall shell --history-substring
30
+ ```
31
+
32
+ ## Update
33
+
34
+ ```bash
35
+ core update shell --history-substring
36
+ ```
37
+
38
+ ## Notes
39
+
40
+ - Installed in `~/.zsh-plugins/`
41
+ - Search by typing any part of a command
42
+ - Uses up/down arrow keys for navigation
43
+