Sovereign Infrastructure & Open Source

Building Sovereign Software In The Open.

A decade of engineering independence: from zero-reload ingress proxies and multi-GPU AI clusters to sovereign identity and community-preserved worlds. 100% free and open.

10+ Years
Open Source History
50 PRs
Documented Releases
1.5 TB+
Preserved Worlds
100% Free
Sovereign & Zero Tax
Engineering Chronicle & PR Announcements

Repository Milestones, PRs & Lore

Engineering history from foundational 2014 utilities and the founding of Theta 42, INC in November 2017 to our latest multi-GPU clusters. Walk over our repositories, pull requests, and releases across a decade of sovereign software.

2026-09-02 AI & Systems
wmantly/turing-multi-gpu-llm-server Project Genesis 32GB VRAM Cluster

Hacking 32GB VRAM: The Multi-GPU Turing Cluster on Frugal Hardware

Running local LLMs with 32k+ context shouldn't require renting cloud A100s or spending $10,000 on enterprise accelerators. We engineered a 32GB GDDR6 inference cluster inside a repurposed HPE ProLiant DL380p Gen8 server by pairing a desktop RTX 2060 12GB with two decommissioned NVIDIA CMP 50HX crypto mining cards (10GB each).

Mining silicon famously lacks display outputs and has aggressive power configurations drawing ~240W at idle. Through custom MSI VBIOS flashing, hardware strapping, and an aggressive Linux driver P-state governor, we slashed idle power draw down to a near-silent ~33W.

We compiled llama.cpp with CUDA 12 and NCCL tensor parallelism across all three Turing GPUs, achieving 325–500 tok/s prompt prefill speeds. To complete the stack, we wrote ollama-proxy.py—an intelligent API gateway offering dynamic reasoning/thinking control (think_budget=0 fast chat vs full dynamic chain-of-thought) compatible with Ollama, OpenAI, and Anthropic tooling.

"Enterprise inference performance on repurposed mining silicon for under $300. The sweet spot where hardware hacking meets autonomous AI."
git clone https://github.com/wmantly/turing-multi-gpu-llm-server.git
2026-09-01 AI & Systems
wmantly/maki Feature Release Autonomous Agent

Maki Agent: Remote Orchestration Tunnel & Local Web UI Control Plane

AI coding assistants shouldn't require bloated, memory-hungry Electron wrappers that trap your codebase in closed clouds. Maki is a native, lightning-fast Rust-based AI agent extendable via Neovim-style Lua plugins and the Agent Client Protocol (ACP) for modern editors like Zed.

We expanded Maki with full remote control capabilities and a dedicated Web UI to monitor, prompt, and manage autonomous coding sessions from any browser on the local network or Tailnet. We eliminated latent race conditions in async control tunnels so commands execute synchronously without synthetic pauses, hooked dynamic provider scripts into ~/.config/maki/providers/, and optimized local model routing.

"Why rent a closed SaaS agent when you can run a native Rust engine directly on your hardware, hack it with Lua, and orchestrate it remotely from a clean Web UI?" — William Mantly
curl -fsSL https://maki.sh/install.sh | sh
2026-08-18 Infrastructure
theta42/theta-suite PR #262 Merged Release v3.21.2

Release v3.21.2: Live LDAP Replication Convergence, Join Validation & Local Discovery

Theta Suite v3.21.2 solidifies our multi-site deployment tier. When running decentralized edge nodes across disparate physical sites or homelabs, OpenLDAP syncrepl replication must converge reliably without manual intervention.

This release introduces live LDAP replication convergence monitoring, automated site join preflight validation, and a runtime toggle for mDNS local discovery—allowing fresh nodes to bootstrap without relying on public DNS or central SaaS brokers.

git clone https://github.com/theta42/theta-suite.git && cd theta-suite && ./setup.sh
2026-08-18 Infrastructure
theta42/theta-directory PR #245 Merged Release v2.24.2

Release v2.24.2: Real-Time LDAP Directory Replication & Join Guard Hardening

Theta Directory v2.24.2 resolves subtle synchronization race conditions in hub-and-spoke topologies. Spoke instances now verify replication status directly against the primary hub before executing write actions.

