Architecture Overview

Devplane is not a CI/CD workflow tool. It is the underlying compute plane designed for unconstrained execution.

The Core Problem

Current CI/CD orchestrators treat computation as a secondary concern to workflow management. Workloads are queued onto static, depreciating hardware instances. The orchestrator is completely decoupled from the actual hardware constraints, leading to queue times, persistent state corruption, and slow execution.

The Execution Plane

Devplane reverses this model. We provide raw compute primitives—ephemeral, instantly provisioned environments—that eliminate the need for orchestrators to care about the metal.

# Example: Provisioning a raw M2 Max equivalent environment
curl -X POST https://api.devplane.com/v1/compute/provision \
  -H "Authorization: Bearer $DEVPLANE_TOKEN" \
  -d '{
    "architecture": "apple-silicon-m2",
    "ephemeral": true,
    "state_retention": "zero"
  }'

Zero State Guarantee

Every workload executed on Devplane is guaranteed to run in a mathematically pristine environment. At the conclusion of a job, the instance is cryptographically wiped and destroyed. State is a liability; ephemeral execution is the only way to achieve true determinism.