Registry

Z+ programs, AI models, student projects, system components. Browse here, install from the terminal.

$ zpm install chirp
.zpZ+ Program
.zdxAI Model
.zscSignal Contract
.zpkgSystem Package
18 packages

.zp Programs

chirpv0.1.0
Application

Social network — posts, follows, timeline, trending, moderation. 120 lines.

zpm install chirp
fleet-orchestratorv0.1.0
Infrastructure

Accelerator fleet — discovery, health grading, tiered routing, self-healing.

zpm install fleet-orchestrator
anomaly-detectorv0.1.0
DevOps

Learned baselines, sigma gating, multi-signal resonance, auto-remediation.

zpm install anomaly-detector
patient-monitorv0.1.0
Healthcare

ICU vitals, alarm fatigue reduction, deterioration prediction, NEWS2 scoring.

zpm install patient-monitor

.zdx AI Models

toxic-detect.zdxText toxicity classifier for content moderation
12MBzpm install toxic-detect.zdx
object-detect.zdxReal-time object detection (YOLO-based)
45MBzpm install object-detect.zdx
embed-text.zdxText embedding model for semantic search
90MBzpm install embed-text.zdx
speech-to-text.zdxAudio transcription for voice interfaces
150MBzpm install speech-to-text.zdx
pest-detect.zdxCrop pest identification from images
35MBzpm install pest-detect.zdx
fraud-detect.zdxTransaction anomaly scoring
8MBzpm install fraud-detect.zdx

Zeros Robotics Templates

L0
zeros/blink
LED on/off — first hardware signal
L1
zeros/line-follower
Two sensors, two motors, one decision
L2
zeros/sumo-bot
Edge detection, opponent tracking, priority
L3
zeros/maze-solver
Wall following, path memory, map building

DereZ Dev Templates

L0
derez/hello-chain
First signal chain — data flow basics
L1
derez/signal-playground
Build chains live, experiment
L1
derez/pixel-art
Input handling, grid, tools, export
L2
derez/music-tracker
Audio sequencing, timing, patterns

Publishing

Publish your own Z+ programs, models, and templates. ZAuth required.

$ zpm login
$ zpm publish my-program.zp
$ zpm publish my-model.zdx --type model --size 45MB
Every published package includes its signal contract — what signals it needs, what it emits. Compatibility is checked before install.

API

GET /registry/api/v1/search?q= — search packages
GET /registry/api/v1/package/:name — package details
GET /registry/api/v1/package/:name/download — download package
GET /registry/api/v1/package/:name/versions — version history
POST /registry/api/v1/publish — publish (ZAuth required)