karnel-termux 4.17.40 → 4.17.41
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/README.md +15 -4
- package/karnel/RELEASE_COMMIT +1 -1
- package/karnel/modules/deploy.sh +2 -0
- package/karnel/modules/games.sh +2 -0
- package/karnel/modules/network.sh +2 -0
- package/karnel/modules/utils.sh +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<a href="https://github.com/israelmarques1024-dotcom/karnel-termux">
|
|
11
|
-
<img src="https://img.shields.io/badge/version-4.17.
|
|
11
|
+
<img src="https://img.shields.io/badge/version-4.17.41-0078D4?style=for-the-badge" alt="Version">
|
|
12
12
|
</a>
|
|
13
13
|
<a href="https://www.npmjs.com/package/karnel-termux">
|
|
14
14
|
<img src="https://img.shields.io/npm/v/karnel-termux?style=for-the-badge&logo=npm&color=cb3837" alt="npm">
|
|
@@ -78,7 +78,7 @@ Why it's great:
|
|
|
78
78
|
### Via checksummed GitHub release (recommended)
|
|
79
79
|
|
|
80
80
|
```bash
|
|
81
|
-
version=4.17.
|
|
81
|
+
version=4.17.41
|
|
82
82
|
tmpdir=$(mktemp -d) && trap 'rm -rf "$tmpdir"' EXIT
|
|
83
83
|
base="https://github.com/israelmarques1024-dotcom/karnel-termux/releases/download/v$version"
|
|
84
84
|
curl -fsSL "$base/karnel-termux-install.sh" -o "$tmpdir/karnel-termux-install.sh"
|
|
@@ -140,6 +140,11 @@ aliases, or options; use `karnel help` and the CLI reference for the full set.
|
|
|
140
140
|
| `karnel uninstall <module>` | Remove installed modules |
|
|
141
141
|
| `karnel reinstall <module>` | Reinstall modules |
|
|
142
142
|
| `karnel upgrade` | Upgrade the framework (self-update) |
|
|
143
|
+
| `karnel ia` | Manage AI agent sessions, install tools, show launchers |
|
|
144
|
+
| `karnel search <query>` | Search tools and Brain memories |
|
|
145
|
+
| `karnel status` | System health dashboard (disk, RAM, services, connectivity) |
|
|
146
|
+
| `karnel start editor [port]` | Start code-server (VS Code in browser) |
|
|
147
|
+
| `karnel start robin` | Start Robin OSINT (Tor + web UI) |
|
|
143
148
|
| `karnel doctor termux` | Diagnose the Termux environment (30+ sections) |
|
|
144
149
|
| `karnel doctor code` | Detect project ecosystems and run code checks |
|
|
145
150
|
| `karnel doctor robin` | Diagnose Robin, Tor, dependencies, and local UI |
|
|
@@ -147,7 +152,6 @@ aliases, or options; use `karnel help` and the CLI reference for the full set.
|
|
|
147
152
|
| `karnel env` | Manage environment variables |
|
|
148
153
|
| `karnel voice` | Voice commands for AI agents |
|
|
149
154
|
| `karnel agent` | Local AI assistant — chat (`ask`) and task agent (`run`) |
|
|
150
|
-
| `karnel start editor` | Start code-server (VS Code in browser) |
|
|
151
155
|
| `karnel pg` | PostgreSQL manager |
|
|
152
156
|
| `karnel init <template>` | Initialize projects with templates |
|
|
153
157
|
| `karnel deploy` | Run Vercel, Railway, Netlify, or Supabase CLI commands |
|
|
@@ -202,9 +206,12 @@ karnel plugin search
|
|
|
202
206
|
karnel plugin search backup --compatible
|
|
203
207
|
karnel plugin install karnel-hello
|
|
204
208
|
karnel plugin update karnel-hello
|
|
209
|
+
karnel plugin enable karnel-hello
|
|
210
|
+
karnel plugin disable karnel-hello
|
|
211
|
+
karnel plugin config karnel-hello greeting "Hello"
|
|
205
212
|
karnel plugin list
|
|
206
213
|
karnel plugin remove karnel-hello
|
|
207
|
-
karnel plugin create
|
|
214
|
+
karnel plugin create my-plugin
|
|
208
215
|
```
|
|
209
216
|
|
|
210
217
|
Plugins are Bash code loaded by the Karnel process and run with the current
|
|
@@ -212,6 +219,10 @@ user's permissions. They are not sandboxed. Registry plugins have reviewed
|
|
|
212
219
|
metadata and are staged, validated, and atomically activated, but you should
|
|
213
220
|
still review code you do not trust.
|
|
214
221
|
|
|
222
|
+
Use `karnel plugin disable` to temporarily stop a plugin without removing it,
|
|
223
|
+
and `karnel plugin enable` to reactivate it. Per-plugin configuration is
|
|
224
|
+
supported with `karnel plugin config <name> [key] [value]`.
|
|
225
|
+
|
|
215
226
|
Each Karnel release pins and verifies one reviewed registry snapshot. New
|
|
216
227
|
registry entries become available after updating Karnel to a release that
|
|
217
228
|
includes that snapshot.
|
package/karnel/RELEASE_COMMIT
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4277f0390226e9a4b99f13cb14a6938bd071b29e
|
package/karnel/modules/deploy.sh
CHANGED
|
@@ -8,6 +8,7 @@ LOG_FILE="$KARNEL_CACHE/install_deploy.log"
|
|
|
8
8
|
install_deploy() {
|
|
9
9
|
separator; box "Installing Deploy CLIs"; separator; echo
|
|
10
10
|
log_info "Installing deploy tools..."
|
|
11
|
+
mkdir -p "$(dirname "$LOG_FILE")"
|
|
11
12
|
local rc=0
|
|
12
13
|
import "@/tools/deploy/all"
|
|
13
14
|
install_all_deploy_tools || rc=$?
|
|
@@ -41,6 +42,7 @@ update_deploy() {
|
|
|
41
42
|
reinstall_deploy() {
|
|
42
43
|
separator; box "Reinstalling Deploy CLIs"; separator; echo
|
|
43
44
|
log_info "Reinstalling deploy tools..."
|
|
45
|
+
mkdir -p "$(dirname "$LOG_FILE")"
|
|
44
46
|
local rc=0
|
|
45
47
|
import "@/tools/deploy/all"
|
|
46
48
|
reinstall_all_deploy_tools || rc=$?
|
package/karnel/modules/games.sh
CHANGED
|
@@ -8,6 +8,7 @@ LOG_FILE="$KARNEL_CACHE/install_games.log"
|
|
|
8
8
|
install_games() {
|
|
9
9
|
separator; box "Installing Games"; separator; echo
|
|
10
10
|
log_info "Installing games..."
|
|
11
|
+
mkdir -p "$(dirname "$LOG_FILE")"
|
|
11
12
|
local rc=0
|
|
12
13
|
import "@/tools/games/all"
|
|
13
14
|
install_all_games || rc=$?
|
|
@@ -41,6 +42,7 @@ update_games() {
|
|
|
41
42
|
reinstall_games() {
|
|
42
43
|
separator; box "Reinstalling Games"; separator; echo
|
|
43
44
|
log_info "Reinstalling games..."
|
|
45
|
+
mkdir -p "$(dirname "$LOG_FILE")"
|
|
44
46
|
local rc=0
|
|
45
47
|
import "@/tools/games/all"
|
|
46
48
|
reinstall_all_games || rc=$?
|
|
@@ -8,6 +8,7 @@ LOG_FILE="$KARNEL_CACHE/install_network.log"
|
|
|
8
8
|
install_network() {
|
|
9
9
|
separator; box "Installing Network Tools"; separator; echo
|
|
10
10
|
log_info "Installing network tools..."
|
|
11
|
+
mkdir -p "$(dirname "$LOG_FILE")"
|
|
11
12
|
local rc=0
|
|
12
13
|
import "@/tools/network/all"
|
|
13
14
|
install_all_network || rc=$?
|
|
@@ -41,6 +42,7 @@ update_network() {
|
|
|
41
42
|
reinstall_network() {
|
|
42
43
|
separator; box "Reinstalling Network Tools"; separator; echo
|
|
43
44
|
log_info "Reinstalling network tools..."
|
|
45
|
+
mkdir -p "$(dirname "$LOG_FILE")"
|
|
44
46
|
local rc=0
|
|
45
47
|
import "@/tools/network/all"
|
|
46
48
|
reinstall_all_network || rc=$?
|
package/karnel/modules/utils.sh
CHANGED
|
@@ -8,6 +8,7 @@ LOG_FILE="$KARNEL_CACHE/install_utils.log"
|
|
|
8
8
|
install_utils() {
|
|
9
9
|
separator; box "Installing Utility Tools"; separator; echo
|
|
10
10
|
log_info "Installing utility tools..."
|
|
11
|
+
mkdir -p "$(dirname "$LOG_FILE")"
|
|
11
12
|
local rc=0
|
|
12
13
|
import "@/tools/utils/all"
|
|
13
14
|
install_all_utils || rc=$?
|
|
@@ -41,6 +42,7 @@ update_utils() {
|
|
|
41
42
|
reinstall_utils() {
|
|
42
43
|
separator; box "Reinstalling Utility Tools"; separator; echo
|
|
43
44
|
log_info "Reinstalling utility tools..."
|
|
45
|
+
mkdir -p "$(dirname "$LOG_FILE")"
|
|
44
46
|
local rc=0
|
|
45
47
|
import "@/tools/utils/all"
|
|
46
48
|
reinstall_all_utils || rc=$?
|
package/package.json
CHANGED