Tego Next is the backend runtime kernel for applications, plugins, clustered main nodes, and distributed workers. This repository currently implements the first layer of the planned three-layer architecture.
Development status: the APIs and package boundaries are still evolving. Packages are not published and no compatibility layer is provided yet.
- Runtime kernel — applications, plugins, cluster coordination, workers, and execution placement.
- Core capabilities — HTTP, security, data sources, caching, and resources.
- Business capabilities — reusable product and domain modules.
Only the runtime-kernel layer is implemented here.
- Runtime kernel architecture
- Phase-one threat model
- Deployment topologies
- Contributing and plugin authoring
- Plugin manifests, artifacts, packaging, signing, and lifecycle reconciliation
- Capability resolution and permission gates
- Local memory, SQLite, filesystem, process, and development-secret drivers
- PostgreSQL state, coordination, and artifact drivers
- Thread, process, and remote worker executors
- Authenticated WebSocket worker transport and reconnect handling
- Reusable driver and executor conformance suites
| Package | Responsibility |
|---|---|
@tegojs/contracts |
Stable first-layer contracts and schemas |
@tegojs/runtime |
Runtime creation, lifecycle, reconciliation, and recovery |
@tegojs/plugin-sdk |
TypeScript plugin component authoring API |
@tegojs/drivers-local |
Embedded and single-main local drivers |
@tegojs/drivers-postgres |
Cluster-capable PostgreSQL drivers |
@tegojs/executor-node |
Thread and process executors for Node.js |
@tegojs/transport-websocket |
Main/worker WebSocket transport |
@tegojs/testkit |
Driver, worker, and executor conformance tests |
@tegojs/cli |
Plugin packaging and signing commands |
The runnable example is in examples/echo-plugin.
- Node.js 26.5.0
- npm 11.13.0
- Docker or a local PostgreSQL 16 server only for PostgreSQL integration and multi-Main tests
Install the exact dependency graph from the lockfile:
npm ciBuild, typecheck, and run unit and architecture tests:
npm run build
npm run typecheck
npm testRun formatting and lint checks:
npm run format:check
npm run lintRun all local-capable checks:
npm run verifyThis command does not require PostgreSQL. It runs the quality, build, typechecking, unit and architecture gates, root/local integration tests, and the single-Main real-process flow. PostgreSQL integration and multi-Main takeover remain release and CI gates.
Release verification is intentionally stricter. From a clean working tree, using exactly Node.js 26.5.0 and npm 11.13.0, provide a PostgreSQL 16 URL:
TEGO_POSTGRES_URL=postgresql://tego_test:tego_test@127.0.0.1:55432/tego_next_test \
npm run verify:releaseThe command performs a clean lockfile install, quality checks, build and
typechecking, unit and architecture tests, SQLite and PostgreSQL integration
tests, reproducible echo-plugin packaging, single-Main smoke, multi-Main
takeover, and strict OpenSpec validation. npm run verify:release -- --preflight
checks the toolchain, clean tree, PostgreSQL URL, and CI contract without
running the gates. Both release verification and CI invoke the exact pinned
@fission-ai/openspec@1.4.1 package through npm run openspec:validate; no
global OpenSpec installation is required.
Start the disposable PostgreSQL service:
docker compose up -d postgresRun all integration tests against it:
TEGO_POSTGRES_URL=postgresql://tego_test:tego_test@127.0.0.1:55432/tego_next_test \
npm run test:integrationStop and delete the disposable database:
docker compose down -vGitHub Actions is the authoritative phase-one acceptance environment. Its
quality, integration, and system-e2e gates use PostgreSQL 16.14 and retain
integration and process diagnostics as workflow artifacts even when a test
fails. The PostgreSQL integration artifact contains
integration-result.json and integration-process.log; the system artifact
contains the corresponding single-main-* and multi-main-* result and
process-log files, plus diagnostics emitted beneath TEGO_TEST_ARTIFACTS_DIR.
Missing expected evidence fails artifact upload. Single-Main uses local
drivers; multi-Main requires PostgreSQL coordination and persistence. This
verification does not claim production readiness: production release remains
gated on Node.js 26 reaching LTS.
examples/echo-plugin contains a minimal TypeScript component and manifest.
Plugin code uses @tegojs/plugin-sdk; packaging and signing are provided by
@tegojs/cli.
Commits follow Conventional Commits:
<type>(optional-scope): <description>
Examples:
feat(runtime): add component readiness
fix(worker): contain reconnect failure
test(postgres): cover lease expiry
docs: clarify plugin lifecycle
Husky validates messages locally. GitHub validates the entire pull-request commit range, so bypassing the local hook does not bypass the repository gate.