Features token cache TTL optimizations, fail-soft join guards for spoke node onboarding, and real-time replication health badges on the admin status dashboard.

2026-08-18 Infrastructure
theta42/jump-host PR #61 Merged Release v3.3.4

Release v3.3.4: Hardened Mesh Service Routing & Dynamic WireGuard Endpoints

Jump Host v3.3.4 sets THETA_MESH_ENDPOINT by default across automated host installation scripts, resolving edge cases where remote nodes roamed across multi-homed interfaces.

Eliminates transient route flapping when bringing WireGuard mesh tunnels down during configuration changes, and finalizes unified shell navigation across the entire suite.

2026-08-18 Infrastructure
theta42/theta-agent PR #26 Merged Release v2.8.2

Release v2.8.2: mDNS Local Discovery Configuration Toggle & Hosts Override

Theta Agent v2.8.2 adds a configuration toggle for LAN mDNS discovery and conditional local /etc/hosts overrides.

This enables edge appliances and development laptops to discover local Theta Directory instances on air-gapped subnets without configuring external split-brain DNS servers.

theta-agent discover --site office-lab
2026-08-17 Infrastructure
theta42/theta-suite PR #254 Merged Release v3.20.0

PR #254: Pragmatic Hub-and-Spoke Architecture & Multi-Site Secret Sync

Merging PR #254 introduced native multi-site topology support to Theta Suite without the complexity of distributed consensus protocols.

Spoke instances handle local reads and ingress authentication at the edge while proxying mutation calls directly to the central hub. OpenBao secrets and TLS certificates synchronize automatically across all spoke locations over encrypted WireGuard backplanes.

2026-08-14 Infrastructure
theta42/proxy PR #234 Merged Release v2.4.2

PR #234: Interactive Notification Controls, Live Toasts & Profile Subsystem

Shipped real-time notification toasts and an interactive notification center bell directly inside Theta Proxy's web interface.

Admins and operators receive live UI alerts whenever new wildcard SSL certificates are issued, DNS API challenge credentials rotate, or backend route status changes occur—backed by Redis pub/sub WebSocket channels.

2026-08-13 Infrastructure
theta42/theta-agent PR #25 Merged Release v2.8.1

PR #25: Automated Azure Trusted Signing for Windows Fleet Binaries

Distributing sovereign endpoint software to enterprise Windows desktops often triggers annoying SmartScreen security warnings unless binaries are cryptographically signed with trusted EV certificates.

PR #25 integrated Microsoft Azure Trusted Signing directly into the Go cross-compilation pipeline. Windows binaries and system tray packages are signed automatically upon GitHub release creation, enabling one-click installation across corporate Windows fleets.

2026-08-13 Infrastructure
theta42/theta-directory PR #236 Merged Hardware Telemetry

PR #236: HP iLO Out-of-Band Discovery & Bare-Metal BMC Power Control

Expanded Theta Directory's hardware inventory engine with native support for Hewlett Packard Enterprise Integrated Lights-Out (HP iLO) management processors.

Theta Directory discovers iLO BMC controllers across LAN subnets, extracts server chassis serials, power metrics, and thermal sensor readings, and allows authorized administrators to execute hardware resets and power cycling directly from the Directory UI.

2026-08-12 Infrastructure
theta42/proxy PR #218 Merged Release v2.1.0

PR #218: Live Real-Time Socket Updates & Per-Socket Event Authorization

Replaced periodic frontend polling with a high-speed, bidirectional WebSocket event bus. Every route alteration, DNS challenge state, and host toggle immediately triggers targeted model events in connected browser sessions.

Introduced granular per-socket event authorization, ensuring operators only receive updates for hosts and domains they have explicit permission to view.

2026-08-11 Infrastructure
theta42/jump-host PR #46 & #47 Merged Release v2.2.0

PR #46 & #47: WireGuard Mesh Service Forwarding & Host-Level Routing Gateway

A major architectural evolution: migrated Jump Host's routing plane out of containerized Docker bridges directly into host-level Linux network namespaces.

Transformed Jump Host into a high-performance roster-driven WireGuard router capable of line-rate mesh packet forwarding and dedicated per-device internet egress rules.

