Skip to main content

How‑to guides for scopes

This page introduces the guides for building, testing, and running agent‑backed scopes in nullplatform. Use the links below to jump straight into the reviewed guides in our Tutorials section.

Repositories used in the tutorials

We provide two public repositories to help you move smoothly from local experiments to production:

Both follow a similar layout, so it’s easy to start locally and later switch to production with minimal changes.

Typical layout

scopes/
├── k8s/ # Kubernetes-specific implementation
│ ├── scope/ # Scope lifecycle actions
│ │ └── workflows/
│ │ ├── create.yaml
│ │ ├── update.yaml
│ │ └── delete.yaml
│ ├── deployment/ # Deployment strategies (initial, blue_green, ...)
│ │ └── workflows/
│ │ ├── initial.yaml
│ │ ├── blue_green.yaml
│ │ └── ...
│ └── ...
├── service # Routes actions based on NP_ACTION_CONTEXT
├── agent/ # Agent deployment scripts
├── configure # Configuration script
└── entrypoint # Main execution script

Looking for the detailed steps? Visit the Tutorials hub.