@@ -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 "> ¶</ 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
934944live next to code; < strong > not</ strong > behind a service boundary.</ p >
935945< hr />
0 commit comments