ChargeLink Documentation Logo

Overview

  • What ChargeLink is
  • Simulator roles: EVSE, EVCC, and bench-linked execution
  • Standards, protocols, and conformance position
  • Product status and claim boundaries

Getting started

  • Installation and workstation preparation
  • Quickstart: first EVSE session, first campaign, first report

Guides

  • Guide: EVSE operations
  • Guide: EVCC operations and backend orchestration
  • Guide: scenarios, campaigns, packages, qualification, and suites
  • Guide: trace, replay, diagnostics, reporting, and artifacts
  • Guide: MCS, HIL, and bench proof
  • Guide: UI and API surfaces

Reference

  • Data and artifacts reference
  • Profile catalog
  • Hardware profile reference
  • Package and suite catalog
  • API reference overview
  • chargelink-monitor
  • CLI reference
    • chargelink evse
    • chargelink evcc
    • chargelink hil
    • chargelink scenario
    • chargelink campaign
    • chargelink qualification
    • chargelink suite
    • chargelink report
    • chargelink trace
    • chargelink replay
    • chargelink lab
    • chargelink beckhoff
    • chargelink protocol
    • chargelink artifacts
    • chargelink sequence
    • chargelink macro
    • chargelink verdict
    • chargelink step
      • Reference syntax
      • Subcommands
      • add
        • CLI help
        • Production examples
      • pass
        • CLI help
        • Production examples
      • warn
        • CLI help
        • Production examples
      • fail
        • CLI help
        • Production examples
    • chargelink profile
    • chargelink template
    • chargelink library
    • chargelink batch
    • chargelink campaign-stress
    • chargelink service
    • chargelink requirements
    • chargelink backend
    • chargelink evidence
    • chargelink audit
    • chargelink ports
    • chargelink env
    • chargelink capture
    • chargelink ci
    • chargelink sessions
    • chargelink fault
    • chargelink network
    • chargelink fuzz
  • Glossary
ChargeLink Documentation
  • CLI reference
  • chargelink step
  • View page source

chargelink step

Track operator steps and their pass, warn, or fail outcomes.

Reference syntax

usage: chargelink step [-h] {add,pass,warn,fail} ...

positional arguments:
  {add,pass,warn,fail}

options:
  -h, --help            show this help message and exit

Subcommands

Subcommand

Purpose

add

Add an operator step to a run log.

pass

Mark a step as passed.

warn

Mark a step as warning.

fail

Mark a step as failed.

add

Add an operator step to a run log.

CLI help

usage: chargelink step add [-h] [--runtime-root RUNTIME_ROOT]
                           run_id step_id title

positional arguments:
  run_id
  step_id
  title

options:
  -h, --help            show this help message and exit
  --runtime-root RUNTIME_ROOT

Production examples

Add a boot step.

chargelink step add 'run_1' 'boot' 'Boot sequence' --runtime-root '.tmp/runtime'

Add a hardware-proof step.

chargelink step add 'run_1' 'bench-proof' 'Attach bench evidence' --runtime-root '.tmp/runtime'

pass

Mark a step as passed.

CLI help

usage: chargelink step pass [-h] [--runtime-root RUNTIME_ROOT]
                            [--comment COMMENT]
                            run_id step_id

positional arguments:
  run_id
  step_id

options:
  -h, --help            show this help message and exit
  --runtime-root RUNTIME_ROOT
  --comment COMMENT

Production examples

Mark a step as pass.

chargelink step pass 'run_1' 'boot' --runtime-root '.tmp/runtime' --comment 'ok'

Mark a second step.

chargelink step pass 'run_1' 'network' --runtime-root '.tmp/runtime' --comment 'ok'

warn

Mark a step as warning.

CLI help

usage: chargelink step warn [-h] [--runtime-root RUNTIME_ROOT]
                            [--comment COMMENT]
                            run_id step_id

positional arguments:
  run_id
  step_id

options:
  -h, --help            show this help message and exit
  --runtime-root RUNTIME_ROOT
  --comment COMMENT

Production examples

Mark a step as warn.

chargelink step warn 'run_1' 'boot' --runtime-root '.tmp/runtime' --comment 'minor issue'

Mark a second step.

chargelink step warn 'run_1' 'network' --runtime-root '.tmp/runtime' --comment 'minor issue'

fail

Mark a step as failed.

CLI help

usage: chargelink step fail [-h] [--runtime-root RUNTIME_ROOT]
                            [--comment COMMENT]
                            run_id step_id

positional arguments:
  run_id
  step_id

options:
  -h, --help            show this help message and exit
  --runtime-root RUNTIME_ROOT
  --comment COMMENT

Production examples

Mark a step as fail.

chargelink step fail 'run_1' 'boot' --runtime-root '.tmp/runtime' --comment 'forced fail'

Mark a second step.

chargelink step fail 'run_1' 'network' --runtime-root '.tmp/runtime' --comment 'forced fail'
Previous Next

© Copyright 2026, devLink AB.

Built with Sphinx using a theme provided by Read the Docs.