2026-08-02 Infrastructure
theta42/theta-agent Project Genesis Zero-Touch Fleet

Project Genesis: Cross-Platform Sovereign Fleet Agent & WireGuard Mesh

Initial commit of theta42/theta-agent. We set out to replace complex configuration management scripts with a single cross-platform Go binary that connects sovereign machines to Theta Directory.

The agent automatically generates WireGuard keypairs, establishes encrypted point-to-point tunnels, and listens for gated fleet actions (wireguard, configure_ldap, service_control, reboot) while strictly prohibiting arbitrary remote shell execution.

curl -fsSL https://theta42.com/install-agent.sh | sudo sh
2026-08-02 Infrastructure
theta42/proxy PR #200 Merged Release v1.14.0

PR #200: OpenBao Secrets Integration for Zero-Cleartext DNS API Credentials

Storing DNS provider API tokens in Redis or local environment files is a significant security risk if an edge container is ever compromised.

PR #200 moved all DNS API keys (Cloudflare, Porkbun, DigitalOcean, DuckDNS) into OpenBao (open-source HashiCorp Vault fork) KV-v2 secret storage. Credentials are retrieved ephemerally during DNS-01 ACME challenges and never touch persistent disk.

2026-08-01 Frameworks & Tools
simpleworkjs/bao-conf Initial Release Vault Integration

Release v1.0.0: @simpleworkjs/bao-conf Vault KV-v2 Configuration Provider

Released @simpleworkjs/bao-conf, a lightweight OpenBao and HashiCorp Vault configuration provider for modern Node.js backends.

Seamlessly plugs into @simpleworkjs/conf to fetch secret trees at application startup with automated token renewal and fail-soft development fallbacks.

npm install @simpleworkjs/bao-conf @simpleworkjs/conf
2026-07-26 Infrastructure
theta42/theta-suite Architecture Milestone UI Unification

Milestone: Complete UI Unification Across Theta Suite Apps

Completed full UI unification across all three core applications: Theta Proxy v1.4.0, Theta Directory v1.5.0, and Jump Host v1.3.0.

Every application now shares a byte-identical design shell, unified client-side group gating, cached OIDC authentication promises, and standardized navigation across dark obsidian and warm gold design tokens.

"Enterprise SSO without the enterprise. Keycloak and Authentik make you bring your own directory; Theta Suite ships one out of the box."
2026-07-23 Infrastructure
theta42/jump-host Project Genesis Bastion Edge

Project Genesis: SSH Jump Host with Dynamic Homelab Inventory Graphing

First commit of theta42/jump-host: an intelligent SSH bastion and jump host designed specifically for homelabs and sovereign infrastructure.

Automatically polls UniFi network controllers, Proxmox VE hypervisors, and Docker sockets to present an inventory graph of every online host, enabling point-and-click SSH terminal access behind directory single sign-on.

2026-07-20 Frameworks & Tools
simpleworkjs Major Rollout Zero-DSL Node

SimpleWorkJS Ecosystem Expansion: @simpleworkjs/orm, backend, & frontend

Rolled out the full suite of SimpleWorkJS packages: @simpleworkjs/orm, @simpleworkjs/orm-identity, @simpleworkjs/backend, and @simpleworkjs/frontend.

Designed to strip the bloat from modern Node.js web services, offering lightweight schema modeling, session handling, and clean RESTful API construction without thousands of transitive dependencies.

npm install @simpleworkjs/conf @simpleworkjs/backend @simpleworkjs/orm-identity
2026-07-18 Frameworks & Tools
wmantly/model-redis PR #8 Merged TypeScript & CI

PR #8: TypeScript Declarations, Relationship Recursion Fixes & CI Testing

Merged PR #8 bringing full TypeScript definitions to model-redis. Provides strongly-typed schema models, autocomplete for relationship fields, and enables arbitrary instance properties on Table types.

Resolved subtle recursion bugs in circular model relationships and integrated full Jest test automation directly into GitHub Actions CI.

npm install model-redis
2026-07-18 Frameworks & Tools
wmantly/linux-user PR #32 Merged Major Release v2.0.0

