🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@sapiom/orchestration-core

Package Overview
Dependencies
Maintainers
3
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sapiom/orchestration-core

Pure, stateless core functions for scaffolding, validating, and operating Sapiom orchestrations — shared by the CLI and MCP packages.

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
3
Created
Source

PROJECT_NAME

A Sapiom orchestration, authored as code against @sapiom/orchestration.

Getting started

npm install

Then open index.ts. The orchestration is defined with defineOrchestration({ steps }); each step is a defineStep({ name, next, run }). The run body is ordinary code — and inside it, the full Sapiom tool catalog is available, pre-auth'd and tenant-scoped, on ctx.sapiom:

const box = await ctx.sapiom.sandboxes.create({ name: 'demo' });
const repo = await ctx.sapiom.repositories.create('my-repo');

No credentials to wire — a per-execution tenant credential is injected when your orchestration runs.

The loop

Author and run this orchestration with the Sapiom dev tools:

  • check — validate locally (bundle, manifest, step graph). Offline.
  • run_local — execute the steps locally against stubs (no real capability calls), iterating until it completes.
  • deploy — build and ship.

npm run typecheck and npm run format are also available for editor-level checks.

See AGENTS.md for the full authoring loop.

Keywords

sapiom

FAQs

Package last updated on 07 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts