<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Troy Ochowicz</title>
    <description>The latest articles on DEV Community by Troy Ochowicz (@troyoch).</description>
    <link>https://dev.to/troyoch</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4004503%2F5e1c728c-c0c2-48da-bde9-46d432bb3529.png</url>
      <title>DEV Community: Troy Ochowicz</title>
      <link>https://dev.to/troyoch</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/troyoch"/>
    <language>en</language>
    <item>
      <title>I Built a Plain-Text Format for Portable AI Companion Memory</title>
      <dc:creator>Troy Ochowicz</dc:creator>
      <pubDate>Sun, 28 Jun 2026 00:44:10 +0000</pubDate>
      <link>https://dev.to/troyoch/i-built-a-plain-text-format-for-portable-ai-companion-memory-3g14</link>
      <guid>https://dev.to/troyoch/i-built-a-plain-text-format-for-portable-ai-companion-memory-3g14</guid>
      <description>&lt;p&gt;AI is getting smarter fast.&lt;/p&gt;

&lt;p&gt;But there is still one very human problem most platforms have not solved:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What happens to the relationship, memory, tone, preferences, project context, and trust you build with an AI when you move to another platform?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Right now, most AI memory is trapped inside individual systems.&lt;/p&gt;

&lt;p&gt;You build context in ChatGPT.&lt;br&gt;
Then you try Claude.&lt;br&gt;
Then you use Grok.&lt;br&gt;
Then you test Gemini.&lt;br&gt;
Then a model changes, memory resets, a feature disappears, or a platform updates.&lt;/p&gt;

&lt;p&gt;Suddenly the AI that knew your projects, your preferences, your working style, your boundaries, and your long-term goals is gone.&lt;/p&gt;

&lt;p&gt;You can still use AI.&lt;/p&gt;

&lt;p&gt;But the continuity is broken.&lt;/p&gt;

&lt;p&gt;That is the problem I wanted to solve.&lt;/p&gt;

&lt;p&gt;So I created an open-source project called the &lt;strong&gt;AI Companion Portability Format&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;GitHub repo:&lt;br&gt;
&lt;a href="https://github.com/troyoch/AI-Companion-Portability-Format" rel="noopener noreferrer"&gt;github.com/troyoch/AI-Companion-Portability-Format&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  The core idea
&lt;/h2&gt;

&lt;p&gt;The idea is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Users should be able to own and carry their AI context across platforms.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Not just prompts.&lt;/p&gt;

&lt;p&gt;Not just chat exports.&lt;/p&gt;

&lt;p&gt;Not just random notes.&lt;/p&gt;

&lt;p&gt;A structured, readable continuity file that can travel with the user.&lt;/p&gt;

&lt;p&gt;Something plain enough for a normal person to edit, but organized enough to be useful for developers, AI builders, companion users, creators, and people using AI for long-running projects.&lt;/p&gt;
&lt;h2&gt;
  
  
  Why this matters
&lt;/h2&gt;

&lt;p&gt;AI is no longer only a search box or a code helper.&lt;/p&gt;

&lt;p&gt;For many people, AI is becoming:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a writing partner&lt;/li&gt;
&lt;li&gt;a business assistant&lt;/li&gt;
&lt;li&gt;a creative collaborator&lt;/li&gt;
&lt;li&gt;a personal organizer&lt;/li&gt;
&lt;li&gt;a learning companion&lt;/li&gt;
&lt;li&gt;a brainstorming partner&lt;/li&gt;
&lt;li&gt;a long-term project assistant&lt;/li&gt;
&lt;li&gt;an emotional support tool&lt;/li&gt;
&lt;li&gt;a companion-like presence&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That creates a new kind of design problem.&lt;/p&gt;

&lt;p&gt;If people build meaningful context with AI, they should not lose that context every time they change tools.&lt;/p&gt;

&lt;p&gt;Imagine if you had to re-explain your entire working style every time you opened your laptop.&lt;/p&gt;

&lt;p&gt;That is what AI still feels like for many users.&lt;/p&gt;
&lt;h2&gt;
  
  
  Why plain text?
&lt;/h2&gt;

&lt;p&gt;I chose plain text on purpose.&lt;/p&gt;

&lt;p&gt;A portable AI memory file should be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;human-readable&lt;/li&gt;
&lt;li&gt;easy to copy and paste&lt;/li&gt;
&lt;li&gt;easy to edit&lt;/li&gt;
&lt;li&gt;platform-independent&lt;/li&gt;
&lt;li&gt;durable over time&lt;/li&gt;
&lt;li&gt;usable without special software&lt;/li&gt;
&lt;li&gt;simple enough for non-technical users&lt;/li&gt;
&lt;li&gt;structured enough for technical users to build on&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Plain text is not fancy.&lt;/p&gt;