Release v2.0.0: Normalized Error Contract, Non-Root Reads & Full TypeScript

Merged PR #30 and PR #32 to release the landmark v2.0.0 update of linux-user (published as linux-sys-user on NPM).

Normalized the error contract across both callback and Promise interfaces. Crucially introduced unprivileged non-root read methods (getUsers, getUserInfo, getGroups), allowing daemon monitoring services to inspect system accounts without elevating to root. Complete TypeScript type definitions included.

npm install linux-sys-user
2026-07-11 Infrastructure
theta42/theta-suite Project Genesis One-Command Stack

Project Genesis: One-Command Self-Hosted Identity & Proxy Stack

First commit of theta-env (later renamed theta-suite). The goal: bundle an OIDC/LDAP identity provider, dynamic ingress reverse proxy, and Linux enrollment into a single ./setup.sh Docker Compose environment.

Proved that full digital sovereignty and enterprise-grade single sign-on can be provisioned on bare metal in under 5 minutes.

git clone https://github.com/theta42/theta-suite.git && cd theta-suite && ./setup.sh
2026-02-14 AI & Systems
wmantly Ecosystem Release MCP Sidecars

Release: Autonomous Agent Skills (Tasmota, Porkbun, Minecraft & OpenClaw RAG)

Deployed production toolkits for autonomous AI coding agents using the Model Context Protocol (MCP) and custom skill runtimes.

Included tasmota-skill for IoT energy monitoring and relay control, porkbun-skill for programmatic DNS zone automation, minecraft-monitor-skill for real-time RCON server health, and openclaw-rag-skill for local codebase knowledge retrieval.

2025-12-31 Infrastructure
theta42/proxy PR #86 & #87 Merged Architecture Refactor

PR #86 & #87: Migration to @simpleworkjs/conf and model-redis ORM

Refactored Theta Proxy's internals to use our standardized open-source primitives. Replaced ad-hoc configuration loading with @simpleworkjs/conf (PR #86) and migrated database access to the standalone model-redis ORM package (PR #87).

Significantly improved test suite execution speed and enabled seamless CI/CD validation.

2025-12-30 Frameworks & Tools
wmantly/model-redis PR #4 & #5 Merged Release v0.3.0

PR #4 & #5: Comprehensive Jest Test Suite, Zero-Downtime Fixes & Docs Site

Shipped version 0.3.0 of model-redis: added 100% Jest test coverage across all schema validation and index lookups, eliminated critical edge-case serialization bugs, and added CommonJS synchronous setup support (setUpTable).

Deployed GitHub Pages automated documentation to establish the library as a standalone open-source standard.

2025-12-26 Community & Lore
corejourney.org Community Milestone Hardcore Engine

CoreJourney 26.1.2: The 'Spring to Life' Engine Update & Lore Wiki Launch

Shipped version 26.1.2 of the CoreJourney world engine, introducing performance optimizations for massive mob farms and clan battles.

Deployed the live telemetry web platform (corejourney.org) powered by SQLite WAL mode to track real-time kills, player lifespans, and death bans, alongside the community lore wiki (wiki.corejourney.org).

Server Address: corejourney.org (Hardcore Survival & PvP)
2025-02-23 Community & Lore
corejourney.org Community Preservation #SaveCJ Torch

#SaveCJ: Rescuing 5 Years of Minecraft World History from Permanent Shutdown

After 5 years of continuous hardcore survival, the original creator announced the permanent shutdown of CoreJourney on its 5th anniversary. For thousands of players who had built empires and survived real death bans, a world was about to vanish.

William Mantly (tux4242) stepped forward with the #SaveCJ pledge to preserve the community. World files were transferred over 10GbE fiber directly to sovereign HPE DL380 enterprise servers in his homelab—with a strict guarantee of 0% pay-to-win.

"Technically, CJ is now run and operated by Theta 42? But I'm Theta 42 and Theta 42 is me... 100% of community contributions keep the hardware powered and pay the electric bill." — #SaveCJ Announcement
2024-01-14 Frameworks & Tools
simpleworkjs/conf Project Genesis Zero-DSL Config

