Skip to content

Commit f03075f

Browse files
committed
minor.
Signed-off-by: Jose Alekhinne <alekhinejose@gmail.com>
1 parent a57c181 commit f03075f

3 files changed

Lines changed: 38 additions & 23 deletions

File tree

docs/comparison.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ Agent frameworks answer:
135135
> “What should the agent remember?”
136136
137137
Without persistent context, agents tend to:
138+
138139
* rediscover decisions
139140
* repeat mistakes
140141
* lose architectural intent
@@ -160,11 +161,13 @@ Some SDKs expose "context" objects that exist:
160161
These are extremely useful and completely different.
161162

162163
SDK context objects:
164+
163165
* are in-memory
164166
* disappear when the process ends
165167
* are not shared across sessions
166168

167169
`ctx`:
170+
168171
* survives process restarts
169172
* survives new chats
170173
* survives new days
@@ -183,6 +186,7 @@ Enterprise platforms often provide:
183186
* organizational knowledge layers
184187

185188
These tools are designed for:
189+
186190
* teams
187191
* governance
188192
* compliance
@@ -197,6 +201,7 @@ These tools are designed for:
197201
* developer-controlled
198202

199203
It does not require:
204+
200205
* a server
201206
* a database
202207
* an account

site/comparison/index.html

Lines changed: 32 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -874,10 +874,12 @@ <h2 id="agent-frameworks">Agent Frameworks<a class="headerlink" href="#agent-fra
874874
<blockquote>
875875
<p>“What should the agent remember?”</p>
876876
</blockquote>
877-
<p>Without persistent context, agents tend to:
878-
* rediscover decisions
879-
* repeat mistakes
880-
* lose architectural intent</p>
877+
<p>Without persistent context, agents tend to:</p>
878+
<ul>
879+
<li>rediscover decisions</li>
880+
<li>repeat mistakes</li>
881+
<li>lose architectural intent</li>
882+
</ul>
881883
<p>This is why <code>ctx</code> pairs well with loop-based workflows such as the
882884
<a href="https://ghuntley.com/ralph/">Ralph Wiggum technique</a>:</p>
883885
<ul>
@@ -894,14 +896,18 @@ <h2 id="sdk-level-context-objects">SDK-Level Context Objects<a class="headerlink
894896
<li>for the lifetime of a call chain</li>
895897
</ul>
896898
<p>These are extremely useful and completely different.</p>
897-
<p>SDK context objects:
898-
* are in-memory
899-
* disappear when the process ends
900-
* are not shared across sessions</p>
901-
<p><code>ctx</code>:
902-
* survives process restarts
903-
* survives new chats
904-
* survives new days</p>
899+
<p>SDK context objects:</p>
900+
<ul>
901+
<li>are in-memory</li>
902+
<li>disappear when the process ends</li>
903+
<li>are not shared across sessions</li>
904+
</ul>
905+
<p><code>ctx</code>:</p>
906+
<ul>
907+
<li>survives process restarts</li>
908+
<li>survives new chats</li>
909+
<li>survives new days</li>
910+
</ul>
905911
<p>They share a name, not a purpose.</p>
906912
<hr />
907913
<h2 id="enterprise-context-platforms">Enterprise Context Platforms<a class="headerlink" href="#enterprise-context-platforms" title="Permanent link">&para;</a></h2>
@@ -912,11 +918,13 @@ <h2 id="enterprise-context-platforms">Enterprise Context Platforms<a class="head
912918
<li>access control</li>
913919
<li>organizational knowledge layers</li>
914920
</ul>
915-
<p>These tools are designed for:
916-
* teams
917-
* governance
918-
* compliance
919-
* managed environments</p>
921+
<p>These tools are designed for:</p>
922+
<ul>
923+
<li>teams</li>
924+
<li>governance</li>
925+
<li>compliance</li>
926+
<li>managed environments</li>
927+
</ul>
920928
<p><code>ctx</code> is intentionally:</p>
921929
<ul>
922930
<li>local-first</li>
@@ -925,11 +933,13 @@ <h2 id="enterprise-context-platforms">Enterprise Context Platforms<a class="head
925933
<li>CLI-driven</li>
926934
<li>developer-controlled</li>
927935
</ul>
928-
<p>It does not require:
929-
* a server
930-
* a database
931-
* an account
932-
* a SaaS backend</p>
936+
<p>It does not require:</p>
937+
<ul>
938+
<li>a server</li>
939+
<li>a database</li>
940+
<li>an account</li>
941+
<li>a SaaS backend</li>
942+
</ul>
933943
<p><code>ctx</code> optimizes for <em>individual and small-team workflows</em> where context should
934944
live next to code; <strong>not</strong> behind a service boundary.</p>
935945
<hr />

site/search.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)