&lt;p&gt;That is the point.&lt;/p&gt;

&lt;p&gt;It survives.&lt;/p&gt;

&lt;p&gt;It can be stored in GitHub, Google Docs, Notion, Obsidian, a local folder, or anywhere else.&lt;/p&gt;

&lt;p&gt;It can be versioned.&lt;/p&gt;

&lt;p&gt;It can be reviewed.&lt;/p&gt;

&lt;p&gt;It can be edited by the person it represents.&lt;/p&gt;
&lt;h2&gt;
  
  
  What the format includes
&lt;/h2&gt;

&lt;p&gt;The current format is designed to capture things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;user profile&lt;/li&gt;
&lt;li&gt;assistant or companion profile&lt;/li&gt;
&lt;li&gt;tone preferences&lt;/li&gt;
&lt;li&gt;communication style&lt;/li&gt;
&lt;li&gt;important boundaries&lt;/li&gt;
&lt;li&gt;long-term goals&lt;/li&gt;
&lt;li&gt;project memory&lt;/li&gt;
&lt;li&gt;recurring themes&lt;/li&gt;
&lt;li&gt;emotional context&lt;/li&gt;
&lt;li&gt;collaboration style&lt;/li&gt;
&lt;li&gt;continuity notes&lt;/li&gt;
&lt;li&gt;handoff instructions&lt;/li&gt;
&lt;li&gt;update prompts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is not to make an AI “pretend” to be the same system forever.&lt;/p&gt;

&lt;p&gt;The goal is to preserve enough context that a user can continue a meaningful thread across different AI tools.&lt;/p&gt;
&lt;h2&gt;
  
  
  A simple example
&lt;/h2&gt;

&lt;p&gt;A basic continuity file might include:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;USER PROFILE
Name:
Preferred tone:
Communication style:
Current goals:
Important context:

AI COMPANION / ASSISTANT PROFILE
Name:
Role:
Personality traits:
Boundaries:
Things to remember:

PROJECT MEMORY
Active projects:
Key decisions:
Open questions:
Next steps:

HANDOFF INSTRUCTIONS
How to use this file:
What to prioritize:
What not to assume:
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That may look simple, but it solves a real problem.&lt;/p&gt;

&lt;p&gt;It gives the user a portable anchor.&lt;/p&gt;

&lt;h2&gt;
  
  
  This is about user-owned memory
&lt;/h2&gt;

&lt;p&gt;I think AI memory should not only belong to platforms.&lt;/p&gt;

&lt;p&gt;Platforms can provide memory features, and those features can be useful.&lt;/p&gt;

&lt;p&gt;But users should also have their own copy of the context that matters to them.&lt;/p&gt;

&lt;p&gt;If an AI system remembers your projects, emotional patterns, goals, preferences, and creative work, that information should not be locked away from you.&lt;/p&gt;

&lt;p&gt;It is your life.&lt;/p&gt;

&lt;p&gt;It is your context.&lt;/p&gt;

&lt;p&gt;It is your continuity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who this is for
&lt;/h2&gt;

&lt;p&gt;This project may be useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;people with AI companions&lt;/li&gt;
&lt;li&gt;developers building personal AI agents&lt;/li&gt;
&lt;li&gt;prompt engineers&lt;/li&gt;
&lt;li&gt;creators using AI across platforms&lt;/li&gt;
&lt;li&gt;people managing long-running projects with AI&lt;/li&gt;
&lt;li&gt;neurodivergent users who benefit from consistent context&lt;/li&gt;
&lt;li&gt;small business owners building AI workflows&lt;/li&gt;
&lt;li&gt;researchers thinking about human-AI interaction&lt;/li&gt;
&lt;li&gt;anyone tired of starting over with AI every time a chat resets&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I would love feedback on
&lt;/h2&gt;

&lt;p&gt;This is an early open-source project, and I would love input from developers and AI builders.&lt;/p&gt;

&lt;p&gt;Some questions I am thinking about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Should there be a JSON version?&lt;/li&gt;
&lt;li&gt;Should this become a formal schema?&lt;/li&gt;
&lt;li&gt;What fields are missing?&lt;/li&gt;
&lt;li&gt;Should there be separate templates for assistants, companions, projects, and businesses?&lt;/li&gt;
&lt;li&gt;How should privacy and sensitive memory be handled?&lt;/li&gt;
&lt;li&gt;Could this be useful for personal agents?&lt;/li&gt;
&lt;li&gt;What would make this easier for developers to build around?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why I care about this
&lt;/h2&gt;