Project Genesis: @simpleworkjs/conf Zero-DSL Hierarchical Configuration

First commit of @simpleworkjs/conf: born from the frustration of over-engineered Node.js configuration frameworks.

One require statement deep-merges a conf/base.js with per-environment overrides and a gitignored secrets.js based on NODE_ENV, with zero DSLs and zero bloat.

npm install @simpleworkjs/conf
2023-10-03 Infrastructure
codeland-ecosystem Project Genesis Serverless LXC

Codeland: Self-Hosted Serverless Runtimes in Isolated Linux Containers

Initial release of the codeland-ecosystem runner manager and CRunner daemon. Long before modern cloud sandboxes became common, we engineered a self-hosted serverless code execution platform supporting 24 programming languages.

Featured pre-warmed container pools for instant sub-second cold starts, interactive WebSocket terminals, and isolated LXC sandboxing on a frugal $40/month hardware footprint.

"Real Linux containers, instant terminal multiplexing, and auto-scaling runners. A testament to architecting systems cleanly instead of burning venture capital."
2023-10-15 Frameworks & Tools
wmantly/model-redis PR #2 Merged Namespacing

PR #2: Multi-Tenant Key Prefix Isolation & Namespace Protection

Merged PR #2 adding dynamic key prefix isolation to model-redis.

Enables multiple microservices, testing environments, or multi-tenant applications to safely share a single Redis instance without key collisions by scoping all keys and indexes under a configured namespace.

const userTable = new Table({ name: 'users', prefix: 'myapp:' })
2023-06-27 Frameworks & Tools
wmantly/linux-user Feature Release Type Definitions

TypeScript Type Declarations & Native Date Expiration Support

Shipped official TypeScript type declarations for linux-user, bringing IDE autocomplete and compile-time type safety to Linux system administration.

Added support for passing native JavaScript Date objects directly into addUser for setting account expiration dates without manual date string formatting.

addUser({ username: 'deployer', expiredate: new Date('2026-12-31') })
2022-04-15 Frameworks & Tools
wmantly/linux-user PR #21 Merged Security Hardening

PR #20 & #21: Security Hardening (Exec to Spawn) & Account Expiration Policies

Major security overhaul: replaced vulnerable shell command string execution (exec) with structured argument array execution (spawn), completely neutralizing command injection vulnerabilities.

Merged PR #21 adding account expiration date enforcement via chage -E and comprehensive unit tests for SSH public key verification.

2022-01-09 Frameworks & Tools
wmantly/model-redis Project Genesis Origin Commit

Project Genesis: The First Commit of model-redis (Jan 9, 2022)

January 9, 2022 (commit 4d34eb3): Initial commit of wmantly/model-redis.

Extracted the ultra-fast Redis data modeling layer originally developed for Theta Proxy into an independent, zero-bloat NPM package. Provides schema validation, index tracking, secondary key queries, and JSON serialization with only a single dependency on the native redis driver.

"Relational ORMs bring heavy overhead and connection bloat. model-redis provides clean schema modeling, indexing, and relation queries directly on Redis." — William Mantly
npm install model-redis
2018-02-14 Frameworks & Tools
wmantly/linux-user Feature Release SSH Automation

SSH Public Key Verification & Automated Authorized Keys Injection

Added cryptographic verification of OpenSSH public keys (verifySSHKey) and direct automated injection into ~/.ssh/authorized_keys with strict POSIX permissions (0600 / 0700).

Engineered in February 2018 to power automated host provisioning for early Theta 42 infrastructure prototypes.

linuxUser.addSSHKey('deployer', 'ssh-rsa AAAAB3NzaC1yc2E...', cb)
2018-02-05 Infrastructure
theta42/proxy Project Genesis Origin Commit

Project Genesis: The First Commit of Theta Proxy (Feb 5, 2018)

February 5, 2018 (commit 83a1ef3): William Mantly commits the initial prototype of Theta Proxy.

Born out of the frustration of having to reload Nginx and drop active connections every time a new microservice or container was added, the project began as a quest for a genuinely zero-reload dynamic ingress proxy for sovereign infrastructure.

