cliclack_yaml 0.1.1

A YAML-based configuration layer for cliclack interactive CLI prompts
Documentation

- type: confirm
  prompt: "Do you want to proceed?"
  output: "should_proceed"
  step_name: "proceed_step"

- type: input
  prompt: "Enter name"
  output: "name"
  condition:
    parent: "proceed_step"
    value: true

- type: print
  text: "Hello {name}"
  loglevel: "info"
  condition:
    parent: "proceed_step"
    value: true