Dedalus Labs · Arazzo Workflow

Create a Dedalus Machine, run a command, and sleep it

Version 1.0.0

Provision a persistent Linux VM, execute a command, read the output, then sleep it to pause billing.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyAIAgentsMCPModel Context ProtocolLLMInferenceGatewayComputeSandboxDeveloper ToolsArazzoWorkflows

Provider

dedaluslabs

Workflows

machineRunAndSleep
Create a machine, run a shell command, fetch output, and sleep the machine.
4 steps inputs: command outputs: machineId
1
createMachine
createMachine
2
createExecution
createMachineExecution
3
getOutput
getMachineExecutionOutput
4
sleepMachine
sleepMachine

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Create a Dedalus Machine, run a command, and sleep it
  version: 1.0.0
  summary: Provision a persistent Linux VM, execute a command, read the output, then sleep it to pause billing.
sourceDescriptions:
- name: machines
  url: ../openapi/dedaluslabs-machines-openapi-original.yml
  type: openapi
workflows:
- workflowId: machineRunAndSleep
  summary: Create a machine, run a shell command, fetch output, and sleep the machine.
  inputs:
    type: object
    properties:
      command:
        type: string
        description: Shell command to run on the machine.
  steps:
  - stepId: createMachine
    operationId: createMachine
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      machineId: $response.body#/id
  - stepId: createExecution
    operationId: createMachineExecution
    parameters:
    - name: machine_id
      in: path
      value: $steps.createMachine.outputs.machineId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      executionId: $response.body#/id
  - stepId: getOutput
    operationId: getMachineExecutionOutput
    parameters:
    - name: machine_id
      in: path
      value: $steps.createMachine.outputs.machineId
    - name: execution_id
      in: path
      value: $steps.createExecution.outputs.executionId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: sleepMachine
    operationId: sleepMachine
    parameters:
    - name: machine_id
      in: path
      value: $steps.createMachine.outputs.machineId
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    machineId: $steps.createMachine.outputs.machineId