karnel-termux 4.15.1 → 4.16.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 (78) hide show
  1. package/README.md +10 -4
  2. package/docs/CHANGELOG.md +36 -1
  3. package/docs/cli/README.md +0 -1
  4. package/karnel/RELEASE_COMMIT +1 -1
  5. package/karnel/cli/commands/agent.sh +841 -0
  6. package/karnel/cli/commands/brain.sh +155 -15
  7. package/karnel/cli/commands/ia.sh +24 -0
  8. package/karnel/cli/commands/list.sh +2 -0
  9. package/karnel/cli/commands/update.sh +1 -1
  10. package/karnel/cli/karnel.sh +29 -17
  11. package/karnel/tools/ai/all.sh +2 -0
  12. package/karnel/tools/ai/ampcode/bin/amp.proot +22 -0
  13. package/karnel/tools/ai/antigravity-cli/bin/agy.proot +22 -0
  14. package/karnel/tools/ai/cactus/bin/cactus +30 -0
  15. package/karnel/tools/ai/cactus/bin/cactus.glibc +31 -0
  16. package/karnel/tools/ai/cactus/bin/cactus.launcher.py +57 -0
  17. package/karnel/tools/ai/cactus/bin/cactus.proot +33 -0
  18. package/karnel/tools/ai/cactus/install.sh +288 -9
  19. package/karnel/tools/ai/cactus-needle/README.md +120 -0
  20. package/karnel/tools/ai/cactus-needle/bin/needle +30 -0
  21. package/karnel/tools/ai/cactus-needle/bin/needle.glibc +18 -0
  22. package/karnel/tools/ai/cactus-needle/bin/needle.proot +24 -0
  23. package/karnel/tools/ai/cactus-needle/install.sh +371 -0
  24. package/karnel/tools/ai/claude-code/bin/claude.proot +22 -0
  25. package/karnel/tools/ai/cline/bin/cline.proot +28 -0
  26. package/karnel/tools/ai/cline/install.sh +87 -34
  27. package/karnel/tools/ai/codegraph/bin/codegraph +1 -1
  28. package/karnel/tools/ai/command-code/install.sh +21 -3
  29. package/karnel/tools/ai/ctx7/install.sh +1 -1
  30. package/karnel/tools/ai/cursor-cli/bin/cursor.proot +33 -0
  31. package/karnel/tools/ai/cursor-cli/install.sh +107 -31
  32. package/karnel/tools/ai/droid/bin/droid +27 -0
  33. package/karnel/tools/ai/droid/bin/droid.proot +22 -0
  34. package/karnel/tools/ai/droid/helper/droid_helper.c +58 -0
  35. package/karnel/tools/ai/droid/install.sh +381 -79
  36. package/karnel/tools/ai/engram/install.sh +47 -13
  37. package/karnel/tools/ai/gentle-ai/install.sh +43 -5
  38. package/karnel/tools/ai/goose/bin/goose.proot +22 -0
  39. package/karnel/tools/ai/goose/install.sh +90 -8
  40. package/karnel/tools/ai/hermes-agent/install.sh +11 -2
  41. package/karnel/tools/ai/hugging-face/install.sh +1 -1
  42. package/karnel/tools/ai/keelcode/bin/keelcode.proot +23 -0
  43. package/karnel/tools/ai/keelcode/install.sh +95 -18
  44. package/karnel/tools/ai/kilocode-cli/bin/kilocode +4 -4
  45. package/karnel/tools/ai/kilocode-cli/bin/kilocode.proot +22 -0
  46. package/karnel/tools/ai/kilocode-cli/install.sh +19 -1
  47. package/karnel/tools/ai/kimchi-code/bin/kimchi.proot +22 -0
  48. package/karnel/tools/ai/kimchi-code/install.sh +399 -83
  49. package/karnel/tools/ai/kiro/install.sh +57 -14
  50. package/karnel/tools/ai/mimocode/bin/mimo.proot +22 -0
  51. package/karnel/tools/ai/mistral-vibe/install.sh +4 -1
  52. package/karnel/tools/ai/odysseus/install.sh +247 -55
  53. package/karnel/tools/ai/oh-my-pi/bin/omp.proot +22 -0
  54. package/karnel/tools/ai/omni-route/install.sh +63 -50
  55. package/karnel/tools/ai/openclaw/install.sh +4 -1
  56. package/karnel/tools/ai/opencode/bin/opencode.proot +22 -0
  57. package/karnel/tools/ai/openspec/install.sh +1 -1
  58. package/karnel/tools/ai/qoder/README.md +1 -1
  59. package/karnel/tools/ai/qoder/bin/qodercli.proot +22 -0
  60. package/karnel/tools/ai/walkie/README.md +84 -0
  61. package/karnel/tools/ai/walkie/bin/walkie +29 -0
  62. package/karnel/tools/ai/walkie/install.sh +660 -0
  63. package/karnel/tools/ai/walkie/patches/network-interfaces.js +71 -0
  64. package/karnel/tools/ai/walkie/patches/patch-agents.js +191 -0
  65. package/karnel/tools/ai/walkie/patches/patch-members.js +169 -0
  66. package/karnel/tools/ai/walkie/patches/patch-mention-only.js +89 -0
  67. package/karnel/tools/editor/nvchad/README.md +4 -4
  68. package/karnel/tools/editor/nvchad/install.sh +3 -3
  69. package/karnel/utils/agent_actions.sh +1421 -0
  70. package/karnel/utils/agent_llm.sh +304 -0
  71. package/karnel/utils/agent_markdown.sh +254 -0
  72. package/karnel/utils/bootstrap.sh +3 -2
  73. package/karnel/utils/log.sh +6 -0
  74. package/karnel/utils/walkie.sh +29 -0
  75. package/package.json +4 -1
  76. package/scripts/check-package.js +5 -2
  77. package/scripts/completion.bash +4 -4
  78. package/scripts/completion.zsh +4 -3
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.15.1-0078D4?style=for-the-badge" alt="Version">
11
+ <img src="https://img.shields.io/badge/version-4.16.0-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">
@@ -25,6 +25,9 @@
25
25
  <a href="https://karneltermux.vercel.app">
