Skip to content

Commit

Permalink
Update brainstorm diagrams to be mermaid so they render on github
Browse files Browse the repository at this point in the history
  • Loading branch information
awwaiid committed Dec 19, 2024
1 parent dd62d93 commit 450fce0
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,30 +207,32 @@ Prompt / Tool ideas:
* Increasingly, the reMarkable2 case might HAPPEN to be a specific prompt we set up in this system...
* So the state machine chould be:

```plantuml
[*] --> Screenshot
Screenshot --> OutputScreen
Screenshot --> OutputKeyboardText
```mermaid
stateDiagram-v2
[*] --> Screenshot
Screenshot --> OutputScreen
Screenshot --> OutputKeyboardText
```

```plantuml
[*] --> WaitForTouch
WaitForTouch --> Screenshot
Screenshot --> OutputScreen
Screenshot --> OutputKeyboardText
OutputScreen --> [*]
OutputKeyboardText --> [*]
```mermaid
stateDiagram-v2
[*] --> WaitForTouch
WaitForTouch --> Screenshot
Screenshot --> OutputScreen
Screenshot --> OutputKeyboardText
OutputScreen --> [*]
OutputKeyboardText --> [*]
```

```plantuml
[*] -> WaitForTouch
WaitForTouch --> Screenshot
Screenshot --> Thinking
Thinking -> Thinking
Thinking --> OutputScreen
Thinking --> OutputKeyboardText
OutputScreen --> [*]
OutputKeyboardText --> [*]
```mermaid
stateDiagram-v2
[*] --> WaitForTouch
WaitForTouch --> Screenshot
Screenshot --> Thinking
Thinking --> Thinking
Thinking --> OutputScreen
Thinking --> OutputKeyboardText
OutputScreen --> [*]
OutputKeyboardText --> [*]
```


0 comments on commit 450fce0

Please sign in to comment.