# Summary
- [Introduction](introduction.md)
- [Background](background.md)
- [Purpose](background/purpose.md)
- [Strategy](background/strategy.md)
- [Examples](examples.md)
- [Download](examples/download.md)
- [Env Man](examples/envman.md)
- [Walkthrough](examples/envman/walkthrough.md)
- [Technical Concepts](technical_concepts.md)
- [Resources](technical_concepts/resources.md)
- [Function Graph](technical_concepts/function_graph.md)
- [Abstraction](technical_concepts/function_graph/abstraction.md)
- [Ordering](technical_concepts/function_graph/ordering.md)
- [Streaming](technical_concepts/function_graph/streaming.md)
- [Item](technical_concepts/item.md)
- [Item Parameters](technical_concepts/item/item_parameters.md)
- [Value Specification](technical_concepts/item/item_parameters/value_specification.md)
- [Params Specification](technical_concepts/item/item_parameters/params_specification.md)
- [Params Framework Support](technical_concepts/item/item_parameters/params_framework_support.md)
- [Mapping Functions](technical_concepts/item/item_parameters/mapping_functions.md)
- [Item Graph](technical_concepts/item_graph.md)
- [Initialization](technical_concepts/item_graph/initialization.md)
- [State Inspection](technical_concepts/item_graph/state_inspection.md)
- [State Ensure](technical_concepts/item_graph/state_ensure.md)
- [Clean](technical_concepts/item_graph/clean.md)
- [State](technical_concepts/state.md)
- [Logical State](technical_concepts/state/logical_state.md)
- [Output](technical_concepts/output.md)
- [Execution Progress](technical_concepts/output/execution_progress.md)
- [Presentation](technical_concepts/output/presentation.md)
- [Diagrams](technical_concepts/diagrams.md)
- [Progress](technical_concepts/diagrams/progress.md)
- [Outcome](technical_concepts/diagrams/outcome.md)
- [Render Technology](technical_concepts/diagrams/outcome/render_technology.md)
- [HTML + Flexbox](technical_concepts/diagrams/outcome/html_flexbox.md)
- [Div Diag](technical_concepts/diagrams/outcome/div_diag.md)
- [API Design](technical_concepts/diagrams/outcome/api_design.md)
- [Interaction Merging](technical_concepts/diagrams/outcome/interaction_merging.md)
- [Aesthetics and Clarity](technical_concepts/diagrams/outcome/aesthetics_and_clarity.md)
- [Endpoints and Interaction](technical_concepts/endpoints_and_interaction.md)
- [Cmd Invocation](technical_concepts/endpoints_and_interaction/cmd_invocation.md)
- [Interruption](technical_concepts/endpoints_and_interaction/interruption.md)
- [Progress Output](technical_concepts/endpoints_and_interaction/progress_output.md)
- [Workspace](technical_concepts/workspace.md)
- [Commands](technical_concepts/commands.md)
- [Scopes](technical_concepts/commands/scopes.md)
- [No Profile No Flow](technical_concepts/commands/scopes/no_profile_no_flow.md)
- [Single Profile No Flow](technical_concepts/commands/scopes/single_profile_no_flow.md)
- [Single Profile Single Flow](technical_concepts/commands/scopes/single_profile_single_flow.md)
- [Multi Profile No Flow](technical_concepts/commands/scopes/multi_profile_no_flow.md)
- [Multi Profile Single Flow](technical_concepts/commands/scopes/multi_profile_single_flow.md)
* [Reborrowing](technical_concepts/commands/scopes/reborrowing.md)
- [Use Cases](technical_concepts/commands/use_cases.md)
- [Workspace Initialization](technical_concepts/commands/use_cases/workspace_initialization.md)
- [Profile List](technical_concepts/commands/use_cases/profile_list.md)
- [Workspace Stored Active Profile](technical_concepts/commands/use_cases/workspace_stored_active_profile.md)
- [Workspace Active Profile Switch](technical_concepts/commands/use_cases/workspace_active_profile_switch.md)
- [State Discovery and Display](technical_concepts/commands/use_cases/state_discovery_and_display.md)
- [State Read and Display](technical_concepts/commands/use_cases/state_read_and_display.md)
- [State Diff](technical_concepts/commands/use_cases/state_diff.md)
- [State Apply](technical_concepts/commands/use_cases/state_apply.md)
- [State Clean](technical_concepts/commands/use_cases/state_clean.md)
- [Cmd Execution](technical_concepts/commands/cmd_execution.md)
- [Interruptibility](technical_concepts/commands/interruptibility.md)
- [Flow Versioning](technical_concepts/flow_versioning.md)
- [Seamless Execution](technical_concepts/flow_versioning/seamless_execution.md)
- [Upgrade Actions](technical_concepts/flow_versioning/upgrade_actions.md)
---
- [Learning Material]()
- [Why Rust](learning_material/why_rust.md)
- [Topics](learning_material/why_rust/topics.md)
- [โก Performance](learning_material/why_rust/performance.md)
- [Benchmarks](learning_material/why_rust/performance/benchmarks.md)
- [How Is Rust Fast](learning_material/why_rust/performance/how_is_rust_fast.md)
- [Compiled vs Interpreted](learning_material/why_rust/performance/compiled_vs_interpreted.md)
- [Native Code](learning_material/why_rust/performance/native_code.md)
- [Memory Usage](learning_material/why_rust/performance/memory_usage.md)
- [Memory Freeing](learning_material/why_rust/performance/memory_freeing.md)
- [Performance Summary](learning_material/why_rust/performance/performance_summary.md)
- [๐ง Constraints](learning_material/why_rust/constraints.md)
- [Correct Programs](learning_material/why_rust/constraints/correct_programs.md)
- [Unconstrained](learning_material/why_rust/constraints/unconstrained.md)
- [Constrained](learning_material/why_rust/constraints/constrained.md)
- [Constrained - Fixed](learning_material/why_rust/constraints/constrained_fixed.md)
- [Less vs More](learning_material/why_rust/constraints/less_vs_more.md)
- [Nullability - JS](learning_material/why_rust/constraints/nullability_js.md)
- [Nullability - C#](learning_material/why_rust/constraints/nullability_cs.md)
- [Nullability - Rust](learning_material/why_rust/constraints/nullability_rust.md)
- [Data Race - C#](learning_material/why_rust/constraints/data_race_cs.md)
- [Data Race - Rust 1](learning_material/why_rust/constraints/data_race_rust_1.md)
- [Data Race - Rust 2](learning_material/why_rust/constraints/data_race_rust_2.md)
- [Constraints in Rust](learning_material/why_rust/constraints/constraints_in_rust.md)
- [Constraints Summary](learning_material/why_rust/constraints/constraints_summary.md)
- [๐ฌ Expressive](learning_material/why_rust/expressive.md)
- [Co/Co Mapping](learning_material/why_rust/expressive/coco_mapping.md)
- [Traits](learning_material/why_rust/expressive/traits.md)
- [Multiple Values](learning_material/why_rust/expressive/multiple_values_rust.md)
- [Cloning](learning_material/why_rust/expressive/cloning.md)
- [Cloning - Others](learning_material/why_rust/expressive/cloning_others.md)
- [Cloning - Rust](learning_material/why_rust/expressive/cloning_rust.md)
- [Expressive Summary](learning_material/why_rust/expressive/expressive_summary.md)
- [๐ตโ๐ซ Unambiguous](learning_material/why_rust/unambiguous.md)
- [Equality](learning_material/why_rust/unambiguous/equality.md)
- [Equality - Java](learning_material/why_rust/unambiguous/equality_java.md)
- [Equality - Rust 1](learning_material/why_rust/unambiguous/equality_rust_1.md)
- [Equality - Rust 2](learning_material/why_rust/unambiguous/equality_rust_2.md)
- [Control Flow](learning_material/why_rust/unambiguous/control_flow.md)
- [Control Flow - Java](learning_material/why_rust/unambiguous/control_flow_java.md)
- [Control Flow - Rust](learning_material/why_rust/unambiguous/control_flow_rust.md)
- [Unambiguous Summary](learning_material/why_rust/expressive/unambiguous_summary.md)
- [๐ ๏ธ Tooling](learning_material/why_rust/tooling.md)
- [Formatter](learning_material/why_rust/tooling/formatter.md)
- [Linter](learning_material/why_rust/tooling/linter.md)
- [Package Manager](learning_material/why_rust/tooling/package_manager.md)
- [Others](learning_material/why_rust/tooling/others.md)
- [Tooling Summary](learning_material/why_rust/tooling/tooling_summary.md)
- [๐ Ecosystem](learning_material/why_rust/ecosystem.md)
- [Variety](learning_material/why_rust/variety.md)
- [Stable](learning_material/why_rust/stable.md)
- [๐ฆ Second Order](learning_material/why_rust/second_order.md)
- [Chain of Events](learning_material/why_rust/second_order/chain_of_events.md)
- [Topics Again](learning_material/why_rust/second_order/topics_again.md)
- [Try Rust](learning_material/why_rust/second_order/try_rust.md)
- [Q & A](learning_material/why_rust/qna.md)
- [User Facing Automation - Part 1](learning_material/user_facing_automation_part_1.md)
- [User Facing Automation - Part 2](learning_material/user_facing_automation_part_2.md)
- [Empathetic Code Design](learning_material/empathetic_code_design.md)
- [Background](learning_material/empathetic_code_design/background.md)
- [Scenario](learning_material/empathetic_code_design/scenario.md)
- [Flow Definition](learning_material/empathetic_code_design/flow_definition.md)
- [Inputs and Outputs](learning_material/empathetic_code_design/inputs_and_outputs.md)
- [Parameters Specification](learning_material/empathetic_code_design/parameters_specification.md)
- [Output and Presentation](learning_material/empathetic_code_design/output_and_presentation.md)
- [Command Invocation](learning_material/empathetic_code_design/command_invocation.md)
- [Parameters Recall](learning_material/empathetic_code_design/parameters_recall.md)
- [Workspace](learning_material/empathetic_code_design/workspace.md)
- [Profiles](learning_material/empathetic_code_design/profiles.md)
- [Summary](learning_material/empathetic_code_design/summary.md)
- [Q & A](learning_material/empathetic_code_design/qna.md)
- [Interruptible Software](learning_material/interruptible_software.md)
- [Processes](learning_material/interruptible_software/processes.md)
- [Execution](learning_material/interruptible_software/execution.md)
- [Bus Analogy](learning_material/interruptible_software/bus_analogy.md)
- [Designing Interruptibility](learning_material/interruptible_software/designing_interruptibility.md)
- [Stop Button](learning_material/interruptible_software/designing_interruptibility/stop_button.md)
- [Stopping Point](learning_material/interruptible_software/designing_interruptibility/stopping_point.md)
- [Parallelism](learning_material/interruptible_software/designing_interruptibility/parallelism.md)
- [Reporting](learning_material/interruptible_software/designing_interruptibility/reporting.md)
- [Strategy](learning_material/interruptible_software/designing_interruptibility/strategy.md)
- [Interruptible Implementation](learning_material/interruptible_software/interruptible_implementation.md)
- [Resumability](learning_material/interruptible_software/resumability.md)
- [Designing Resumability](learning_material/interruptible_software/designing_resumability.md)
- [Executor Resumability](learning_material/interruptible_software/designing_resumability/executor_resumability.md)
- [Stepwise Resumability](learning_material/interruptible_software/designing_resumability/stepwise_resumability.md)
- [Resumable Implementation](learning_material/interruptible_software/resumable_implementation.md)
- [Real Crates](learning_material/interruptible_software/real_crates.md)
- [Summary](learning_material/interruptible_software/summary.md)
- [Q & A](learning_material/interruptible_software/qna.md)
- [Dot IX: Diagram Generator](learning_material/dot_ix_diagram_generator.md)
- [Everyday Diagrams](learning_material/dot_ix_diagram_generator/everyday_diagrams.md)
- [๐ Problems](learning_material/dot_ix_diagram_generator/problems.md)
- [Appearance](learning_material/dot_ix_diagram_generator/problems/appearance.md)
- [Accuracy](learning_material/dot_ix_diagram_generator/problems/accuracy.md)
- [Portability](learning_material/dot_ix_diagram_generator/problems/portability.md)
- [Dynamics](learning_material/dot_ix_diagram_generator/problems/dynamics.md)
- [๐ก Ideation](learning_material/dot_ix_diagram_generator/ideation.md)
- [Output Format](learning_material/dot_ix_diagram_generator/ideation/output_format.md)
- [Input Format](learning_material/dot_ix_diagram_generator/ideation/input_format.md)
- [Logistics](learning_material/dot_ix_diagram_generator/ideation/logistics.md)
- [๐จ Demo](learning_material/dot_ix_diagram_generator/demo.md)
- [๐งช Solution](learning_material/dot_ix_diagram_generator/solution.md)
- [Supported Usages](learning_material/dot_ix_diagram_generator/solution/supported_usages.md)
- [Generation Process](learning_material/dot_ix_diagram_generator/solution/generation_process.md)
- [Challenges](learning_material/dot_ix_diagram_generator/solution/challenges.md)
- [What's Next](learning_material/dot_ix_diagram_generator/whats_next.md)
- [Q & A](learning_material/dot_ix_diagram_generator/qna.md)
- [Peace: Zero Stress Automation](learning_material/peace_zero_stress_automation.md)
- [๐ Origin Story](learning_material/peace_zero_stress_automation/origin_story.md)
- [Manual Deployment](learning_material/peace_zero_stress_automation/origin_story/manual_deployment.md)
- [Automation](learning_material/peace_zero_stress_automation/origin_story/automation.md)
- [Engineering Eyes](learning_material/peace_zero_stress_automation/origin_story/engineering_eyes.md)
- [Engineering Success](learning_material/peace_zero_stress_automation/origin_story/engineering_success.md)
- [Automation (For Real)](learning_material/peace_zero_stress_automation/origin_story/automation_for_real.md)
- [Human Eyes](learning_material/peace_zero_stress_automation/origin_story/human_eyes.md)
- [๐๏ธ Peace Framework](learning_material/peace_zero_stress_automation/peace_framework.md)
- [๐๏ธ envman (example tool)](learning_material/peace_zero_stress_automation/envman_example_tool.md)
- [๐ก Understandability](learning_material/peace_zero_stress_automation/understandability.md)
- [Demo](learning_material/peace_zero_stress_automation/understandability/demo.md)
- [Goldilocks Principle](learning_material/peace_zero_stress_automation/understandability/goldilocks_principle.md)
- [๐ฎ Control](learning_material/peace_zero_stress_automation/control.md)
- [Minimal Control](learning_material/peace_zero_stress_automation/control/minimal_control.md)
- [Discovery](learning_material/peace_zero_stress_automation/control/discovery.md)
- [Interruption](learning_material/peace_zero_stress_automation/control/interruption.md)
- [Demo](learning_material/peace_zero_stress_automation/control/demo.md)
- [๐ Morale](learning_material/peace_zero_stress_automation/morale.md)
- [Aesthetics: Outcome](learning_material/peace_zero_stress_automation/morale/aesthetics_outcome.md)
- [Aesthetics: Progress](learning_material/peace_zero_stress_automation/morale/aesthetics_progress.md)
- [Aesthetics: Errors](learning_material/peace_zero_stress_automation/morale/aesthetics_errors.md)
- [Automation Clarified](learning_material/peace_zero_stress_automation/morale/automation_clarified.md)
- [โ๏ธ How Does It Work](learning_material/peace_zero_stress_automation/how_does_it_work.md)
- [๐ญ Architecture](learning_material/peace_zero_stress_automation/architecture.md)
- [Components](learning_material/peace_zero_stress_automation/architecture/components.md)
- [Item](learning_material/peace_zero_stress_automation/architecture/item.md)
- [Flow](learning_material/peace_zero_stress_automation/architecture/flow.md)
- [Commands](learning_material/peace_zero_stress_automation/architecture/commands.md)
- [Tool](learning_material/peace_zero_stress_automation/architecture/tool.md)
- [๐ฆ Project Status](learning_material/peace_zero_stress_automation/project_status.md)
- [Readiness](learning_material/peace_zero_stress_automation/project_status/readiness.md)
- [๐ Links](learning_material/peace_zero_stress_automation/links.md)
- [๐โโ๏ธ Thank You](learning_material/peace_zero_stress_automation/thank_you.md)
- [โ Q & A](learning_material/peace_zero_stress_automation/qna.md)
- [Ideas](ideas.md)
- [Feature Gated Incremental Functionality](ideas/feature_gated_incremental_functionality.md)
- [Licenses](licenses.html)