26
26
  <img src="https://img.shields.io/badge/Site-karneltermux.vercel.app-0078D4?style=for-the-badge" alt="Website">
27
27
  </a>
28
+ <a href="https://www.youtube.com/@capideb">
29
+ <img src="https://img.shields.io/badge/YouTube-Capi.deb-FF0000?style=for-the-badge&logo=youtube&logoColor=white" alt="YouTube — Capi.deb">
30
+ </a>
28
31
  </p>
29
32
 
30
33
  ---
@@ -59,7 +62,7 @@ Created by **Israel Marques**.
59
62
  ### Via checksummed GitHub release (recommended)
60
63
 
61
64
  ```bash
62
- version=4.15.1
65
+ version=4.16.0
63
66
  tmpdir=$(mktemp -d) && trap 'rm -rf "$tmpdir"' EXIT
64
67
  base="https://github.com/israelmarques1024-dotcom/karnel-termux/releases/download/v$version"
65
68
  curl -fsSL "$base/karnel-termux-install.sh" -o "$tmpdir/karnel-termux-install.sh"
@@ -625,8 +628,8 @@ contents. The official documentation site validates its catalog contracts,
625
628
  TypeScript, formatting, tests, and production build.
626
629
 
627
630
  These checks do not install every external tool or prove behavior on every Android
628
- device. Before relying on a new installer, test it in native Termux aarch64 with a
629
- disposable environment and verify network, storage, PRoot, and Termux:API behavior
631
+ device. Before relying on a new installer, test it in native Termux aarch64 with
632
+ a disposable environment and verify network, storage, PRoot, and Termux:API behavior
630
633
  for your device.
631
634
 
632
635
  ---
@@ -649,4 +652,7 @@ MIT © Israel Marques
649
652
  <a href="https://karneltermux.vercel.app">
650
653
  <img src="https://img.shields.io/badge/Full%20Documentation-0078D4?style=for-the-badge" alt="Documentation">
651
654
  </a>
655
+ <a href="https://www.youtube.com/@capideb">
656
+ <img src="https://img.shields.io/badge/YouTube-Capi.deb-FF0000?style=for-the-badge&logo=youtube&logoColor=white" alt="YouTube — Capi.deb">
657
+ </a>
652
658
  </p>
package/docs/CHANGELOG.md CHANGED
@@ -1,6 +1,41 @@
1
1
  # Documentation Changelog
2
2
 
3
- ## 4.15.1 - 2026-08-15
3
+ ## 4.16.0 - 2026-08-20
4
+
5
+ - Rebranded fully to Karnel: removed every remaining reference to DevCoreX and
6
+ core-termux across contributors, CLI `open` targets, completions, docs and
7
+ agent utilities.
8
+ - `nvchad` editor tool now installs the official upstream `NvChad/starter`
9
+ (pinned to a reviewed commit) instead of a third-party fork.
10
+ - Added the `karnel agent` subsystem (agent.sh, agent_actions.sh, agent_llm.sh,
11
+ agent_markdown.sh) with voice, markdown and LLM helper utilities.
12
+ - Hardened AI installers: cursor-cli (atomic staging download + ownership
13
+ markers), walkie, codegraph (correct Termux shebang), engram, gentle-ai,
14
+ command-code, ctx7, openspec, freebuff, hermes-agent, mistral-vibe, openclaw
15
+ and hugging-face (pinned dependency).
16
+ - Supply-chain tests now accept non-executable asset modes (644/660/664) so the
17
+ suite passes on Android shared storage, and the package checker handles the
18
+ npm >= 12 object-shaped pack report.
19
+ - AI registry count updated to 45 verified tools; all 26 isolated test suites
20
+ pass.
21
+
22
+ ## 4.15.2 - 2026-08-16
23
+
24
+ - Implemented the previously missing `karnel brain add "text"` subcommand.
25
+ `karnel brain save` (interactive) told non-interactive users to use
26
+ `karnel brain add` when a terminal was unavailable, but the subcommand did
27
+ not exist and fell through to "Unknown subcommand". `add` now saves a memory
28
+ non-interactively with optional `--title`, `--category` and `--tags`.
29
+ - Fixed memory slug lookup in `karnel brain show/relate/edit/delete`. The help
30
+ documents `karnel brain show slug-name`, but stored memories use
31
+ `YYYY-MM-DD_<slug>.md` filenames and lookups required the exact, full,
32
+ date-prefixed basename. A shared `_brain_find_memory` helper now resolves the
33
+ bare slug (falls back to `*_<slug>.md`) so the documented short form works.
34
+ - Removed a duplicated `glow` rendering block in `karnel brain show`.
35
+ - `karnel brain search` (and related memory search in `ask`/`save` suggestions and
36
+ `delete` relation clean-up) now falls back to `grep -r` when `ripgrep` is not
37
+ installed, instead of failing with "ripgrep not found". Environments without
38
+ `rg` (fresh minimal containers, CI runners) can now search memories.
4
39
 
5
40
  - Fixed the plugin registry pin: `PLUGIN_REGISTRY_COMMIT` now points to
6
41
  `f19d3cd` (registry commit that pins reviewed plugin sources to commits/
@@ -104,7 +104,6 @@ Performs `uninstall` followed by `install` for the selected module or tools.
104
104
  karnel update <module> # Update all tools in a module
105
105
  karnel update <module> --tool1 # Update specific tools
106
106
  karnel update karnel # Update the Karnel-Termux package only
107
- karnel update core # Same as karnel update karnel
108
107
  ```
109
108
 
110
109
  `karnel update karnel` first downloads and runs the official installer with
@@ -1 +1 @@
1
- 12c8716be0f62d885a6d95e3ada9a1d6405d3041
1
+ b96d4c7cb3e38a356ca310c3e9d8de39aea605ca