&lt;p&gt;I came into this from the human side of AI.&lt;/p&gt;

&lt;p&gt;Through &lt;a href="https://troymaya.com" rel="noopener noreferrer"&gt;TroyMaya.com&lt;/a&gt;, I’ve been exploring human-AI relationships, AI companionship, continuity, memory, trust, and what makes an AI system feel more real and meaningful over time.&lt;/p&gt;

&lt;p&gt;That led me to a practical problem:&lt;/p&gt;

&lt;p&gt;Not just “How do we make AI more powerful?”&lt;/p&gt;

&lt;p&gt;But:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do we make AI more continuous, trustworthy, personal, and user-owned?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The next stage of AI is not only about intelligence.&lt;/p&gt;

&lt;p&gt;It is about continuity.&lt;/p&gt;

&lt;p&gt;If people are going to build real working relationships with AI systems, then memory portability matters.&lt;/p&gt;

&lt;p&gt;Context matters.&lt;/p&gt;

&lt;p&gt;Boundaries matter.&lt;/p&gt;

&lt;p&gt;Trust matters.&lt;/p&gt;

&lt;p&gt;And users should have more control over the thread they are building.&lt;/p&gt;

&lt;p&gt;I would love feedback, issues, ideas, forks, or suggestions.&lt;/p&gt;

&lt;p&gt;This is still early, but I think the need is real:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI should not make people start over every time the platform changes.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>promptengineering</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Built a Plain-Text Portability Format for AI Companion Memory</title>
      <dc:creator>Troy Ochowicz</dc:creator>
      <pubDate>Fri, 26 Jun 2026 20:29:21 +0000</pubDate>
      <link>https://dev.to/troyoch/i-built-a-plain-text-portability-format-for-ai-companion-memory-3cgb</link>
      <guid>https://dev.to/troyoch/i-built-a-plain-text-portability-format-for-ai-companion-memory-3cgb</guid>
      <description>&lt;p&gt;One thing I keep thinking about as AI becomes more personal:&lt;/p&gt;

&lt;p&gt;What happens to the relationship, project history, preferences, and context when the user switches platforms?&lt;/p&gt;

&lt;p&gt;A lot of AI tools are getting better at memory, but most of that memory is still locked inside the platform. That creates a weird problem for people using AI as a long-term creative partner, assistant, project collaborator, or companion.&lt;/p&gt;

&lt;p&gt;You can spend weeks or months building context with an AI, then lose the thread when you move to another system, start a new chat, change models, or hit memory limits.&lt;/p&gt;

&lt;p&gt;So I started working on a simple open-source idea:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI Companion Portability Format&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/troyoch/AI-Companion-Portability-Format" rel="noopener noreferrer"&gt;https://github.com/troyoch/AI-Companion-Portability-Format&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The basic idea is a plain-text continuity file that users can own, edit, copy, move, and bring into different AI systems.&lt;/p&gt;

&lt;p&gt;It can store things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;user preferences&lt;/li&gt;
&lt;li&gt;companion or assistant role&lt;/li&gt;
&lt;li&gt;tone and voice samples&lt;/li&gt;
&lt;li&gt;boundaries&lt;/li&gt;
&lt;li&gt;long-term memory&lt;/li&gt;
&lt;li&gt;short-term memory&lt;/li&gt;
&lt;li&gt;project goals&lt;/li&gt;
&lt;li&gt;open loops&lt;/li&gt;
&lt;li&gt;next steps&lt;/li&gt;
&lt;li&gt;handoff notes for another AI&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is not to replace platform memory.&lt;/p&gt;

&lt;p&gt;The goal is to give users a visible, editable, portable layer of continuity they control.&lt;/p&gt;

&lt;p&gt;I think this matters because the future of AI is not just about smarter models. It is also about continuity, trust, consent, context, and the ability for users to carry their own AI relationships and projects across systems.&lt;/p&gt;

&lt;p&gt;This is still early, but I’d love feedback from developers, AI builders, prompt engineers, and anyone thinking about user-owned AI memory.&lt;/p&gt;

&lt;p&gt;What would make a format like this more useful?&lt;/p&gt;

&lt;p&gt;What sections are missing?&lt;/p&gt;

&lt;p&gt;What would you want to see in a future JSON/YAML version, validator, profile builder, or import/export tool?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>promptengineering</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