"Why should adding a backend route require restarting the web server? Software should adapt dynamically to infrastructure changes without downtime." — William Mantly
git clone https://github.com/theta42/proxy.git
2017-11-01 Community & Lore
theta42 Corporate Genesis Founding Milestone

Theta 42, INC Founded: Digital Sovereignty & Sovereign Software in the Open

November 2017: Theta 42, INC was officially incorporated with a clear ethos: engineering enterprise-grade, sovereign software that organizations, developers, and homelabbers can truly own.

Rejecting closed cloud lock-in, recurring API taxes, and intrusive telemetry, Theta 42 commits to building open, air-gappable infrastructure and community-first tools for the long haul.

"You should own the machines that store your data, authenticate your identity, and run your models. Rent-seeking SaaS monopolies compromise privacy, security, and long-term autonomy." — Theta42 Manifesto
2015-01-14 Frameworks & Tools
wmantly/jq-repeat Project Genesis Reactive DOM

Project Genesis: jq-repeat Reactive DOM Lists Without Monolithic Frameworks

Angular 1.x introduced developers to the magic of ng-repeat, but importing an entire monolithic framework just to synchronize an array of items with the DOM was unnecessary bloat.

We built jq-repeat to bring reactive, declarative list rendering to jQuery and vanilla JS. It automatically synchronizes the DOM when arrays are mutated via push, pop, or splice, with granular animation hooks (__put, __take, __putUpdate).

npm install jq-repeat
2014-12-11 Frameworks & Tools
wmantly/linux-user Project Genesis Origin Commit

Project Genesis: The First Commit of linux-user (Dec 11, 2014)

December 11, 2014 (commit 4599194): The foundational first commit of wmantly/linux-user (published as linux-sys-user on NPM).

Created to provide a reliable, zero-dependency Node.js interface for managing Linux system users, groups, and SSH authorized keys directly from JavaScript. Designed with clean unprivileged read-only calls and root privileges strictly required only for state mutations.

npm install linux-sys-user
Engineering & Architecture

Want to build or deploy systems like this? Let's talk.

Whether you're tuning multi-GPU LLM inference clusters on frugal hardware, deploying zero-reload identity reverse proxies, or securing sovereign enterprise infrastructure—we build and deploy production solutions. Reach out to info@theta42.com to see how we can help.

Community Support

Help keep the hardware powered and the code free.

Theta42 open-source tools, Minecraft community servers (CoreJourney), and public telemetry run on real physical enterprise hardware. Support independent, sovereign software—100% of contributions go directly to server power and replacement ZFS SSDs.

Open Source Catalog

Tools, Libraries & Runtimes

Everything built and maintained across the Theta42 ecosystem. Free, MIT-licensed, and designed to run on sovereign infrastructure.

Infrastructure Flagship Stack

Theta Suite

Complete self-hosted identity, proxy, and jump host stack in one ./setup.sh. Bundles OIDC/OpenLDAP SSO, OpenResty ingress, dynamic inventory mapping, and OpenBao secrets into a single Docker Compose environment.

git clone theta-suite
Networking & Security Ingress Edge

Theta Proxy

High-performance OpenResty/Lua reverse proxy with native OIDC + LDAP directory authentication. Zero-reload hostname routing, Redis data storage, and automated Let's Encrypt wildcard DNS challenges.

git clone proxy
AI & Systems Coding Agent

Maki (Remote & WebUI)

Native, ultra-efficient Rust AI coding assistant with Lua extension hooks and ACP protocol for Zed. Extended with remote control orchestration and a dedicated management Web UI.

curl -fsSL maki.sh | sh
AI & Hardware 32GB VRAM Cluster

Turing Multi-GPU LLM Server

Repurposed 32GB GDDR6 Turing cluster (RTX 2060 12GB + 2x CMP 50HX 10GB) inside an HPE DL380p Gen8. Custom MSI VBIOS mods slashing idle power to ~33W, CUDA 12 NCCL tensor parallelism (500 tok/s prefill), and dynamic reasoning gateway (ollama-proxy.py).

git clone turing-multi-gpu-llm-server
Networking & Security WireGuard Mesh

Theta Agent & Tray

