| name | release-madz | ||
|---|---|---|---|
| description | Builds and pushes all Docker images for the madz project by running npm run docker:release:all. Runs the build as a foreground process — it takes a few minutes. Reports completion status to the user. | ||
| license | MIT | ||
| compatibility | Requires Node.js 24+, npm, Docker CLI, and git with remote access. Must be run from the project root directory. | ||
| metadata |
|
This project proposes a terminal-based user interface (TUI) application, built entirely in JavaScript using a modern runtime such as Node.js, that functions as a secure, extensible harness for large language models. Designed for developers and advanced users, the system provides a unified keyboard-driven interface for handling both ad-hoc conversational queries and automated multi-step task execution. Rather than operating as a simple chat wrapper, the application serves as an intelligent workflow coordinator that can chain tool invocations, manage session state, and maintain context across long-running operations. The entire experience is optimized for terminal-native interaction, ensuring fast, scriptable, and reproducible workflows that integrate cleanly with existing command-line environments.
The harness incorporates a centralized tool and skills registry that enables the LLM to interact with both local and remote system
| { | |
| "gateway": { | |
| "controlUi": { | |
| "allowInsecureAuth": true, | |
| "dangerouslyDisableDeviceAuth": true, | |
| "allowedOrigins": [ | |
| "http://localhost:18789", | |
| "http://127.0.0.1:18789", | |
| "http://10.1.2.20:18789", | |
| "http://containers.lan:18789" |
🔧 Gotham Stack Deployment Version Update
Use the opencode-coding-agent skill to work with the gotham-stacks repository on the opencode LXC.
Task:
- SSH to LXC using:
ssh -i /home/node/.openclaw/workspace/ssh-keys/opencode-lxc jason@10.1.2.8 - Navigate to ~/projects/gotham-stacks on the LXC
- Create a unique feature branch from the updated default branch (main/master):
- Branch name format:
feature/deployment-version-update-YYYY-MM-DD-HHMM
- Branch name format:
- Example:
feature/deployment-version-update-2026-04-09-1800(6:00 PM run)
| { | |
| "id": "8dd5cd4a-6dc2-41f6-a37f-a7fca4255b72", | |
| "name": "Gotham Stack Deployment Version Update - 4x Daily", | |
| "description": "Scan k8s deployment manifests in gotham-stacks repo and update container versions to latest verified available versions", | |
| "enabled": true, | |
| "schedule": { | |
| "expr": "0 */6 * * *", | |
| "kind": "cron", | |
| "tz": "America/Toronto" | |
| }, |
| name | opencode-coding-agent |
|---|---|
| description | SSH-based access to opencode TUI coding agent in a remote container. Supports TUI mode, non-interactive run mode, server/attach patterns, and full CLI command set. Use when the user wants to delegate coding tasks to an opencode instance running remotely. Workflow: SSH into host, cd to projects/<repo>, create feature branch from updated default branch, launch opencode (TUI or run mode), execute coding instructions, commit with conventional prefix + signature, and push to GitHub. NEVER commit to default/main branch. |
SSH-based access to an opencode TUI (terminal user interface) coding agent running in an LXC container.
| sudo lvextend -r -l +100%FREE /dev/template-vg/root |
| # Disable SecureBoot in UEFI for kernel module to load | |
| # add options to primary | |
| non-free contrib | |
| # add source | |
| deb https://ftp.debian.org/debian/ bookworm-proposed-updates contrib main non-free non-free-firmware |
| $ vi /etc/apt/sources.list | |
| # add [contrib], [non-free] to [main] line | |
| deb http://deb.debian.org/debian/ bookworm main non-free-firmware contrib non-free | |
| $ LINUX_HEADERS=$(uname -r) | |
| $ apt update | |
| $ apt -y install nvidia-driver firmware-misc-nonfree linux-headers-$LINUX_HEADERS dkms | |
| # default [nouveau] driver is disabled | |
| $ cat /etc/modprobe.d/nvidia-blacklists-nouveau.conf | |
| # You need to run "update-initramfs -u" after editing this file. |
| sudo tee /etc/modprobe.d/i915.conf <<EOF | |
| options i915 enable_guc=2 | |
| EOF | |
| sudo update-initramfs -u | |
| sudo apt install intel-gpu-tools | |
| sudo apt install ocl-icd-libopencl1 intel-opencl-icd | |
| (reboot) |