Adds README, LICENSE (MIT), .gitignore, Makefile, CONTRIBUTING, CHANGELOG, SECURITY, CODEOWNERS, .editorconfig, .github/workflows/ci.yml, and docs/ARCHITECTURE.md + docs/adr/0001 to bring this repository up to the CxLLM family baseline. |
||
|---|---|---|
| .git.nosync | ||
| .gitea/workflows | ||
| .github/workflows | ||
| CxLLM-Kernel | ||
| CxLLM-Kernel.xcodeproj | ||
| docs | ||
| Sources/CxKernel | ||
| .editorconfig | ||
| .gitignore | ||
| CHANGELOG.md | ||
| CODEOWNERS | ||
| CONTRIBUTING.md | ||
| LICENSE | ||
| Makefile | ||
| Package.swift | ||
| README.md | ||
| SECURITY.md | ||
CxLLM-Kernel
CxLLM-Kernel — kernel module
CxLLM-Kernel is part of the CxLLM family. This repository hosts the kernel surface and is intentionally narrow so it can compose with sibling modules without dragging in unrelated dependencies.
Overview
CxLLM-Kernel is part of the CxLLM product family — a layered runtime that
spans Apple kernel extensions, user-space frameworks, host applications, and
spatial / web surfaces. This module focuses on kernel concerns and is
intentionally narrow so that the CxLLM monorepo can compose targets without
pulling in unrelated dependencies.
Repository layout
CxLLM-Kernel/— primary source folder (matches the Xcode group / SwiftPM root).CxLLM-Kernel.xcodeproj— Xcode project (where applicable).Makefile— common entry points (build,test,lint,clean)..github/workflows/ci.yml— CI pipeline (Xcode build + lint).docs/— architecture notes and ADRs.
Quick start
# Build (defaults to Debug for the host platform):
make build
# Run the full test suite (unit + UI where applicable):
make test
# Static analysis + format check:
make lint
Versioning
This module follows Semantic Versioning 2.0 and is
released in lock-step with the umbrella CxLLM product line. See
CHANGELOG.md for the user-facing change log.
Security
Please report security issues per SECURITY.md. Do not
open public issues for vulnerabilities.
License
Released under the MIT License © 2026 CxAI-LLM.