Skip to content

Deliverable dependency graph

Mike Griese edited this page Aug 23, 2023 · 20 revisions

🚧 very much under construction 🚧

An attempt to codify the way we're thinking about how different features are dependent on others. This is obviously not comprehensive - at the time of writing, there's ~300 open "Features" and another 450 "Tasks". Obviously, mermaid would just explode if we tried to include all that.

This'll probably be updated as we go. Anytime we think "ah well to do X we'll need Y first", then we should loop back on this page.

graph TD
    i3121["#quot;Shell Suggestions#quot;"<br>#3121] 
    click i3121 "https://github.com/microsoft/terminal/issues/3121"

    EX_1[Basic extension model] 
    EX_2[Connection<br>Extensions] 
    EX_3[UI<br>Extensions] 
    EX_4[Fragment Tasks] 
    G[Shell integration] 
    
    C_1[Global actions]
    C_2[actions in<br>dropdown]

    i3337[Right click<br>context menu #3337]
    click i3337 "https://github.com/microsoft/terminal/issues/3337"
    i5790[profile-specific<br>keybindings #5790]
    click i5790 "https://github.com/microsoft/terminal/issues/5790"
    i2205[Alternate keymaps<br>#2205]
    click i2205 "https://github.com/microsoft/terminal/issues/2205"
    i1553[mouse bindings<br>#1553]
    click i1553 "https://github.com/microsoft/terminal/issues/1553"
    i6632["#quot;Buffer Suggestions#quot;"<br>from buffer contents<br>#6632]
    click i6632 "https://github.com/microsoft/terminal/issues/6632"


    i997[Non-terminal panes<br>#997]
    click i997 "https://github.com/microsoft/terminal/issues/997"
    i4717[Pane Titlebars<br>#4717]
    click i4717 "https://github.com/microsoft/terminal/issues/4717"
    i4587a[Drag tab to make a pane<br>#4587]
    click i4587a "https://github.com/microsoft/terminal/issues/4587"
    i4587b[Drag pane to make a pane<br>#4587]
    click i4587b "https://github.com/microsoft/terminal/issues/4587"
    
    T_1["#quot;Recent commands#quot;"<br>The basic Tasks UI]
    T_2["#quot;Tasks#quot;"<br>UI for sendInput actions]
    
    i8573[Move cursor with mouse<br>#8573]
    click i8573 "https://github.com/microsoft/terminal/issues/8573"

    subgraph Extensions
    EX_1 --> EX_3
    EX_1 --> EX_2
    EX_1 --> Z(other extensions...)
    end
    

    subgraph Panes
    i4587a --> i4587b
    i997 --> i4717 
    i4717 --> i4587b
    i997 --> EX_3
    end
    
    T_1 --> i3121
    T_1 ---> i6632

    subgraph Tasks
    T_1 --> T_2
    T_2 --> EX_4
    end
    
    C_1 --> EX_4

    %% A --> G
    G --> T_1
    C_1 --> EX_1
    G --> i8573

    EX_4 --> i5790 
    EX_4 --> i2205

    %% C_1 --> i5790
    %% C_1 --> i2205
    C_1 --> C_2
    C_1 --> i1553
    i3337 --> i1553

Loading