Skip to main content

value_stream View

The value_stream view visualizes end-to-end customer and business value delivery streams, mapping sequential stages to enabling business capabilities, business processes, software applications, autonomous AI agents, data assets, and strategic KPIs.


Visual Projection

value_stream view visual diagramvalue_stream view visual diagram

Value Stream View showing stage flow with enabling capability swimlanes and architecture realization


Purpose & Target Audience

  • Target Audience: Enterprise Architects, Business Architects, Value Stream Managers, Product Directors, Transformation Leaders.
  • Primary Use Cases:
    • Depicting customer journeys and stage progression from trigger to value delivery.
    • Identifying capability gaps and redundant applications across the value stream.
    • Tracking realization of stage milestones by underlying software services and autonomous AI agents.
    • Mapping data assets read and produced across delivery stages.
    • Monitoring strategic KPIs and goals linked to each stage of customer value.
    • Generating stakeholder traceability registers with instant CSV export.

Flow Orientations & Auto Layout

The value_stream view supports dual flow orientations via auto_layout:

Layout OptionFlow OrientationUsage & Visual Representation
Omitted / LeftToRight (Default)Horizontal Pipeline FlowStages flow left-to-right as sequential chevron cards with realization swimlanes underneath.
TopToBottomVertical Progression FlowStages flow vertically with progression connectors and adjacent realization summary cards.
views {
# 1. Horizontal Pipeline Flow (default when auto_layout is omitted or set to LeftToRight)
value_stream v_onboarding_pipeline "Customer Onboarding Pipeline" {
include vs_customer_onboarding
include stage
include capability
auto_layout LeftToRight
}

# 2. Vertical Stage Progression Flow
value_stream v_lending_lifecycle "Consumer Lending Lifecycle" {
include vs_consumer_lending
include stage
include capability
auto_layout TopToBottom
}
}

Supported Entity Types

Entity TypeRole in Value StreamDescription
value_streamRoot StreamThe top-level value stream container enclosing stages.
stageJourney MilestoneThe sequential phases of value delivery with numeric order attributes.
capabilityFunctional EnablerBusiness capabilities realizing or supporting specific stages.
processOperational WorkflowHuman and system processes executed within each stage.
system, appTechnical SystemCore IT platforms and microservices powering stage operations.
agentAutonomous AI AgentAI agents and bot workers performing triage, review, or automation.
actorStakeholder / PersonaCustomers, operators, and employees participating in the stream.
data_objectInformation AssetBusiness entities and payloads read or written at each stage.
kpi, goalMeasurable OutcomePerformance metrics and strategic targets measuring stage success.

Supported Relationships & Verbs

Relationship VerbSource EntityTarget EntityMeaning
realizescapability, app, system, agent, processstage, value_streamEnabler realization of value stream stages
servesapp, system, capabilitystage, actorSystem or capability servicing a stage
flows_tostage, app, data_objectstage, app, data_objectMaterial, data, or sequence flow between stages
triggersactor, system, stagestage, processEvent triggering subsequent stages or workflows
readsapp, stage, agentdata_objectData consumption at a stage
writesapp, stage, agentdata_objectData artifact production at a stage
influencesstage, capabilitygoal, kpiContribution to measurable business outcomes
composed_ofvalue_streamstageStructural stage decomposition
depends_onstage, appstage, appOperational prerequisite dependencies
governed_bystage, processpolicy, standardRegulatory and compliance constraints

Complete DSL Example

views {
value_stream customer_onboarding_value_stream "Customer Onboarding Value Stream" {
description "End-to-end customer onboarding pipeline mapping stages to enabling capabilities, systems, and KPIs."
tags ["Value Stream", "Onboarding", "Customer Experience"]

# Include stream, stages, and architectural enablers
include vs_customer_onboarding
include stage_capture_application
include stage_verify_identity
include stage_provision_account
include cap_onboarding
include cap_identity_verification
include cap_account_provisioning
include app_mobile_banking
include agent_support_bot
include app_deposit_accounts
include kpi_onboarding_time

# Default layout is LeftToRight (can also be explicitly stated)
auto_layout LeftToRight
}
}