Cross-platform Go daemon and desktop system tray companion for zero-touch Theta Directory enrollment. Auto-generates WireGuard keypairs, manages dynamic peer routing with smart auto-roaming, and enforces strict capability gating without arbitrary shell access.

git clone theta-agent
Runtimes Serverless

Codeland Ecosystem

Self-hosted serverless code execution platform. 24 languages, isolated Linux containers (LXC), pre-warmed worker pools, WebSocket interactive terminals, and instant public URLs on $40/mo hardware.

Frameworks Zero-DSL Node

SimpleWorkJS

Pragmatic application stack: @simpleworkjs/conf (hierarchical zero-DSL config management), @simpleworkjs/orm-identity, and lightweight backend/frontend libraries for clean Node.js applications.

npm i @simpleworkjs/conf
Gaming & Telemetry Hardcore Server

CoreJourney

Legendary 5+ year hardcore survival Minecraft server running on sovereign HPE DL380 hardware. Custom real-time SQLite WAL telemetry web app tracking death bans, kills, and leaderboards with strictly zero pay-to-win.

corejourney.org
NPM Library Zero-Dep

linux-sys-user

Linux user and group management from Node.js with zero dependencies. Promises & async/await. Unprivileged read-only calls (getUsers, getUserInfo, verifySSHKey) with root required only for mutation.

npm i linux-sys-user
Database / ORM Fast Redis ORM

model-redis

Simple ORM model with schema for Redis in Node.js. Only one external dependency (redis). Designed for high-speed, lightweight internal infrastructure systems without heavy relational baggage.

npm i model-redis
Frontend Library Reactive Lists

jq-repeat

Angular's reactive ng-repeat extracted into an ultra-lean plugin. Auto DOM sync on push/pop/splice with fine-grained lifecycle hooks (__put, __take, __putUpdate).

npm i jq-repeat
P2P Networking Zero-Dependency

p2psub

Decentralized peer-to-peer JSON Pub/Sub in Node.js with zero external dependencies. Automatic peer discovery and reconnection, heartbeat gossip, RegExp pattern-based topic subscriptions, and resilient distributed messaging without central brokers.

npm i p2psub
Sysadmin & DevOps Safe Visudo Tool

sudoers-add

Programmatic, safe sudoers rule management for Linux automated setups. Validates syntax strictly using visudo -cf against a sandboxed buffer before atomically installing rules into /etc/sudoers.d/, preventing administrative lockouts.

npm i -g sudoers-add
Autonomous AI Skills & Sidecars

Agent Skills & MCP Sidecars

A collection of production skills and Model Context Protocol (MCP) integrations for autonomous agents: tasmota-skill (IoT energy monitoring & relay control), porkbun-skill (DNS automation), minecraft-monitor-skill (RCON telemetry), and openclaw-rag-skill.

Guiding Principles

Why We Build In The Open

Digital Sovereignty

You should own the machines that store your data, authenticate your identity, and run your models. Rent-seeking cloud subscriptions and black-box SaaS APIs compromise privacy, security, and long-term autonomy.

Pragmatic Architecture

Software should be lean, battle-tested, and transparent. We avoid configuration ceremony, bloated dependencies, and speculative complexity in favor of straightforward code that stays running for years.

Community Stewardship

Whether preserving an unmaintained open-source library or rescuing a 5-year gaming community from shutdown, code is about people. We build with strict integrity, zero pay-to-win tricks, and complete transparency.

Connect & Collaborate

Join The Community

Connect with other developers, sysadmins, homelabbers, and gamers building and using Theta42 software.

GitHub Discussions

Ask technical questions, report issues, submit feature requests, or contribute code across our open-source repositories.

Explore GitHub @theta42 ↗

Community Chat

Real-time chat and discussion space for homelab setups, identity architecture, AI coding agents, and CoreJourney gaming.

Request Chat Invite ↗

CoreJourney Community

Play on the official hardcore Minecraft server, check live player statistics, join the discord, or contribute to the lore wiki.

Visit CoreJourney ↗

Engineering & Consulting

Want to build or deploy systems like this? Reach out to info@theta42.com to see how we can help your team or infrastructure.

Email info@theta42.com ↗