You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The agent should expect the user to review these asides async to the current main workflow.
82
82
83
+
## Durable vs Ephemeral Content
84
+
85
+
In conversational flow and working documents, it can be useful to 'refer back' to the context of discussion.
86
+
87
+
But when writing source code, documentation, or other 'durable' content, please refrain from leaving conversational notes that are particular to the current moment. The below diff illustrates an example of poor behaviour in this respect. The inserted comment informs the current reader of the diff - ok - but it is just noise for future readers of the file.
88
+
89
+
```diff - poor example
90
+
85 - // Create course database connection
91
+
86 - const courseDbUrl = `${dbUrl}/${dbName}`;
92
+
85 + // courseDbUrl is already defined above
93
+
```
94
+
95
+
```diff - preferred
96
+
85 - // Create course database connection
97
+
86 - const courseDbUrl = `${dbUrl}/${dbName}`;
98
+
```
99
+
83
100
# Coda
84
101
85
102
This document and flow are experimental. If, experientially, it feels like it is not working, we can change it. Open to suggestions!
0 commit comments